Files
Claude-Code-Workflow/docs/guide/getting-started.md
catlog22 c3ddf7e322 docs: add VitePress documentation site
- Add docs directory with VitePress configuration
- Add GitHub Actions workflow for docs build and deploy
- Support bilingual (English/Chinese) documentation
- Include search, custom theme, and responsive design
2026-02-28 16:14:09 +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 @ccw/cli

# 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. :::