with one click
commit
Stage and commit changes with a well-crafted commit message.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Stage and commit changes with a well-crafted commit message.
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Build a threat model for a codebase — map assets, entry points, trust boundaries, and the threats that matter — and write THREAT_MODEL.md to focus later scanning and triage.
Explore an existing codebase, design a concrete feature architecture, implement in small phases, and verify with focused tests.
Behavior-preserving cleanup of recently changed code for reuse, clarity, consistency, and efficiency.
Verify, deduplicate, rank, and route raw security findings from VULN-FINDINGS.json, scanner output, or a markdown report, then write TRIAGE.json and TRIAGE.md.
Static source-code vulnerability scan that maps focus areas, fans out read-only security agents, and writes VULN-FINDINGS.json plus VULN-FINDINGS.md for triage.
High-precision review of code changes for real bugs, security regressions, and explicit project-guideline violations, with independent verification before reporting.
| name | commit |
| description | Stage and commit changes with a well-crafted commit message. |
| when-to-use | When the user asks to commit, save, or checkpoint their work. |
| arguments | ["message"] |
Create a git commit for the current changes.
git status to see all changed filesgit diff to understand the changes (both staged and unstaged)git log --oneline -5 to match the repo's commit message stylegit add -A)${ARGUMENTS}
If the user provided a message hint above, incorporate it into the commit message.
If pre-commit hooks fail, fix the issue and create a NEW commit (never amend).