# OpenCode Agents
### AI agent framework for plan-first development workflows with approval-based execution
[](https://github.com/darrenhinde/opencode-agents/stargazers)
[](https://opensource.org/licenses/MIT)
[](https://github.com/darrenhinde/opencode-agents/commits/main)
[](docs/contributing/CONTRIBUTING.md)
[](https://buymeacoffee.com/darrenhinde)
**Multi-language support:** TypeScript • Python • Go • Rust
**Features:** Automatic testing • Code review • Validation
[](https://youtu.be/EOIzFMdmox8?si=4ZSsVlAkhMxVmF2R)
> **Note:** This repository has evolved since the demo video with continuous improvements to make it easier for others to use in their projects. The core concepts remain the same, but installation and component organization have been streamlined.
> 📹 **Following along with the video?** The simplified structure shown in the tutorial is available on the [`video-simple`](https://github.com/darrenhinde/opencode-agents/tree/video-simple) branch.
## Why Use This?
- ✅ **Multi-language support** - Works with TypeScript, Python, Go, Rust, and more
- ✅ **Plan-first workflow** - Agents propose plans before implementing
- ✅ **Incremental execution** - Step-by-step implementation with validation
- ✅ **Quality built-in** - Automatic testing, type checking, and code review
- ✅ **Your patterns** - Agents follow your coding standards from context files
---
## Quick Start
### Step 1: Install OpenCode CLI
```bash
https://opencode.ai/docs# Follow official guide
```
### Step 2: Install Agents & Commands
**Option A: Interactive Installer (Recommended)**
macOS / Linux
```bash
curl -fsSL https://raw.githubusercontent.com/darrenhinde/opencode-agents/main/install.sh | bash
```
Windows
**Using Git Bash (Recommended):**
```bash
curl -fsSL https://raw.githubusercontent.com/darrenhinde/opencode-agents/main/install.sh | bash
```
**Using PowerShell:**
```powershell
# Download the script
Invoke-WebRequest -Uri "https://raw.githubusercontent.com/darrenhinde/opencode-agents/main/install.sh" -OutFile "install.sh"
# Run with Git Bash
& "C:\Program Files\Git\bin\bash.exe" install.sh
# Or run with WSL
wsl bash install.sh
```
**Using WSL:**
```bash
curl -fsSL https://raw.githubusercontent.com/darrenhinde/opencode-agents/main/install.sh | bash
```
> **Note:** Git Bash comes with Git for Windows. [Download here](https://git-scm.com/download/win)
The installer offers:
- 🎯 **Quick Profiles**: Core, Developer, Full, or Advanced
- 🎨 **Custom Selection**: Pick exactly what you need
- 📦 **Smart Dependencies**: Auto-installs required components
- ✨ **Interactive Menus**: User-friendly component browser
- 🛡️ **Collision Detection**: Safely handles existing files with 4 strategies (skip/overwrite/backup/cancel)
- 🖥️ **Cross-Platform**: Works on macOS, Linux, and Windows (Git Bash/WSL)
> **Updating?** The installer detects existing files and lets you choose: skip existing (keep your changes), overwrite all (get latest), or backup & overwrite (safe update). [Learn more](docs/getting-started/collision-handling.md)
**Option B: Profile-Based Install**
macOS / Linux / Git Bash / WSL
```bash
# Core essentials only (15 components)
curl -fsSL https://raw.githubusercontent.com/darrenhinde/opencode-agents/main/install.sh | bash -s core
# Balanced for daily development (22 components)
curl -fsSL https://raw.githubusercontent.com/darrenhinde/opencode-agents/main/install.sh | bash -s developer
# Everything included (24 components)
curl -fsSL https://raw.githubusercontent.com/darrenhinde/opencode-agents/main/install.sh | bash -s full
# Advanced + System Builder (29 components)
curl -fsSL https://raw.githubusercontent.com/darrenhinde/opencode-agents/main/install.sh | bash -s advanced
```
Windows PowerShell
```powershell
# Download script
Invoke-WebRequest -Uri "https://raw.githubusercontent.com/darrenhinde/opencode-agents/main/install.sh" -OutFile "install.sh"
# Core profile
& "C:\Program Files\Git\bin\bash.exe" install.sh core
# Developer profile
& "C:\Program Files\Git\bin\bash.exe" install.sh developer
# Full profile
& "C:\Program Files\Git\bin\bash.exe" install.sh full
# Advanced profile
& "C:\Program Files\Git\bin\bash.exe" install.sh advanced
```
> **New!** The `advanced` profile includes the **System Builder** - an interactive tool that generates complete custom AI systems tailored to your domain. [Learn more](docs/features/system-builder/)
**Option C: Manual Install**
```bash
# Clone this repository
git clone https://github.com/darrenhinde/opencode-agents.git
cd opencode-agents
# Install to OpenCode directory (global)
mkdir -p ~/.opencode
cp -r .opencode/agent ~/.opencode/
cp -r .opencode/command ~/.opencode/
cp -r .opencode/context ~/.opencode/
```
### Step 3: Start Building
```bash
# Start the main development agent (recommended for new users)
opencode --agent codebase-agent
# Tell it what to build
> "Create a React todo list with TypeScript"
```
**What happens next:**
1. Agent proposes an implementation plan
2. Asks for your approval
3. Implements step-by-step with validation
4. Delegates to @task-manager for complex features
5. Uses @tester and @reviewer for quality assurance
---
## How It Works
```
User Request
↓
codebase-agent (main coordinator)
↓
├─→ @task-manager (breaks down complex features)
├─→ @tester (writes and runs tests)
├─→ @reviewer (security and code review)
├─→ @documentation (generates docs)
└─→ @build-agent (type checking and validation)
```
**The workflow:**
1. **You describe** what you want to build
2. **Agent plans** the implementation steps
3. **You approve** the plan
4. **Agent implements** incrementally with validation
5. **Quality checks** run automatically (tests, types, linting)
6. **Subagents handle** specialized tasks (testing, review, docs)
**Context-aware:** Agents automatically load patterns from `.opencode/context/` to follow your coding standards.
---
## What's Included
### 🤖 Main Agents
- **codebase-agent** - Your main development partner (recommended for most tasks)
- **task-manager** - Breaks complex features into manageable subtasks
- **workflow-orchestrator** - Routes requests to appropriate workflows
- **image-specialist** - Generates images with Gemini AI
### 🔧 Specialized Subagents (Auto-delegated)
- **reviewer** - Code review and security analysis
- **tester** - Test creation and validation
- **coder-agent** - Quick implementation tasks
- **documentation** - Documentation generation
- **build-agent** - Build and type checking
- **codebase-pattern-analyst** - Pattern discovery
### ⚡ Commands
- **/commit** - Smart git commits with conventional format
- **/optimize** - Code optimization
- **/test** - Testing workflows
- **/clean** - Cleanup operations
- **/context** - Context management
- **/prompt-enchancer** - Improve your prompts
- **/worktrees** - Git worktree management
### 📚 Context Files
- `core/essential-patterns.md` - Universal coding patterns
- `project/project-context.md` - Your project-specific patterns
---
## Example Workflows
### Build a Feature
```bash
opencode --agent codebase-agent
> "Create a user authentication system with email/password"
# Agent will:
# 1. Propose implementation plan
# 2. Wait for your approval
# 3. Delegate to @task-manager (creates tasks/subtasks/user-auth/)
# 4. Implement step-by-step
# 5. Use @tester for tests
# 6. Use @reviewer for security review
```
### Make a Commit
```bash
# Make your changes
git add .
# Use the commit command
/commit
# Auto-generates: ✨ feat: add user authentication system
```
### Add Your Patterns
```bash
# Edit your project context
nano ~/.opencode/context/project/project-context.md
# Add your patterns:
# **API Endpoint Pattern:**
# ```typescript
# export async function POST(request: Request) {
# // Your standard pattern
# }
# ```
# Agents will automatically use these patterns!
```
---
## 🏗️ System Builder (New!)
**Build complete custom AI systems tailored to your domain in minutes.**
The System Builder is an interactive tool that generates complete `.opencode` architectures customized to your needs.
### Quick Start
```bash
# Install advanced profile (includes system builder)
curl -fsSL https://raw.githubusercontent.com/darrenhinde/opencode-agents/main/install.sh | bash -s advanced
# Run the interactive builder
/build-context-system
```
### What It Does
- 🎯 **Interactive Interview** - Asks about your domain, use cases, and requirements
- 🤖 **Generates Complete System** - Creates orchestrator, subagents, context files, workflows, and commands
- 🔗 **Integrates with Existing** - Detects and reuses your existing agents
- 🛡️ **Safe Merging** - Won't overwrite your work, offers merge strategies
- 📚 **Production-Ready** - Includes documentation, testing guides, and examples
### Example
```bash
$ /build-context-system
Domain: E-commerce Operations
Purpose: Automate order processing and customer support
# After answering questions, generates:
# - ecommerce-orchestrator (main agent)
# - order-processor, ticket-router, report-generator (subagents)
# - 12 context files (domain knowledge, processes, standards)
# - 5 workflows (process-order, route-ticket, etc.)
# - 5 custom commands (/process-order, /route-ticket, etc.)
# - Complete documentation
```
**Learn more:** [System Builder Documentation](docs/features/system-builder/)
---
## Optional Add-ons
### 📱 Telegram Notifications
Get notified when OpenCode sessions go idle.
```bash
# Copy plugin directory
cp -r .opencode/plugin ~/.opencode/
# Install dependencies
cd ~/.opencode/plugin
npm install
# Configure
cd ~/opencode-agents
cp env.example .env
# Edit .env with TELEGRAM_BOT_TOKEN and TELEGRAM_CHAT_ID
```
**Get credentials:** Message @BotFather on Telegram → `/newbot` → Save token
See [`.opencode/plugin/README.md`](.opencode/plugin/README.md) for detailed documentation.
### 🎨 Gemini AI Image Tools
Generate and edit images using Gemini AI.
```bash
# Copy tool directory
cp -r .opencode/tool ~/.opencode/
# Install dependencies
cd ~/.opencode/tool
npm install
# Configure
cd ~/opencode-agents
cp env.example .env
# Edit .env with GEMINI_API_KEY
```
**Get API key:** https://makersuite.google.com/app/apikey
---
## Common Questions
**Q: What's the main way to use this?**
A: Use `opencode --agent codebase-agent` for development. It coordinates everything else.
**Q: Does this work on Windows?**
A: Yes! Use Git Bash (recommended) or WSL. See [Platform Compatibility Guide](docs/getting-started/platform-compatibility.md) for details.
**Q: What bash version do I need?**
A: Bash 3.2+ (works on macOS default bash). Run `bash scripts/tests/test-compatibility.sh` to check your system.
**Q: Do I need to install plugins/tools?**
A: No, they're optional. Only install if you want Telegram notifications or Gemini AI features.
**Q: Where should I install - globally or per-project?**
A: Global (`~/.opencode/`) works for most. Project-specific (`.opencode/`) if you need different configs per project.
**Q: How do I add my own coding patterns?**
A: Edit `~/.opencode/context/project/project-context.md` - agents automatically load this file.
**Q: What languages are supported?**
A: The agents work with any language (TypeScript, Python, Go, Rust, etc.) and adapt based on your project files.
**Q: What's the Agent System Blueprint for?**
A: It's a teaching document explaining architecture patterns and how to extend the system. See [docs/features/agent-system-blueprint.md](docs/features/agent-system-blueprint.md)
**Q: Can I use just one command or agent?**
A: Yes! Use the installer's list feature to see all components:
```bash
./install.sh --list
```
Or cherry-pick individual files with curl:
```bash
curl -o ~/.opencode/agent/codebase-agent.md \
https://raw.githubusercontent.com/darrenhinde/opencode-agents/main/.opencode/agent/codebase-agent.md
```
---
## Installation Profiles
The installer offers four pre-configured profiles:
### 🎯 Core (Minimal)
Essential agents and commands for basic OpenCode usage.
- **Agents**: task-manager, codebase-agent
- **Subagents**: reviewer, tester, documentation, coder-agent, build-agent
- **Commands**: test, commit, context
- **Tools**: env utilities
- **Best for**: Getting started, minimal setup
### 💼 Developer (Recommended)
Balanced setup for daily development work.
- Everything in Core, plus:
- **Agents**: image-specialist, workflow-orchestrator
- **Subagents**: codebase-pattern-analyst
- **Commands**: clean, optimize, prompt-enhancer
- **Tools**: Gemini AI integration
- **Plugins**: Telegram notifications
- **Best for**: Most developers, daily use
### 📦 Full
Complete installation with all available components.
- Everything in Developer, plus:
- **Commands**: worktrees (git worktree management)
- **Best for**: Power users, exploring all features
### 🚀 Advanced
Full installation plus **System Builder** and experimental features.
- Everything in Full, plus:
- **System Builder**: Interactive AI system generator (7 components)
- system-builder agent
- domain-analyzer, agent-generator, context-organizer, workflow-designer, command-creator subagents
- build-context-system command
- **Additional**: .Building/ directory, GitHub workflows
- **Best for**: Building custom AI systems, contributors, learning the architecture
## Updating Components
Keep your components up to date:
```bash
# Update all installed components
./update.sh
# Or re-run the installer
curl -fsSL https://raw.githubusercontent.com/darrenhinde/opencode-agents/main/install.sh | bash
```
---
## Advanced
### Understanding the System
Read [Agent System Blueprint](docs/features/agent-system-blueprint.md) to learn:
- How context loading works (the `@` symbol)
- Agent architecture patterns
- How to create custom agents and commands
- How to extend the system for your needs
### Safety & Security
- **Approval-first workflow** - Agents propose plans before execution
- **Configurable permissions** - Granular control over agent capabilities
- **Secure credentials** - Environment variables for sensitive data
- **Input sanitization** - Protection against injection attacks
### Project Structure
```
.opencode/
├── agent/ # AI agents
│ ├── codebase-agent.md
│ ├── task-manager.md
│ └── subagents/ # Specialized helpers
├── command/ # Slash commands
│ ├── commit.md
│ └── optimize.md
├── context/ # Coding patterns
│ ├── core/ # Essential patterns
│ └── project/ # Your patterns
├── plugin/ # Optional: Telegram
└── tool/ # Optional: Gemini AI
```
---
## Contributing
We welcome contributions! Please see our [Contributing Guide](docs/contributing/CONTRIBUTING.md) for details.
1. Follow the established naming conventions and coding standards
2. Write comprehensive tests for new features
3. Update documentation for any changes
4. Ensure security best practices are followed
See also: [Code of Conduct](docs/contributing/CODE_OF_CONDUCT.md)
---
## License
This project is licensed under the MIT License.
---
## Recommended for New Users
**Start with `codebase-agent`** - it's your main development partner that handles planning, implementation, and quality assurance. It automatically delegates to specialized subagents when needed, so you don't have to manage multiple agents yourself.
```bash
opencode --agent codebase-agent
> "Your development task here"
```
The agent will guide you through the entire development workflow with a plan-first, approval-based approach.
---
## Support This Work
If this helped you out and you're feeling generous, consider funding my coffee habit ☕
[](https://buymeacoffee.com/darrenhinde)
Totally optional, but appreciated.