用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/nguyenthienthanh/aura-frog --skill git-workflow命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | git-workflow |
| description | Token-efficient git operations with security scanning and auto-split commits |
| autoInvoke | false |
| priority | high |
| model | haiku |
| triggers | ["commit","push","create PR"] |
| allowed-tools | Bash, Read |
| user-invocable | false |
AI-consumed reference. Optimized for Claude to read during execution. Human-readable explanation: see docs/architecture/HIERARCHICAL_PLANNING.md or docs/getting-started/ depending on topic.
Token-efficient git: 2-4 tool calls max.
Stage files, check diff stats, scan for secrets (api_key|token|password|secret|credential).
If secrets found: STOP. Show matches. Block commit.
Split if: mixed types (feat+fix), FILES >10 unrelated, multiple scopes (frontend+backend). Single if: same type/scope, FILES ≤3 + LINES ≤50, logically related.
Format: type(scope): description (<72 chars, present tense, imperative)
Types: feat, fix, docs, chore, refactor, test, perf
Push only if user requests.
git fetch origin main + log commits since main + diff statsgh pr create --title "type(scope): description" --body "## Summary\n- bullets\n\n## Test Plan\n- steps"staged: 3 files (+45/-12 lines) | security: passed | commit: a3f8d92 feat(auth): add token refresh