Version: 1.0.0
Date: 2026-02-16
Audience: First-time users
Time: 5-10 minutes
By the end of this guide, you'll have:
No prior experience needed โ just follow the steps in order.
Before starting, ensure you have:
Choose ONE method:
# Add the marketplace
/plugin marketplace add darrenhinde/OpenAgentsControl
# Install the plugin
/plugin install oac
Expected output:
โ Marketplace added: darrenhinde/OpenAgentsControl
โ Plugin installed: oac
โ Location: ~/.claude/plugins/cache/oac/
# Navigate to the repo
cd /path/to/OpenAgentsControl
# Start Claude with the plugin
claude --plugin-dir ./plugins/claude-code
Expected output:
โ Loading plugin from: ./plugins/claude-code
โ Plugin loaded: oac
Run the status command to check everything is working:
/oac:status
Expected output:
OAC Plugin Status
=================
Plugin Version: 1.0.0
Status: โ
Installed
Components:
- Subagents: 6 available
โ task-manager
โ context-scout
โ external-scout
โ coder-agent
โ test-engineer
โ code-reviewer
- Skills: 9 available
โ using-oac
โ context-discovery
โ external-scout
โ task-breakdown
โ code-execution
โ test-generation
โ code-review
โ context-manager
โ parallel-execution
- Commands: 4 available
โ /oac:setup
โ /oac:help
โ /oac:status
โ /oac:cleanup
Context Files: โ ๏ธ Not installed yet
โ Success indicator: You should see "Plugin Version: 1.0.0" and all components listed.
โ If you see errors: See Troubleshooting section below.
Context files contain coding standards, security patterns, and workflow guides that OAC uses to ensure high-quality code.
Choose ONE option:
/oac:setup --core
What this downloads: ~50 essential files (standards, workflows, patterns)
Download time: 30-60 seconds
Disk space: ~2 MB
Expected output:
Downloading OAC Context Files
==============================
Category: core
Source: https://github.com/darrenhinde/OpenAgentsControl
Downloading files...
โ .opencode/context/core/standards/code-quality.md
โ .opencode/context/core/standards/security-patterns.md
โ .opencode/context/core/standards/typescript.md
โ .opencode/context/core/workflows/6-stage-workflow.md
... (46 more files)
Summary:
========
โ Downloaded: 50 files
โ Location: .opencode/context/
โ Manifest: plugins/claude-code/.context-manifest.json
Next steps:
- Run /oac:status to verify
- Start coding with /using-oac
/oac:setup --all
What this downloads: ~200 files (includes examples, guides, plugin docs)
Download time: 2-3 minutes
Disk space: ~8 MB
Check that context files were downloaded successfully:
/oac:status
Expected output:
OAC Plugin Status
=================
Plugin Version: 1.0.0
Status: โ
Installed
Context Files: โ
Installed
- Version: 1.0.0
- Location: .opencode/context/
- Files: 50 (core)
- Last updated: 2026-02-16
Components:
... (same as before)
โ Success indicator: "Context Files: โ Installed"
You can also verify manually:
# Check that context directory exists
ls .opencode/context/
# Should show:
# core/ openagents-repo/ navigation.md
Get an overview of what OAC can do:
/oac:help
Expected output: A comprehensive guide showing:
Take 2 minutes to skim this output โ it's your reference guide.
Let's test OAC with a simple task to ensure everything works.
Type this into Claude Code:
Add a hello world function to a new file called utils.ts
What should happen:
Invoking /context-discovery to find coding standards...
2. **Stage 2: Plan & Approve**
Plan:
Files to create:
May I proceed with this plan? (yes/no)
**Type**: `yes`
3. **Stage 3: LoadContext**
Loading context files... โ Read .opencode/context/core/standards/typescript.md โ Read .opencode/context/core/standards/code-quality.md
4. **Stage 4: Execute**
Creating src/utils.ts... โ File created with helloWorld() function
5. **Stage 5: Validate**
Validating implementation... โ TypeScript syntax valid โ Follows coding standards โ No anti-patterns detected
6. **Stage 6: Complete**
โ Task completed successfully!
Summary:
โ Success indicator: You should see all 6 stages complete without errors.
Every task in OAC follows this workflow:
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Stage 1: Analyze & Discover โ
โ - Understand what you're asking for โ
โ - Find relevant context files (standards, patterns) โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Stage 2: Plan & Approve โ
โ - Present implementation plan โ
โ - REQUEST APPROVAL before proceeding โ
โ - Confirm approach with you โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Stage 3: LoadContext โ
โ - Read all discovered context files โ
โ - Load coding standards, security patterns โ
โ - Pre-load everything needed for execution โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Stage 4: Execute โ
โ - Simple tasks (1-3 files): Direct implementation โ
โ - Complex tasks (4+ files): Break down into subtasks โ
โ - Follow loaded standards and patterns โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Stage 5: Validate โ
โ - Run tests and validation โ
โ - STOP on failure โ fix before proceeding โ
โ - Verify acceptance criteria met โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Stage 6: Complete โ
โ - Update documentation โ
โ - Summarize changes โ
โ - Return results โ
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Key points:
Now that OAC is set up, you can:
Just describe what you want to build:
Build a user authentication system with JWT tokens
OAC will:
Context Manager โ Set up project-specific configuration:
/context-manager
Parallel Execution โ Speed up multi-component features:
# Automatically used when tasks are independent
# Example: Frontend + Backend + Tests run simultaneously
External Scout โ Fetch current library documentation:
/external-scout drizzle schemas
/external-scout react hooks
Each skill has a specific purpose:
| Skill | When to Use |
|---|---|
/using-oac |
Auto-invoked for every task |
/context-discovery |
Find relevant standards and patterns |
/external-scout |
Get current library documentation |
/task-breakdown |
Break down complex features |
/code-execution |
Implement features |
/test-generation |
Create comprehensive tests |
/code-review |
Review code quality |
/context-manager |
Set up projects and configuration |
/parallel-execution |
Execute independent tasks simultaneously |
QUICK-START.md โ Usage examples and workflowsINSTALL.md โ Detailed installation guideREADME.md โ Complete system overviewSymptom: /oac:status returns "command not found"
Solution:
# Check plugin list
/plugin list
# Should show "oac" in the list
# If not, reinstall:
/plugin install oac
Symptom: /oac:setup --core fails or times out
Solution:
# Check internet connection
ping github.com
# Try again with verbose output
/oac:setup --core --verbose
# If still failing, check GitHub access
curl https://raw.githubusercontent.com/darrenhinde/OpenAgentsControl/main/README.md
Symptom: /context-discovery returns "skill not found"
Solution:
# Verify skill files exist
ls ~/.claude/plugins/cache/oac/skills/
# Should show 9 directories
# If missing, reinstall plugin
/plugin uninstall oac
/plugin install oac
Symptom: Error when trying to invoke subagent
Solution:
# Check status
/oac:status
# Should show 6 subagents
# If missing, verify agent files
ls ~/.claude/plugins/cache/oac/agents/
# Should show 6 .md files
# If missing, reinstall plugin
Symptom: Tasks don't automatically invoke /using-oac
Solution:
# Check hooks are installed
ls ~/.claude/plugins/cache/oac/hooks/
# Should show:
# - hooks.json
# - session-start.sh
# Restart Claude Code to reload hooks
Symptom: OAC says "context not found" but files exist
Solution:
# Verify context location
ls .opencode/context/core/standards/
# Should show multiple .md files
# Check manifest
cat plugins/claude-code/.context-manifest.json
# Should show version and file list
# If manifest missing, re-run setup
/oac:setup --core --force
Before you finish, verify:
/oac:status shows "Plugin Version: 1.0.0"/oac:status shows "Context Files: โ
Installed"/oac:status shows 6 subagents, 9 skills, 4 commands.opencode/context/ directory exists with files/oac:help)All checked? ๐ You're ready to build with OAC!
| Command | Purpose |
|---|---|
/oac:status |
Check installation status |
/oac:help |
View comprehensive help |
/oac:setup --core |
Download context files |
/oac:cleanup |
Clean up old temporary files |
/oac:status for diagnostic informationYou're now ready to build high-quality, context-aware code with OpenAgents Control.
Remember:
Happy coding! ๐
Version: 1.0.0
Last Updated: 2026-02-16
Status: Production Ready