Skip to content

Claude Skills Overview

One-Liner

Claude Skills is an AI skill system for VS Code extension — Through five categories (team collaboration, workflow, memory management, code review, and meta-skills), it enables complete development flow automation from specification to implementation to testing to review.

vs Traditional Methods Comparison

DimensionTraditional MethodsClaude Code Workflow
Task orchestrationManual managementAutomatic pipeline orchestration
AI modelsSingle modelMulti-model parallel collaboration
Code reviewManual review6-dimension automatic review
Knowledge managementLost per sessionCross-session persistence
Development workflowHuman-drivenAI-driven automation

Skills Categories

CategoryDocumentDescription
Team Collaborationcollaboration.mdMulti-role collaborative work orchestration system
Workflowworkflow.mdTask orchestration and execution pipeline
Memory Managementmemory.mdCross-session knowledge persistence
Code Reviewreview.mdMulti-dimensional code quality analysis
Meta-Skillsmeta.mdCreate and manage other skills

Core Concepts Overview

ConceptDescriptionLocation/Command
team-coordinateUniversal team coordinator (dynamic roles)/team-coordinate
team-lifecycleFull lifecycle team/team-lifecycle
team-planexPlan-and-execute team/team-planex
workflow-planUnified planning skill/workflow-plan
workflow-executeAgent-coordinated execution/workflow-execute
memory-captureMemory capture/memory-capture
review-codeMulti-dimensional code review/review-code
brainstormBrainstorming/brainstorm
spec-generatorSpecification generator/spec-generator
ccw-helpCommand help system/ccw-help

Team Collaboration Skills

Team Architecture Models

Claude Code Workflow supports two team architecture models:

  1. team-coordinate (Universal Coordinator)

    • Only coordinator is built-in
    • All worker roles are dynamically generated at runtime
    • Supports dynamic teams for any task type
  2. team-lifecycle (Full Lifecycle Team)

    • Based on team-worker agent architecture
    • All workers share the same agent definition
    • Role-specific Phase 2-4 loaded from markdown specs

Team Types Comparison

Team TypeRolesUse Case
team-coordinatecoordinator + dynamic rolesGeneral task orchestration
team-lifecycle9 predefined rolesSpec→Impl→Test→Review
team-planexplanner + executorPlan-and-execute in parallel
team-reviewcoordinator + scanner + reviewer + fixerCode review and fix
team-testingcoordinator + strategist + generator + executor + analystTest coverage

Workflow Skills

Workflow Levels

LevelNameWorkflowUse Case
Level 1Lite-Lite-Litelite-planSkill handoff to lite-execute
Level 2Rapidplan → executeBug fixes, simple features
Level 2.5Rapid-to-Issueplan → issue:newFrom rapid planning to Issue
Level 3Coupledplan → executeComplex features (plan+execute+review+test)
Level 4Fullbrainstorm → plan → executeExploratory tasks
With-FileDocumented explorationanalyze/brainstorm/debug-with-fileMulti-CLI collaborative analysis

Workflow Selection Guide

Task Complexity

┌───┴────┬────────────┬─────────────┐
│        │            │             │
Simple   Medium      Complex      Exploratory
│        │            │             │
↓        ↓            ↓             ↓
lite-plan  plan        plan         brainstorm
          ↓            ↓             ↓
       execute    brainstorm     plan
                     ↓             ↓
                  plan         execute

                  execute

Memory Management Skills

Memory Types

TypeFormatUse Case
Session compressionStructured textFull context save after long conversations
Quick notesNotes with tagsQuick capture of ideas and insights

Memory Storage

memory/
├── MEMORY.md           # Main memory file (line limit)
├── debugging.md        # Debugging patterns and insights
├── patterns.md         # Code patterns and conventions
├── conventions.md      # Project conventions
└── [topic].md         # Other topic files

Code Review Skills

Review Dimensions

DimensionCheck PointsTool
CorrectnessLogic correctness, boundary conditionsreview-code
ReadabilityNaming, function length, commentsreview-code
PerformanceAlgorithm complexity, I/O optimizationreview-code
SecurityInjection, sensitive datareview-code
TestingTest coverage adequacyreview-code
ArchitectureDesign patterns, layeringreview-code

Issue Severity Levels

LevelPrefixDescriptionRequired Action
Critical[C]Blocking issueMust fix before merge
High[H]Important issueShould fix
Medium[M]Suggested improvementConsider fixing
Low[L]Optional optimizationNice to have
Info[I]Informational suggestionReference only

Meta-Skills

Meta-Skills List

SkillFunctionUse Case
spec-generator6-stage spec generationProduct brief, PRD, Architecture, Epics
brainstormMulti-role parallel analysisMulti-perspective brainstorming
skill-generatorSkill creationGenerate new Claude Skills
skill-tuningSkill optimizationDiagnose and optimize
ccw-helpCommand helpSearch, recommend, document
command-generatorCommand generationGenerate Claude commands
issue-manageIssue managementIssue creation and status management

Quick Start

1. Choose Team Type

bash
# General tasks
/team-coordinate "Build user authentication system"

# Full feature development
/team-lifecycle "Create REST API for user management"

# Issue batch processing
/team-planex ISS-20260215-001 ISS-20260215-002

# Code review
/team-review src/auth/**

2. Choose Workflow

bash
# Quick task
/workflow-lite-plan "Fix login bug"

# Full development
/workflow-plan "Add user notifications"
/workflow-execute

# TDD development
/workflow-tdd-plan "Implement payment processing"

3. Use Memory Management

bash
# Compress session
/memory-capture compact

# Quick note
/memory-capture tip "Use Redis for rate limiting" --tag config

4. Code Review

bash
# Full review (6 dimensions)
/review-code src/auth/**

# Review specific dimensions
/review-code --dimensions=sec,perf src/api/

5. Meta-Skills

bash
# Generate specification
/spec-generator "Build real-time collaboration platform"

# Brainstorm
/brainstorm "Design payment system" --count 3

# Get help
/ccw "Add JWT authentication"

Best Practices

  1. Team Selection:

    • General tasks → team-coordinate
    • Full features → team-lifecycle
    • Issue batching → team-planex
    • Code review → team-review
    • Test coverage → team-testing
  2. Workflow Selection:

    • Super simple → workflow-lite-plan
    • Complex features → workflow-planworkflow-execute
    • TDD → workflow-tdd-plan
    • Test fixes → workflow-test-fix
  3. Memory Management:

    • Use memory-capture compact after long conversations
    • Use memory-capture tip for quick idea capture
    • Regularly use memory-manage full to merge and compress
  4. Code Review:

    • Read specification documents completely before reviewing
    • Use --dimensions to specify focus areas
    • Quick scan first to identify high-risk areas, then deep review
  5. Meta-Skills:

    • Use spec-generator for complete spec packages
    • Use brainstorm for multi-perspective analysis
    • Use ccw-help to find appropriate commands

Statistics

CategoryCount
Team Collaboration Skills5
Workflow Skills8
Memory Management Skills2
Code Review Skills2
Meta-Skills7
Total24+

Released under the MIT License.