ワンクリックで
gitplan
Plan and execute coherent Conventional Commit groupings for large, tangled working tree changes across many files.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Plan and execute coherent Conventional Commit groupings for large, tangled working tree changes across many files.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Validation gate for freshly written code — run two independent reviews (codex CLI + a Claude review subagent) over the same scoped diff, then empirically vet every finding against ground truth before accepting or vetoing it. Use after landing a work item (especially subagent-written code) and before committing.
Work through a queue of Technical Project Plans serially — delegate each to a TDD subagent, double-review the result with codex and a Claude /review subagent, empirically vet every finding before accepting or vetoing it, and land one coherent commit per plan. Use when executing a roadmap of plan files (e.g. a _todo/ directory) for a port, migration, or multi-stage feature.
Review code for potential issues and improvements. Use when asked to review specific files, functions, or code sections.
Update the active Technical Project Plan for handoff when context is running low or the session is ending, so the next session continues instead of restarting.
Work on a Technical Project Plan — read the plan, identify the current phase, do that phase's work, and update the plan with discoveries. Use when starting or resuming multi-session work tracked in a plan file.
Iterative deep planning with critiques and alternatives. Use when facing complex design decisions requiring thorough analysis.
| name | gitplan |
| description | Plan and execute coherent Conventional Commit groupings for large, tangled working tree changes across many files. |
| disable-model-invocation | false |
| allowed-tools | Bash, Read, Glob, Grep, Edit, Write, WebSearch, Skill |
Don't invoke this skill if we're just reviewing a couple files. This skill is ONLY applicable when untangling 15+ files with multiple inter-twingled edits.
More on these workflows: photostructure.com/coding
Never create megacommits. Each commit should be focused, coherent, and reviewable.
If the repository has a layered structure (e.g. shared utilities → core → feature packages → app), work through it from the lowest-level layer upward so dependencies land before their consumers.
git status and git diff --stat — use subagents to preserve context and give summaries.git diff -U150 but limit JSON/lockfiles to the first ~50 lines.git add <files>, including any related docs/plans decided in Phase 1.review-staged skill if available). Use a capable model — reviews are important.git status for remaining changes.Review the staged code for potential issues and improvements. Follow any project conventions documented in the repository root (e.g. CLAUDE.md, AGENTS.md, contributing guides).
For each issue:
For documentation or trivial implementation issues, suggest the edit to the user and apply if they accept.
For other issues, provide a unique identifier for each issue (e.g. #A or #B), a summary of the issue, where it's located, and a proposed solution. Ask the user and apply if they accept.