ワンクリックで
pick-task
Pick the next task from the GitHub project board for this repository
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Pick the next task from the GitHub project board for this repository
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Mark a task as done — close the GitHub issue and clean up labels
Run a security-focused review of recent changes using the security-reviewer agent
Run tests for a specific package by name or detect from current working directory
Verify a trace file's integrity and evaluate it against a policy in one step
Run documentation governance checks to verify docs consistency and claim accuracy
Review a pull request against Krynix project standards with code-reviewer agent
| name | pick-task |
| description | Pick the next task from the GitHub project board for this repository |
| allowed-tools | Bash, Read |
| user-invocable | true |
| argument-hint | ["optional label filter","e.g. \"P0\" or \"bug\""] |
Fetch and display available tasks from GitHub Issues for this repository.
Determine the repo name from the current directory:
REPO_NAME=$(basename $(git rev-parse --show-toplevel))
Fetch open issues labeled "ready" for this repo:
gh issue list --repo PROJECT-OBA/$REPO_NAME --state open --label "ready" --json number,title,body,labels,assignees --limit 10
If a label filter was provided ($ARGUMENTS), add it:
gh issue list --repo PROJECT-OBA/$REPO_NAME --state open --label "ready,$ARGUMENTS" --json number,title,body,labels,assignees --limit 10
Display the issues in a readable format:
Ask the user which issue they want to work on.
When selected, assign it and mark in-progress:
gh issue edit <number> --repo PROJECT-OBA/$REPO_NAME --add-label "in-progress" --remove-label "ready"
Create a feature branch for the issue:
git checkout main && git pull && git checkout -b feat/issue-<number>-<short-description>
Display the full issue body so the user/agent has context to start working.