From rkit
Claude Code learning and education skill. Teaches users how to configure and optimize Claude Code settings. Works across any project and any language. Start learning/setup with "learn" or "setup". Use proactively when user is new to Claude Code, asks about configuration, or wants to improve their Claude Code setup. Triggers: learn claude code, claude code setup, CLAUDE.md, hooks, commands, skills, how to configure, 클로드 코드 배우기, 설정 방법, Claude Code 학습, クロードコード学習, 设置方法, how do I use claude code, aprender claude code, configuración, cómo configurar, apprendre claude code, configuration, comment configurer, Claude Code lernen, Konfiguration, wie konfigurieren, imparare claude code, configurazione, come configurare Do NOT use for: actual coding tasks, debugging, or feature implementation.
npx claudepluginhub solitasroh/rkit --plugin rkitThis skill is limited to using the following tools:
> Master Claude Code configuration and optimization
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
Master Claude Code configuration and optimization
| 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 |
Learning content by level:
Auto-generate appropriate settings after analyzing current project:
Guide to latest Claude Code features and best practices.
## 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
## What are Slash Commands?
Execute repetitive daily tasks with `/command-name`.
## Command Location
.claude/commands/{command-name}.md
## PostToolUse Hook
Auto-formatting after code modification:
// .claude/settings.local.json
{
"hooks": {
"PostToolUse": [{
"matcher": "Write|Edit",
"hooks": [{
"type": "command",
"command": "pnpm format || true"
}]
}]
}
}
## What are Sub-agents?
AI agents specialized for specific tasks.
## What are Skills?
Domain-specific expert context. Claude auto-references when working on related tasks.
## MCP Integration
Connect external tools (Slack, GitHub, Jira, etc.) via .mcp.json.
## PR Automation with GitHub Action
Mention @claude in PR comments to auto-update documentation.
## Team Rule Standardization
1. Manage CLAUDE.md with Git
2. Add rules during PR review
3. Gradually accumulate team knowledge
## Agent Teams (v1.5.1)
Parallel PDCA execution with multiple AI agents working simultaneously.
Requirements:
CLAUDE_CODE_EXPERIMENTAL_AGENT_TEAMS=1
Usage:
/pdca team {feature} Start team mode
/pdca team status Check teammate progress
/pdca team cleanup End team session
Team composition by level:
Dynamic: 2 teammates (developer, qa)
Enterprise: 4 teammates (architect, developer, qa, reviewer)
## What is PDCA?
Document-driven development methodology.
Plan → Design → Do → Check → Act
## Folder Structure
docs/
├── 01-plan/ # Planning
├── 02-design/ # Design
├── 03-analysis/ # Analysis
└── 04-report/ # Reports
## Learn More
Use /pdca skill to learn PDCA methodology.
## Output Styles
Customize how Claude responds based on your project level.
Available styles:
rkit-learning Best for beginners (learning points, TODO markers)
rkit-pdca-guide Best for PDCA workflows (status badges, checklists)
rkit-enterprise Best for architects (tradeoff analysis, cost impact)
Usage:
/output-style Select interactively
/output-style rkit-learning Apply directly
Auto-recommendation:
Starter → rkit-learning
Dynamic → rkit-pdca-guide
Enterprise → rkit-enterprise
## Agent Memory
All rkit agents automatically remember context across sessions.
No configuration needed.
Memory scopes:
project 9 agents remember per-project context (.claude/agent-memory/)
user 2 agents remember cross-project learning (~/.claude/agent-memory/)
Agents with user-scope memory:
starter-guide Remembers your learning progress across projects
pipeline-guide Remembers your pipeline preferences globally
## Agent Teams
Parallel PDCA execution for Dynamic and Enterprise projects.
See Level 4 for details.
📚 Claude Code Learning Complete!
**Current Level**: {level}
**Learned**: {summary}
🎯 Next Steps:
- Continue learning with /claude-code-learning learn {next_level}
- Auto-generate settings with /claude-code-learning setup
- Check latest trends with /claude-code-learning upgrade
Files to analyze:
CC 2.1.0+ supports hot reload for skill changes. No session restart needed.
/reload-plugins for forced refresh/eval run [skill-name] after changesclassification frontmatter to categorize skills/loop 5m /pdca status for ongoing work