Agent skill

issue-track

Post a status comment on a GitHub issue (starting work, plan update, completed)

Stars 163
Forks 31

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" comment
  • plan — Post the implementation plan as a comment
  • update <text> — Post a custom progress update
  • done — Post a completion comment

Behavior

For start:

bash
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:

bash
gh issue comment <number> --body "$(cat <<'EOF'
📋 **Implementation Plan**

<contents of /tmp/plan-<number>.md>
EOF
)"

For update <text>:

bash
gh issue comment <number> --body "$(cat <<'EOF'
📝 **Progress Update**

<text>
EOF
)"

For done:

bash
gh issue comment <number> --body "$(cat <<'EOF'
✅ **Implementation complete** — PR created and CI checks passing.
EOF
)"

Expand your agent's capabilities with these related and highly-rated skills.

Didn't find tool you were looking for?

Be as detailed as possible for better results