track-issue-flow
1
总安装量
1
周安装量
#46193
全站排名
安装命令
npx skills add https://github.com/myuon/track --skill track-issue-flow
Agent 安装分布
amp
1
opencode
1
kimi-cli
1
codex
1
gemini-cli
1
Skill 文档
Track Issue Flow
Follow this workflow when handling issue work in repositories that use the track CLI.
Standard Workflow
-
Identify candidate issues.
- Run
track list. - If the user refers to an item by list position (for example, “5”), map it to the exact issue ID in the current output before acting.
- Run
-
Confirm issue scope.
- Run
track show <issue-id>. - Extract status, priority, labels, and notes to understand expectations and missing details.
- Run
-
Start execution with explicit state changes.
- When work begins, set status to active (
in_progress) usingtrack set. - Keep user-facing updates aligned with tracker state.
- When work begins, set status to active (
-
Implement and validate.
- Make code/doc changes required by the issue.
- Run project checks relevant to changed files.
-
Close the loop in the tracker.
- Update labels/priority/status as needed.
- Mark done only after the requested implementation and validation are complete.
Command Reference
Read references/track-cli-reference.md for command patterns used by this skill.
Guardrails
- Resolve IDs from fresh
track listoutput; do not assume stale ordering. - Prefer concrete IDs (
TRK-xx) for mutations. - Keep tracker updates small and explicit so history remains auditable.
- If issue details are unclear, capture assumptions in progress updates before making irreversible changes.