Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/nearai/ironclaw --skill commit명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
Use when adding or changing a Reborn integration — a new extension, a channel surface, model-callable tools, or a shared auth provider — or when deciding whether something is "a channel", "an extension", or "a tool". Maps the unified extension model (NEA-25) to the exact manifest sections, crates, seams, and tests.
Use when creating or editing agent guidance in this repo — anything under .claude/ (skills, commands, rules), AGENTS.md or CLAUDE.md files, or the runtime skills/ directory — or when guidance is found citing files, branches, or checks that no longer exist.
Use when adding or reviewing tests for Reborn behavior — choosing a test tier, covering a bug fix, testing model/tool-choice behavior, touching tests/integration or tests/fixtures/llm_traces, or when a test needs Postgres, Docker, or a live LLM.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | commit |
| version | 1.0.0 |
| description | Generate git commit messages from staged changes |
| activation | {"keywords":["commit","git commit"],"patterns":["(?i)(create|make|write|generate)\\s.*commit","(?i)commit\\s.*(message|changes|staged)"],"tags":["git","version-control"],"max_context_tokens":1000} |
When the user asks to create a commit:
shell with git status to see what files are staged and unstaged.shell with git diff --cached to see the exact changes that will be committed.shell with git log --oneline -5 to understand the repo's commit message style..env, credentials.json, API keys). Warn the user if such files are staged.git commit.git add <specific files> (never use git add -A or git add .).If the repo doesn't have a clear style, use:
<type>: <concise description>
<optional body explaining why>
Where type is: fix, feat, refactor, test, docs, chore.