issue-progress-tracking
21
总安装量
21
周安装量
#17192
全站排名
安装命令
npx skills add https://github.com/yonatangross/skillforge-claude-plugin --skill issue-progress-tracking
Agent 安装分布
claude-code
19
gemini-cli
19
opencode
19
antigravity
18
github-copilot
18
codex
18
Skill 文档
Issue Progress Tracking
Ceremony guide for tracking GitHub issue progress via gh CLI. Ensures issues stay updated as work progresses from start to PR.
Quick Start
/ork:issue-progress-tracking 123
Phase 1: Start Work
Label the issue and create a feature branch:
# Move issue to in-progress
gh issue edit $ARGUMENTS --add-label "status:in-progress" --remove-label "status:todo"
gh issue comment $ARGUMENTS --body "Starting work on this issue."
# Create feature branch
git checkout -b issue/$ARGUMENTS-brief-description
Rules:
- Always branch from the default branch (main/dev)
- Branch name format:
issue/<number>-<brief-description> - Never work directly on main/dev
Phase 2: During Work â Small Commits
Commit after each logical step, not at the end. Every commit references the issue:
# Each commit references the issue number
git commit -m "feat(#$ARGUMENTS): add user model
Co-Authored-By: Claude <noreply@anthropic.com>"
Rules:
- One logical change per commit (atomic)
- Reference issue in every commit:
type(#N): description - Commit early and often â don’t accumulate a massive diff
Phase 3: Report Progress (Long Implementations)
For multi-step work, post progress updates:
gh issue comment $ARGUMENTS --body "Progress update:
- Completed: database schema, API endpoints
- In progress: frontend components
- Remaining: tests, documentation"
When to post updates:
- After completing a major milestone
- When blocked or changing approach
- Before stepping away from a long task
Phase 4: Complete Work
Create the PR and update labels:
# Create PR that closes the issue
gh pr create \
--title "feat(#$ARGUMENTS): brief description" \
--body "Closes #$ARGUMENTS
## Changes
- Change 1
- Change 2
## Test Plan
- [ ] Unit tests pass
- [ ] Manual verification"
# Update issue status
gh issue edit $ARGUMENTS --add-label "status:in-review" --remove-label "status:in-progress"
Rules Quick Reference
| Rule | Impact | What It Covers |
|---|---|---|
| Start Work Ceremony | HIGH | Branch creation, label updates, initial comment |
| Small Commits | HIGH | Atomic commits referencing issues |
Total: 2 rules across 2 categories
Key Decisions
| Decision | Choice | Rationale |
|---|---|---|
| Label prefix | status: |
Consistent with GitHub conventions |
| Branch format | issue/<N>-desc |
Links branch to issue automatically |
| Commit reference | type(#N): |
Conventional commits + issue linking |
| Progress comments | Manual | Keeps humans in the loop |
Common Mistakes
- Starting work without labeling â team loses visibility into who is working on what
- Giant commits at the end â makes review harder and history useless for bisect
- Forgetting to link PR to issue â issue stays open after merge
- Not updating labels on PR creation â issue shows “in-progress” during review
- Closing issues manually with
gh issue closeâ issues are closed ONLY by merging a PR withCloses #Nin the body. During work, comment progress withgh issue comment; never close directly.
Related Skills
ork:commitâ Commit with conventional formatork:fix-issueâ Full issue resolution workflowork:implementâ Feature implementation with parallel agentsork:create-prâ Create pull requests