ワンクリックで
issue-track
Post a status comment on a GitHub issue (starting work, plan update, completed)
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Post a status comment on a GitHub issue (starting work, plan update, completed)
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Check and fix Checkstyle violations in jhelm modules
jhelm project coding standards and conventions for Java 21 with Lombok and Maven
Implement a GitHub issue with branch and pull request workflow
Auto-format, fix violations, and run Maven validate (PMD + Checkstyle) in one step
jhelm project architecture and module structure for a Java Helm implementation
Code review automation for Java, TypeScript, JavaScript, Python, Go. Analyzes PRs for complexity and risk, checks code quality for SOLID violations and code smells, generates review reports. Use when reviewing pull requests, analyzing code quality, identifying issues, generating review checklists.
| name | issue-track |
| description | Post a status comment on a GitHub issue (starting work, plan update, completed) |
| argument-hint | <issue-number> <status> |
| allowed-tools | Bash(gh *) |
Post a status update comment on GitHub issue #$ARGUMENTS.
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 commentFor 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
)"