Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/hiyenwong/ai_collection --skill claude-code명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | claude-code |
| description | Delegate coding to Claude Code CLI (features, PRs). |
| version | 2.3.0 |
| author | Hermes Agent + Teknium |
| license | MIT |
| platforms | ["linux","macos","windows"] |
| metadata | {"hermes":{"tags":["Coding-Agent","Claude","Anthropic","Code-Review","Refactoring","PTY","Automation"],"related_skills":["codex","hermes-agent","opencode"]}} |
Delegate coding tasks to Claude Code (Anthropic's autonomous coding agent CLI) via the Hermes terminal.
npm install -g @anthropic-ai/claude-codeclaude once to log in, or set ANTHROPIC_API_KEYclaude auth status --textclaude -p "echo ok" --max-turns 1 --allowedTools Bash| Use Claude Code | Don't Use (fall back to direct) |
|---|---|
| Multi-step refactoring across files | Single file edit |
| Complex feature implementation | Quick fix / one-off change |
| Tasks requiring complex tool orchestration | Claude Code fails auth/network check |
| OpenSpec-driven feature development | API 403 / org restriction blocks CLI |
-p) — Non-Interactive (PREFERRED)claude -p 'Add error handling to all API calls in src/' --allowedTools 'Read,Edit' --max-turns 10
Skips all interactive dialogs. Ideal for automation.
tmux new-session -d -s claude-work -x 140 -y 40
tmux send-keys -t claude-work 'cd /project && claude' Enter
# Handle trust dialog
sleep 5 && tmux send-keys -t claude-work Enter
# Send task
tmux send-keys -t claude-work 'Implement auth module' Enter
# Monitor
tmux capture-pane -t claude-work -p -S -50
Symptom: claude auth status --text shows logged in, but claude -p "echo ok" returns "Failed to authenticate. API Error: 403 Request not allowed".
Cause: Organization-level restrictions on the Claude Pro plan may block CLI API calls even though OAuth is valid. This is NOT a local configuration issue.
Detection:
claude auth status --text # Looks fine
claude doctor # Reports healthy
claude -p "echo ok" --max-turns 1 --allowedTools Bash
# Returns 403 → Claude Code is unavailable
Fix:
claude auth login --console or set ANTHROPIC_API_KEYWhen Claude Code is unavailable but the task requires OpenSpec-driven development with quality gates:
write_file() per filecargo fmt && cargo clippy -- -D warnings && cargo testgit add -A && git commit -m "feat: ..." with conventional messages| Aspect | Claude Code | Fallback (Direct) |
|---|---|---|
| File creation | Delegated | write_file() |
| Test writing | Included in task | Write alongside implementation |
| Iteration | Self-corrects | Manual patch per clippy error |
| Speed | Parallel | Sequential per-module |
| Quality gates | Runs at end | After each module |
cargo fmt && cargo clippy -- -D warnings && cargo test
feat:, fix:, test:, docs:, refactor:For autonomous ML experiment iteration (run → analyze → fix → re-run → scale → paper update), see references/autonomous-ml-research-loop.md.
Key steps:
tmux new-session -d -s <name> && tmux send-keys ... claude --dangerously-skip-permissionstmux capture-pane -t <session> -p -S -20--dangerously-skip-permissions defaults to "No, exit" — must send Down then Enter--max-turns is print-mode only--json-schema needs enough --max-turns — Claude must read files first/compactclaude auth status lies. Always quick-test before starting long sessions.