用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/alamenai/terrae --skill commit命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | commit |
| description | Create standardized git commits following Terrae's conventions |
| allowed-tools | Bash(git *) |
Create standardized git commits following Terrae's conventions.
Check Current State
git status to see changed filesgit diff to see the actual changesReview Changes with User
Stage Files
git add -A or git add .)Commit Message Format Follow conventional commits:
type(scope): description
Types:
feat: New featurefix: Bug fixdocs: Documentation changesstyle: Formatting, no code changerefactor: Code restructuringtest: Adding or updating testschore: Maintenance tasksExamples:
feat(marker): add rotation supportfix(popup): prevent memory leak on unmountdocs(readme): update installation instructionsNew Component Convention
When committing a new component, split into 3 separate commits in this order:
feat(map): add {component} component — the source file (src/registry/map/{slug}.tsx)feat(docs): add {component} example components — all example files (src/app/docs/_components/examples/{slug}-*.tsx)feat(docs): add {component} documentation page — the docs page (src/app/docs/{slug}/page.tsx)Shared file modifications (sidebar, components page, changelog, registry.json, barrel export) should be committed separately since they often contain changes for multiple components.
Important Rules
Co-Authored-By lines--amend unless explicitly requestedCreate the Commit
git commit -m "type(scope): description"
Verify
git status to confirm commit succeeded