ワンクリックで
gh-issue
Analyze and fix the specified GitHub issue
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Analyze and fix the specified GitHub issue
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Argus — all-in-one information gathering & reconnaissance toolkit. 135 modules covering network infrastructure, web app analysis, and security/threat intelligence. Use for domain recon, subdomain enum, SSL analysis, tech stack detection, vulnerability scanning, and OSINT.
Manage secrets via Bitwarden CLI (bw). Use when pulling secrets into a shell session, creating/updating Secure Notes from .env files, listing vault items, or setting up Bitwarden on a new machine. Secrets live in Bitwarden, get loaded into memory on demand, and die with the shell session — no files on disk.
Develop a thorough, step-by-step specification for a given idea
Set up a recurring build tracker cron job for any GitHub repo. Runs a zero-LLM shell script to detect stale PRs, stale assigned issues, and phase progress, then posts to a Discord channel only when there's something actionable. Use when asked to "track this build every N hours", "prod agents on a project", "set up a build monitor", "watch this repo for stale work", or similar. The tracker is cheap to run — script does all the work, the agent only speaks when findings exist.
Run long-running coding tasks in cloud environments (Claude Code or Codex), with session teleporting and automatic PR creation.
Delegate coding tasks to subagents or run Claude Code/Codex in tmux sessions. Use the Task tool for focused multi-step coding work. Use tmux for long-running interactive sessions, parallel worktree-based fixes, and PR reviews. NOT for simple single-file edits — do those directly.
| name | gh-issue |
| description | Analyze and fix the specified GitHub issue |
| user-invocable | true |
Analyze and fix the specified GitHub issue: $ARGUMENTS
Follow these steps:
Get issue details:
gh issue view $ARGUMENTS to get the complete issue informationgh issue list and ask which to work onUnderstand the problem:
Search the codebase:
Plan and comment your approach:
gh issue comment $ARGUMENTS --body "Implementation plan: ..."Create a development branch:
git checkout -b fix/issue-$ARGUMENTS-{description}Implement the fix:
Verify the solution:
npm test or equivalentnpm run lint, npm run typecheckCreate a pull request:
gh pr create --title "Fix #$ARGUMENTS: {description}" --body "Closes #$ARGUMENTS"Keep the issue open until the pull request is merged
Remember: Use the GitHub CLI (gh) for all GitHub-related tasks and reference the issue number in commits and PR.