ワンクリックで
push
Use when the user wants all local changes staged, committed with an auto-generated message, and pushed to remote in one step.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Use when the user wants all local changes staged, committed with an auto-generated message, and pushed to remote in one step.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Mine architecture decision records (ADRs), gotcha files, runbooks, and docs/archive for cross-project lessons that warrant ai-playbook canonical specs. Use when a project lacks a populated retros/ directory but has equivalent material in other forms.
Implement tasks from an OpenSpec change. Use when the user wants to start implementing, continue implementation, or work through tasks.
Archive a completed change in the experimental workflow. Use when the user wants to finalize and archive a change after implementation is complete.
Orchestrate the canonical task↔PR↔release flow end-to-end. Two modes — `/dev-flow start <description>` scaffolds an OpenSpec change + branch + (optional) worktree + git hook ready for commits; `/dev-flow ship` validates the current branch + pushes + opens PR + monitors CI. Use whenever you start any non-trivial change in a playbook-consuming project. LLM-agnostic — works for Claude Code, Cursor, Antigravity, Gemini CLI, OpenCode, and humans.
Implement an OpenSpec change in parallel using multiple subagents (one per disjoint task group inside the same slice). Use when the slice's tasks.md has ≥2 task groups with disjoint write-paths AND >30 min of parallelisable work. For sequential implementation use openspec-apply-change instead.
Review code changes adversarially using parallel review layers (Blind Hunter, Edge Case Hunter, Acceptance Auditor) with structured triage into actionable categories. Use when the user says "run code review" or "review this code"
| name | push |
| description | Use when the user wants all local changes staged, committed with an auto-generated message, and pushed to remote in one step. |
| argument-hint | [optional commit message] |
| model | sonnet |
| context | fork |
| allowed-tools | Bash, Read, Grep, Glob |
Stage all changes, create a descriptive commit, and push to the remote.
git status and git diff --stat to understand all changes$ARGUMENTS contains text, use it as the commit messagegit add .Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
git push--force or --no-verifygit commit -m "$(cat <<'EOF'
message here
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
EOF
)"
$ARGUMENTS