원클릭으로
claude-code
Tool: Anthropic Claude Code CLI (`npm install -g @anthropic-ai/claude-code`)
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Tool: Anthropic Claude Code CLI (`npm install -g @anthropic-ai/claude-code`)
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Create structured analyses with numbered findings, execution plans, and task materialization
Author a rulebook task spec interactively — research, draft, ask the user clarifying questions, confirm, then create the tasks in rulebook ready for /rulebook-driver. Use when the user wants to plan/spec a feature before implementing.
Spec-driven task management for features and breaking changes with OpenSpec-compatible format
Behavioral guidelines to reduce common LLM coding mistakes — overcomplication, sloppy refactors, hidden assumptions, weak goals. Use when writing, reviewing, or refactoring code. Auto-applies; invoke explicitly via /karpathy-guidelines or 'follow karpathy discipline'.
Accessibility audit for WCAG compliance and usability
Design or review API endpoints (REST/GraphQL)
| name | Claude Code |
| description | Tool: Anthropic Claude Code CLI (`npm install -g @anthropic-ai/claude-code`) |
| version | 1.0.0 |
| category | cli |
| author | Rulebook |
| tags | ["cli","cli-tool"] |
| dependencies | [] |
| conflicts | [] |
Tool: Anthropic Claude Code CLI (npm install -g @anthropic-ai/claude-code)
export ANTHROPIC_API_KEY=your_key
claude "Read AGENTS.md and CLAUDE.md, then implement [feature] with tests"
# Key flags:
--model <model> # Model selection
--dangerously-skip-permissions # Skip permission prompts (use with caution)
--verbose # Debug mode
Write complete, production-quality tests:
expect(true).toBe(true) and bare toBeDefined() are forbidden; assert actual behavior.skip() / .only() to bypass failing testsnpm run lint && npm test