Loading...
Loading...
Auto-updates GitHub issues with commit progress. Use when starting work on an issue, tracking progress during implementation, or completing work with a PR.
npx skill4agent add yonatangross/orchestkit issue-progress-trackinggh/ork:issue-progress-tracking 123# 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-descriptionissue/<number>-<brief-description># Each commit references the issue number
git commit -m "feat(#$ARGUMENTS): add user model
Co-Authored-By: Claude <noreply@anthropic.com>"type(#N): descriptiongh issue comment $ARGUMENTS --body "Progress update:
- Completed: database schema, API endpoints
- In progress: frontend components
- Remaining: tests, documentation"# 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"| Rule | Impact | What It Covers |
|---|---|---|
| Start Work Ceremony | HIGH | Branch creation, label updates, initial comment |
| Small Commits | HIGH | Atomic commits referencing issues |
| Decision | Choice | Rationale |
|---|---|---|
| Label prefix | | Consistent with GitHub conventions |
| Branch format | | Links branch to issue automatically |
| Commit reference | | Conventional commits + issue linking |
| Progress comments | Manual | Keeps humans in the loop |
gh issue closeCloses #Ngh issue commentork:commitork:fix-issueork:implementork:create-pr