SOC 職業分類に基づく
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/KonH/ClaudeTools --skill prコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
Create a git commit for the staged changes, branching off the default branch first if needed
Capture feature intent and acceptance criteria before planning begins, writing docs/specs/<YY_MM_DD_HH>_<name>/spec.md. Stops for user approval before the plan skill runs.
Implement the plan at docs/specs/<YY_MM_DD_HH>_<name>/plan.md, spawning developer sub-agents per phase, writing tests test-first, and marking off completed steps.
| name | pr |
| description | Create a pull request for the current branch |
Create a pull request for the current branch.
git status (never -uall) to see untracked filesgit diff to see staged/unstaged changesgit log main..HEAD --stat (and git log main..HEAD for full commit messages) to see every commit that will be included — not just the latest onemain, not just the tip, and draft a title and body:
## Summary (2-4 bullets on why, not a per-file list — the diff already shows what changed) + ## Test plan (checklist; check off what was actually verified, e.g. tests run or console checked, leave unchecked what still needs manual verification)git push -u origin <branch>)gh pr create --title "..." --body "$(cat <<'EOF' ... EOF)" using a heredoc so formatting survivesgh pr view --web to open it in the default browser-uall with git statusmain..HEAD), not just the most recent commitgh is not installed or not authenticated, say so and give the user the branch's compare URL (https://github.com/<owner>/<repo>/pull/new/<branch>) instead of failing silentlymain is used above as the default branch name — substitute the repository's actual default branch (e.g. master) if different.