π 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β
- Detailed Installation - In-depth configuration guide
- Your First Command - Deep dive into the /plan command