Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Claude CodeDeclared
CursorNot declared
CodexNot declared
GitHub CopilotNot declared
WindsurfNot declared
Gemini CLINot declared
ClineNot declared
OpenCodeNot declared
Repository health
Stars231
LicenseLICENSE
Default branchmain
Open issues99
Status
Active
Skill metadata
Parsed from SKILL.md frontmatter.
Version1.0.0
LicenseMIT
CompatibilityClaude Code 2.1.251+.
Allowed toolsBash
Declared agentsclaude-code
More metadata
category
workflow-automation
Package contents
Files included with this skill beyond the listing page.
skill mdSKILL.md4,518 B
docsSUMMARY.md368 B
History
First seen on skills.sh
First recorded snapshot · 209 installs
SKILL.md
Issue Progress Tracking
Ceremony guide for tracking GitHub issue progress via gh CLI. Ensures issues stay updated as work progresses from start to PR.
Invocation
This skill is user-invocable: false and disable-model-invocation: true: there is no /ork: form and the model cannot auto-select it (#3313). An agent loads it explicitly by Reading this file's path:
# Create PR that closes the issue
gh pr create \
--title "feat(#$ARGUMENTS[0]): brief description" \
--body "Closes #$ARGUMENTS[0]
## Changes
- Change 1
- Change 2
## Test Plan
- [ ] Unit tests pass
- [ ] Manual verification"
# Update issue status
gh issue edit $ARGUMENTS[0] --add-label "status:in-review" --remove-label "status:in-progress"
Rules Quick Reference
Rule
Impact
What It Covers
[Start Work Ceremony](rules/start-work-ceremony.md)
HIGH
Branch creation, label updates, initial comment
[Small Commits](rules/small-commits.md)
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 with Closes #N in the body. During work, comment progress with gh issue comment; never close directly.
Related Skills
ork:commit — Commit with conventional format
ork:fix-issue — Full issue resolution workflow
ork:implement — Feature implementation with parallel agents