ワンクリックで
commit
Stage and commit changes following the project's observed flow. Propose message + files for approval first, never push automatically.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Stage and commit changes following the project's observed flow. Propose message + files for approval first, never push automatically.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Deep analysis of current changes before committing. Goes beyond lint — catches logic bugs, architectural violations, security, and performance issues.
Create a pull request from the current branch, matching the repo's PR conventions (What/Why/Testing for features, Summary/Test-plan for small PRs).
Review staged or unstaged changes before committing. Catches bugs, style drift, and missing coverage.
Cut a release — promote Unreleased → versioned in CHANGELOG, bump version, commit. CI auto-tags and publishes from the version-bump commit.
Create a release-tracking issue that organizes open issues into a phased roadmap. Pass a target version (e.g., `0.5.0`) to scope the plan.
Run the full quality gate — format, lint, tests, types. Use after changes to verify nothing is broken.
| name | commit |
| description | Stage and commit changes following the project's observed flow. Propose message + files for approval first, never push automatically. |
Create a commit for the current changes.
git log --oneline -20 style. No scopes like feat:/fix: unless the existing log uses them.git add <paths>, never git add -A / git add .. Skip scripts/audit_*.py and other untracked unrelated files unless the user asked for them.ruff format (and fix ruff check) before staging. See CLAUDE.md for commands.git push --force-with-lease, and pushing still needs explicit authorization.