Agent skill
issue-track
Post a status comment on a GitHub issue (starting work, plan update, completed)
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/issue-track
SKILL.md
Track Issue Progress via Comments
Post a status update comment on GitHub issue #$ARGUMENTS.
Usage
The argument format is: <issue-number> <status> where status is one of:
start— Post a "Work started" commentplan— Post the implementation plan as a commentupdate <text>— Post a custom progress updatedone— Post a completion comment
Behavior
For start:
gh issue comment <number> --body "$(cat <<'EOF'
🔧 **Work started** on this issue.
Branch: `feature/<number>-<slug>` (will be created shortly)
EOF
)"
For plan:
Read /tmp/plan-<number>.md if it exists, and post it as a comment:
gh issue comment <number> --body "$(cat <<'EOF'
📋 **Implementation Plan**
<contents of /tmp/plan-<number>.md>
EOF
)"
For update <text>:
gh issue comment <number> --body "$(cat <<'EOF'
📝 **Progress Update**
<text>
EOF
)"
For done:
gh issue comment <number> --body "$(cat <<'EOF'
✅ **Implementation complete** — PR created and CI checks passing.
EOF
)"
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?