.codebuddy/README.md
Bring Everything Claude Code (ECC) workflows to CodeBuddy IDE. This repository provides custom commands, agents, skills, and rules that can be installed into any CodeBuddy project using the unified Target Adapter architecture.
Use the unified install system for full lifecycle management:
# Install with default profile
node scripts/install-apply.js --target codebuddy --profile developer
# Install with full profile (all modules)
node scripts/install-apply.js --target codebuddy --profile full
# Dry-run to preview changes
node scripts/install-apply.js --target codebuddy --profile full --dry-run
# Check installation health
node scripts/doctor.js --target codebuddy
# Repair installation
node scripts/repair.js --target codebuddy
# Uninstall cleanly (tracked via install-state)
node scripts/uninstall.js --target codebuddy
The legacy shell scripts are still available for quick setup:
# Install to current project
cd /path/to/your/project
.codebuddy/install.sh
# Install globally
.codebuddy/install.sh ~
Commands are on-demand workflows invocable via the / menu in CodeBuddy chat. All commands are reused directly from the project root's commands/ folder.
Agents are specialized AI assistants with specific tool configurations. All agents are reused directly from the project root's agents/ folder.
Skills are on-demand workflows invocable via the / menu in chat. All skills are reused directly from the project's skills/ folder.
Rules provide always-on rules and context that shape how the agent works with your code. Rules are flattened into namespaced files (e.g., common-coding-style.md) for CodeBuddy compatibility.
.codebuddy/
├── commands/ # Command files (reused from project root)
├── agents/ # Agent files (reused from project root)
├── skills/ # Skill files (reused from skills/)
├── rules/ # Rule files (flattened from rules/)
├── ecc-install-state.json # Install state tracking
├── install.sh # Legacy install script
├── uninstall.sh # Legacy uninstall script
└── README.md # This file
/plan command to break down complex features/tdd command before implementing/code-review after writing code/code-review again for auth, API endpoints, or sensitive data handling/build-fix if there are build errors/ to see available commands