Files
Claude-Code-Workflow/docs/guide/getting-started.md
catlog22 84610661ca fix(docs): resolve VitePress build errors with custom HTML tags
- Fix custom tags (Good, Bad, Before, After, Tip, Note, Warning) in skill docs
- Replace placeholder variables with HTML entities to prevent Vue parser errors
- Allow manual workflow_dispatch to trigger docs deployment
2026-02-28 16:53:26 +08:00

2.0 KiB

Getting Started with CCW

Welcome to CCW (Claude Code Workspace) - an advanced AI-powered development environment that helps you write better code faster.

What is CCW?

CCW is a comprehensive development environment that combines:

  • Main Orchestrator (/ccw): Intent-aware workflow selection and automatic command routing
  • AI-Powered CLI Tools: Analyze, review, and implement code with multiple AI backends
  • Specialized Agents: Code execution, TDD development, testing, debugging, and documentation
  • Workflow Orchestration: 4-level workflow system from spec to implementation
  • Extensible Skills: 50+ built-in skills with custom skill support
  • MCP Integration: Model Context Protocol for enhanced tool integration

Quick Start

Installation

# Install CCW globally
npm install -g claude-code-workflow

# Or use with npx
npx ccw --help

Your First Workflow

Create a simple workflow in under 5 minutes:

# Main orchestrator - automatically selects workflow based on intent
/ccw "Create a new project"                    # Auto-selects appropriate workflow
/ccw "Analyze the codebase structure"          # Auto-selects analysis workflow
/ccw "Add user authentication"                 # Auto-selects implementation workflow

# Auto-mode - skip confirmation
/ccw -y "Fix the login timeout issue"          # Execute without confirmation prompts

# Or use specific workflow commands
/workflow:init                                  # Initialize project state
/workflow:plan "Add OAuth2 authentication"     # Create implementation plan
/workflow:execute                               # Execute planned tasks

Next Steps

::: tip Need Help? Check out our GitHub Discussions or join our Discord community. :::