| name | claude-code-learning |
| classification | capability |
| classification-reason | Highly likely to be subsumed by model's native capabilities |
| deprecation-risk | high |
| effort | low |
| description | Claude Code learning — configure and optimize Claude Code settings, tips, and workflows.
Triggers: learn, setup, claude code, optimize
|
| argument-hint | [learn|setup|upgrade] [level] |
| agent | claude-code-guide |
| allowed-tools | ["Read","Write","Edit","Glob","Grep","Bash","AskUserQuestion"] |
| user-invocable | true |
| imports | ["${PLUGIN_ROOT}/templates/shared/naming-conventions.md"] |
| next-skill | null |
| pdca-phase | null |
| task-template | [Learn] Claude Code {level} |
Claude Code Learning Skill
Master Claude Code configuration and optimization
Actions
| Action | Description | Example |
|---|
learn | Start learning guide | /claude-code-learning learn 1 |
setup | Auto-generate settings | /claude-code-learning setup |
upgrade | Latest features guide | /claude-code-learning upgrade |
learn [level]
Learning content by level:
- Level 1: Basics - Writing CLAUDE.md, Using Plan Mode
- Level 2: Automation - Commands, Hooks, Permission management
- Level 3: Specialization - Agents, Skills, MCP integration
- Level 4: Team Optimization - GitHub Action, Team rule standardization
- Level 5: PDCA Methodology - bkit methodology learning
setup
Auto-generate appropriate settings after analyzing current project:
- Analyze/generate CLAUDE.md
- Check .claude/ folder structure
- Suggest required configuration files
upgrade
Guide to latest Claude Code features and best practices.
Learning Levels
Level 1: Basics (15 min)
## What is CLAUDE.md?
A shared knowledge repository for the team. When Claude makes mistakes,
add rules to prevent the same mistakes from recurring.
## Example
# Development Workflow
## Package Management
- **Always use `pnpm`** (`npm`, `yarn` prohibited)
## Coding Conventions
- Prefer `type`, avoid `interface`
- **Never use `enum`** → Use string literal unions
## Prohibited
❌ No console.log (use logger)
❌ No any type