用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/openkursar/hello-halo --skill code-commit命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
important!!! Must read and follow before writing or editing any code, and equally before planning, designing, or discussing architecture for this codebase (module placement, directory layout, IPC channels, theme, i18n) — decisions made while planning are what the later edit is bound by. Entry point to CONTEXT.md / ARCHITECTURE.md / quick.md. Covers architecture, conventions, quality standards, and responsive design requirements.
Called only when actively triggered by the user..
Must be invoked when the user asks to commit review.
正在显示 SKILL.md
基于 SOC 职业分类
| name | code-commit |
| description | Must be invoked when the user asks to commit code, submit code, or any similar request. |
Run git status and git diff in the repository to understand all current changes.
Review all changed files. If any issues are found, report them to the user and wait for confirmation before committing.
Use your judgment to identify code that looks temporary or was clearly left in by accident -- things like debugger statements, placeholder values (test123, asdf, foo), commented-out code blocks, or anything that reads like a quick hack not meant for production. Don't be overly rigid; focus on what obviously doesn't belong.
Check whether any files that should not be committed are included in the changes:
.DS_Store, Thumbs.db, etc.*.log, *.tmp, *.bak, *.swp, etc..idea/, .vscode/, etc.node_modules/, dist/, build/, etc..env, credentials.json, private keys, etc.Ensure the code is suitable for an internationalized, open-source project:
Format:
<type>: #AI commit# <concise description>. collaboration and commit by halo
Supported types:
| type | usage |
|---|---|
| feat | New feature |
| fix | Bug fix |
| docs | Documentation changes |
| style | Code formatting (no logic changes) |
| refactor | Refactoring (no new features or bug fixes) |
| perf | Performance improvement |
| test | Test-related changes |
| chore | Build, tooling, dependency updates, etc. |
Examples:
git commit -m "feat: #AI commit# add user authentication module. collaboration and commit by halo"
git commit -m "fix: #AI commit# resolve memory leak in event listener. collaboration and commit by halo"
git add <relevant files>
git commit -m "<generated commit message>"
git add ..git status after committing to verify.git push unless the user explicitly asks.