Skip to main content

πŸš€ Quick Start

Get ECC running in your CodeBuddy in 5 minutes!

πŸ“¦ Installation Steps​

Step 1: Add the Plugin Marketplace​

codebuddy plugin marketplace add https://github.com/affaan-m/everything-claude-code

Step 2: Install the ECC Plugin​

codebuddy plugin install everything-claude-code@everything-claude-code

Step 3: Install Rules (Critical!)​

# Create rules directory
mkdir -p .codebuddy/rules

# Copy common rules (required)
cp -r rules/common/* .codebuddy/rules/

# If you need TypeScript rules
cp -r rules/typescript/* .codebuddy/rules/

# If you need Python rules
cp -r rules/python/* .codebuddy/rules/

# If you need Go rules
cp -r rules/golang/* .codebuddy/rules/

βœ… Verify Installation​

# Start CodeBuddy
codebuddy

# Enter the following command to test
/plan "Test if ECC is working"

If you see detailed plan output from the planner agent, the installation was successful! πŸŽ‰

🎯 Your First Command Experience​

1. /plan - Create an Implementation Plan​

/plan "I want to add a user login feature including registration, login, and password reset"

2. /tdd - Test-Driven Development​

/tdd --feature="user authentication system"

3. /code-review - Code Review​

/code-review

πŸ”§ Configuration Options​

Package Manager Preference​

ECC automatically detects your package manager (npm/yarn/pnpm/bun), but you can also set it manually:

/setup-pm --set pnpm

Context Management​

Use different .md files to switch work modes:

# Load development context
codebuddy --context dev.md

# Load code review context
codebuddy --context review.md

πŸ“š Next Steps​