com um clique
commit
Stage and commit changes with a well-crafted commit message.
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
Stage and commit changes with a well-crafted commit message.
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
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).