com um clique
commit-phase
Complete git workflow for a phase - branch, commit, merge, cleanup
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Menu
Complete git workflow for a phase - branch, commit, merge, cleanup
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Baseado na classificação ocupacional SOC
Audit an existing application or guide a new build for AI governance — classifying every function as DETERMINISTIC, AI-ADVISORY, or AI-OPERATIONAL, identifying risk, and recommending hardening. Use when the user asks to "audit AI usage", "check governance", "review where AI is used", "assess AI risk", "governance review", "lock down AI", or when planning a new feature that involves AI and the user wants to understand where AI should vs. shouldn't be used. Also use when the user wants to evaluate whether a component should use AI or deterministic code.
Systematic root cause analysis for bugs and failures. Use when something is broken, failing, or behaving unexpectedly — not for quick typos or obvious one-line fixes. Trigger on "diagnose this", "root cause", "why is this broken", "this isn't working", "investigate this error", "what's causing this", "trace this issue". Also use when /execute-phase Layer 1 or Layer 2 fails twice on the same task.
Execute an approved implementation plan, with automated testing, UI verification, and acceptance-criteria review built into every task. Use this skill whenever the user is ready to start building — trigger on phrases like "execute phase X", "implement the plan", "let's start building", "start coding", "build this out", "time to code", "build phase X", "start phase X", "implement phase X", "let's build this", "start the build", "go ahead and build". Also trigger immediately after the user approves output from /plan-phase. Don't wait to be asked explicitly — if a plan exists and the user says something like "looks good, let's go", this is the right skill.
Guide a complex project ideation session through chunk identification, per-chunk discovery, and structured output files ready for /kickoff Pathway A
Deep market research and assumption mapping - second step in the ideation sequence
Explore a problem space and understand users - the first step in the ideation sequence
| name | commit-phase |
| description | Complete git workflow for a phase - branch, commit, merge, cleanup |
| argument-hint | <phase-number> |
Complete git workflow for Phase $ARGUMENTS:
Run the following checks before committing.
If you're thinking... Do this instead "Naming conventions are fine, I followed them during build" That's what the check verifies. If you followed them, it takes 5 seconds. "I'll merge to main, staging is overkill for this" Ask the user. Merge target is their decision, not yours. "The plan file is still useful, I'll keep it" Used plans are noise. Delete it. The implementation plan and git history are the record.
If naming_conventions.md exists in project root:
git diff --name-only HEADIf staged files touch src/lib/db/schema/ or drizzle/migrations/:
npx vitest run src/lib/db/integration.test.tsgit checkout -b phase-$ARGUMENTS-implementationgit add .git push -u origin phase-$ARGUMENTS-implementationstaging branch exists: git branch -a | grep staginggit checkout staging && git merge phase-$ARGUMENTS-implementation && git pushgit checkout main && git merge phase-$ARGUMENTS-implementation && git pushgit checkout phase-$ARGUMENTS-implementationUse implementation_plan.md to reference what this phase delivered for the commit message.
After merge is complete, delete phase{$ARGUMENTS}_plan.md if it exists. Just delete it locally - do NOT commit or push this deletion separately. It will be included in the next phase's commit naturally.
/execute-phase)