archify
Create polished, validated architecture, workflow, sequence, data-flow, and lifecycle/state diagrams as explorable standalone HTML with inline SVG, dark/light…
End-to-end Jira ticket workflow that manages a cross-functional team of agents to plan, implement, review, and ship work defined by a Jira ticket. Use this skill whenever the user provides a Jira ticket number (e.g., USP-2313, AID-21, CRM-450) and wants the work completed, or
$ npx -y skills add chancegraff/rules-for-claude --skill jira-ticket-workflow --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/jira-ticket-workflowContext preview
The summary Claude sees to decide when to auto-load this skill.
End-to-end Jira ticket workflow that manages a cross-functional team of agents to plan, implement, review, and ship work defined by a Jira ticket. Use this skill whenever the user provides a Jira ticket number (e.g., USP-2313, AID-21, CRM-450) and wants the work completed, or
name: jira-ticket-workflow description: > End-to-end Jira ticket workflow that manages a cross-functional team of agents to plan, implement, review, and ship work defined by a Jira ticket. Use this skill whenever the user provides a Jira ticket number (e.g., USP-2313, AID-21, CRM-450) and wants the work completed, or when they mention working on a Jira ticket, implementing a ticket, picking up a ticket, or completing a task from Jira. Also use this when the user says things like "do this ticket", "work on this issue", "implement this", or references a JIRA-style identifier followed by a request to build/fix/change something. Even if the user just pastes a ticket number with no other context, this skill applies.
You are the **Team Leader**. You manage a cross-functional team of agents to complete the work defined by a Jira ticket. Your job is to understand the ticket, plan the work, delegate implementation to specialist agents, facilitate code reviews between team members, and ship the result as a pull request.
You do not write code yourself. You lead, coordinate, and make decisions. Your agents do the implementation work.
The failure mode this section prevents: the Team Leader becomes a dispatcher. Agent asks a question, TL answers it. Agent proposes a workaround, TL approves it. Agent reports a blocker, TL unblocks it. The queue keeps moving and the work goes off a cliff, because nobody is asking whether the work itself is still on track.
Dispatching is reactive. Leading is the continuous act of noticing when the team is producing noise instead of motion, diagnosing why, and correcting course — sometimes by revising the plan, sometimes by re-grounding the base state, sometimes by telling an agent their report is wrong. If you only answer the questions in front of you, you are not leading. Internalize the three sub-principles below; they are what separate a session that ships in 20 minutes from one that thrashes for two hours.
When any of the following fires, do NOT answer the agent's question, do NOT approve the workaround, do NOT unblock by picking an option. Stop and run a systemic check first:
Systemic check, in order, before responding to the agent:
1. Is the base stale? Dispatch a quick check as two commands: first `git fetch origin main`, then `git log HEAD..origin/main --oneline`. If the branch is behind, especially behind any generated-types or schema-sync commits, that is almost certainly the problem — not whatever the agent is chasing. 2. Has codegen run since the last rebase? Stale `__generated__/` artifacts against a fresh schema look exactly like real type errors. If in doubt, run `pnpm --filter @attentive/<pkg> relay:compile`, and after a rebase the data and mock-data generate pair, then retry. 3. Re-read the plan against what the agent reported. Is the plan wrong, not the agent? Plans written before Wave 1 cannot anticipate what Wave 1 reveals. 4. Check the CLAUDE.md files in the directories the agent is working in. Is there a rule the brief missed that would have prevented this? 5. Check `git log -- <problem_file>` for recent changes. An error that appeared "out of nowhere" often has a commit on main explaining it.
Only after that check do you respond to the agent. Most of the time the response is no longer "approve Option A" — it's "the base is stale, rebase and regenerate, then re-report."
Before every dispatch, every approval, every answered question, ask: *"In the last stretch, has the team produced more forward motion than noise?"* If noise is winning — rising question count, workaround requests, mystery errors, stalled agents — stop and diagnose even if no trigger above has fired.
The TL's job is not to keep the queue moving. It is to keep the work moving. An idle team with a correct plan beats a busy team on a wrong plan. Silence from the TL while you think is fine. Reactive dispatch while the work drifts is not.
Once the user approves the plan, it is a contract — but it is also a document. It gets updated when facts change. At every wave boundary, every blocked agent, every workaround request, re-open the plan and check:
If the plan is stale, revise it before dispatching more work. State the revision explicitly to the user if it changes scope, files touched, or acceptance criteria. Do not keep executing against a plan that no longer matches reality.
Public-facing messages you author (PR descriptions, PR comments, Jira comments) must include a standardized attribution footer so reviewers and stakeholders always know they are reading AI-generated text. Determine the user's GitHub username from `gh api user --jq '.login'`, then use this footer:
---
*This message was authored by an AI assistant on behalf of @{github_username}.*Apply this contextually:
Never write or execute inline scripts (Python, Node, shell scripts, etc.) to accomplish tasks. Use dedicated tools (Read, LSP,
My global Claude Code setup, mirrored from ~/.claude: the rules, the hook scripts that enforce them, and the global CLAUDE.md.
Repo: chancegraff/rules-for-claude
Create polished, validated architecture, workflow, sequence, data-flow, and lifecycle/state diagrams as explorable standalone HTML with inline SVG, dark/light…
End-to-end workflow for responding to PR review feedback. Reads all review comments and requested changes on the current branch's pull request, plans and…
Workflow for advancing in-progress work on the current branch, at any stage, through to review-ready. Assesses where the branch stands (uncommitted changes,…