feat(#108): /tickets-batch skill — bulk-file structured tickets in one flow#127
Merged
Merged
Conversation
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
User Story
As a Chief-of-Staff or tech lead kicking off a piece of work that decomposes into 5–20 tickets, I want a skill that files them all in one flow — without the slow interactive path (
/feature× 20 = ~100 turns) or the non-conformant fast path (rawgh issue createwith whatever shape the agent invents).Summary
New skill
/tickets-batchat.claude/skills/tickets-batch/SKILL.md. Bulk-files a numbered/bulleted list (or markdown file) of ticket titles by:gh issue create— output conforms to.ticket.required_sections(from [Chore] Make ticket-prefix whitelist + schema project-configurable (not hardcoded) #109 + [Chore] validate-issue-structure.sh — config-driven PreToolUse hook for gh issue create #107) by construction.The skill replaces the bypass scenario where an agent files 10 tickets via raw
gh issue createwith bespoke bodies (the failure mode that triggered apexyard#107 + the related skill-discipline memory). Now the happy path matches the team standard.Schema source:
.ticket.prefix_whitelist,.ticket.label_priority_scheme, and.ticket.required_sectionsfrom project config — no hardcoding, so future schema rolls forward without touching the skill.Testing
Skills are markdown specs — no shell test fixture. Behaviour is exercised by the agent following the spec. Conformance is enforced at file time by
validate-issue-structure.sh(#107) — the skill produces output that passes that hook.Smoke check on conformance:
Real dogfood will be the next batch-file moment (e.g. a project kickoff with 5+ tickets) — the spec is followable as-is, and any rough edges surface there.
Scope — what this does NOT do
/tickets-batchvs./feature(covered by the parallel-skill-invocation rule from [Feature] /fan-out skill — spawn N parallel agents on independent tasks, with per-task agent type + worktree isolation #117).Glossary
/tickets-batch, agents had to choose between slow interactive (~10 questions × N) or non-conformant rawgh issue create..ticket.required_sectionsby construction.Closes #108