# OAC - Claude Code Plugin OpenAgents Control (OAC) - Multi-agent orchestration and automation for Claude Code. ## 🎯 Overview OpenAgents Control brings powerful multi-agent capabilities to Claude Code through a **skills + subagents architecture**: - **8 Skills** orchestrate workflows and guide the main agent through multi-stage processes - **6 Subagents** execute specialized tasks (context discovery, task breakdown, code implementation, testing, review) - **4 Commands** provide setup, status, help, and cleanup functionality - **Flat delegation hierarchy** - only the main agent can invoke subagents (no nested calls) - **Context pre-loading** - all standards and patterns loaded upfront to prevent nested discovery - **6-stage workflow** - ensures context-aware, high-quality code delivery with approval gates ### Key Features - **Intelligent Context Discovery** - Smart discovery of coding standards, security patterns, and conventions - **Task Management** - Break down complex features into atomic, verifiable subtasks - **Code Execution** - Context-aware implementation following project standards - **Test Engineering** - TDD-driven test creation and validation - **Code Review** - Automated code quality and security analysis ## πŸ“¦ Installation ### Option 1: From Claude Code Marketplace (Recommended) Install directly from the Claude Code marketplace: ```bash # Add the OpenAgents Control marketplace repository /plugin marketplace add https://github.com/darrenhinde/OpenAgentsControl # Install the OAC plugin /plugin install oac # Download context files (interactive profile selection) /install-context ``` > **First time?** Run `/install-context` to download context files, then `/oac:status` to verify. **That's it!** The plugin is now installed and ready to use. ### Option 2: Local Development For plugin development or testing: ```bash # Clone the repository git clone https://github.com/darrenhinde/OpenAgentsControl.git cd OpenAgentsControl # Load plugin locally claude --plugin-dir ./plugins/claude-code # Download context files /install-context ``` ## πŸš€ Quick Start After installation, the plugin is ready to use: ```bash # Verify installation /oac:status # Get help and usage guide /oac:help # Start a development task (using-oac skill auto-invokes) "Build a user authentication system" ``` The **using-oac** skill is automatically invoked when you start a development task, guiding you through the 6-stage workflow with parallel execution for 5x faster feature development. ### Context Files Context files are automatically downloaded during installation via `/install-context`. You can update or change profiles anytime: ```bash # Install different profile /install-context --profile=extended # Force reinstall /install-context --force # Preview what would be installed /install-context --dry-run --profile=all ``` ## πŸ“š Available Skills Skills guide the main agent through specific workflows: ### using-oac Main workflow orchestrator implementing the 6-stage process (Analyze β†’ Plan β†’ LoadContext β†’ Execute β†’ Validate β†’ Complete). **Auto-invoked**: When you start a development task. ### context-discovery Guide for discovering and loading relevant context files (coding standards, security patterns, conventions). **Usage**: `/context-discovery authentication feature` **Invokes**: `context-scout` subagent via `context: fork` ### external-scout Guide for fetching external library and framework documentation from Context7 and other sources. **Usage**: `/external-scout drizzle schemas` **Invokes**: `external-scout` subagent via `context: fork` ### task-breakdown Guide for breaking down complex features into atomic subtasks with dependency tracking. **Usage**: `/task-breakdown user authentication system` **Invokes**: `task-manager` subagent via `context: fork` ### code-execution Guide for executing coding tasks with full context awareness and self-review. **Usage**: `/code-execution implement JWT service` **Invokes**: `coder-agent` subagent via `context: fork` ### test-generation Guide for generating comprehensive tests using TDD principles. **Usage**: `/test-generation authentication service` **Invokes**: `test-engineer` subagent via `context: fork` ### code-review Guide for performing thorough code reviews with security and quality analysis. **Usage**: `/code-review src/auth/` **Invokes**: `code-reviewer` subagent via `context: fork` ### parallel-execution Execute multiple independent tasks in parallel to dramatically reduce implementation time for multi-component features. **Usage**: Automatically used when task-manager marks tasks with `parallel: true` **Use when**: Multiple independent tasks with no dependencies, need to speed up multi-component features ## πŸ€– Available Subagents Subagents execute specialized tasks in isolated contexts: ### task-manager Break down complex features into atomic, verifiable subtasks with dependency tracking and JSON-based progress management. **Tools**: Read, Write, Glob, Grep **Model**: sonnet ### context-scout Discover relevant context files, standards, and patterns using navigation-driven discovery. **Tools**: Read, Glob, Grep **Model**: haiku ### external-scout Fetch external library and framework documentation from Context7 API and other sources, with local caching. **Tools**: Read, Write, Bash **Model**: haiku ### coder-agent Execute coding subtasks with full context awareness, self-review, and quality validation. **Tools**: Read, Write, Edit, Glob, Grep **Model**: sonnet ### test-engineer Generate comprehensive tests using TDD principles with coverage analysis and validation. **Tools**: Read, Write, Edit, Bash, Glob, Grep **Model**: sonnet ### code-reviewer Perform thorough code review with security analysis, quality checks, and actionable feedback. **Tools**: Read, Bash, Glob, Grep **Model**: sonnet ## πŸ“ Available Commands User-invocable commands for setup and status: ### /install-context Download context files from the OpenAgents Control GitHub repository. **Usage**: `/install-context [--core|--all|--category=]` **Options**: - `--core` - Download only core context files (standards, workflows, patterns) - `--all` - Download all context files including examples and guides - `--category=` - Download specific category (e.g., `--category=standards`) ### /oac:help Show usage guide for OAC workflow, skills, subagents, and commands. **Usage**: - `/oac:help` - Show general help - `/oac:help ` - Show help for specific skill ### /oac:status Show plugin status, installed context version, and available components. **Usage**: `/oac:status` **Shows**: - Plugin version - Installed context version - Available subagents and skills - Context file count ### /oac:cleanup Clean up old temporary files from `.tmp` directory. **Usage**: `/oac:cleanup [--force] [--session-days=N] [--task-days=N] [--external-days=N]` **Options**: - `--force` - Skip confirmation and delete immediately - `--session-days=N` - Clean sessions older than N days (default: 7) - `--task-days=N` - Clean completed tasks older than N days (default: 30) - `--external-days=N` - Clean external context older than N days (default: 7) **Cleans**: - Old session files from `.tmp/sessions/` - Completed task files from `.tmp/tasks/` - Cached external documentation from `.tmp/external-context/` **Example**: ```bash # Clean with defaults /oac:cleanup # Clean aggressively (3 days for sessions) /oac:cleanup --session-days=3 --force ``` ## πŸ”„ How It Works ### 6-Stage Workflow OAC implements a structured workflow for every development task: #### Stage 1: Analyze & Discover - Understand requirements and scope - Invoke `/context-discovery` to find relevant context files - Identify project standards, patterns, and conventions #### Stage 2: Plan & Approve - Present implementation plan - **REQUEST APPROVAL** before proceeding - Confirm approach with user #### Stage 3: LoadContext - Read all discovered context files - Load coding standards, security patterns, naming conventions - Pre-load context for execution stage (prevents nested discovery) #### Stage 4: Execute - **Simple tasks** (1-3 files): Direct implementation - **Complex tasks** (4+ files): Invoke `/task-breakdown` to decompose 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 ### Architecture: Skills Invoke Subagents via `context: fork` **OAC Pattern** (nested - NOT supported in Claude Code): ``` Main Agent β†’ TaskManager β†’ CoderAgent β†’ ContextScout ``` **Claude Code Pattern** (flat - CORRECT): ``` Main Agent β†’ /context-discovery skill β†’ context-scout subagent Main Agent β†’ /task-breakdown skill β†’ task-manager subagent Main Agent β†’ /code-execution skill β†’ coder-agent subagent ``` **Key Principle**: Only the main agent can invoke subagents. Skills guide the orchestration, subagents execute specialized tasks in isolated contexts (`context: fork`). ### Context Pre-Loading **Why**: Prevents nested ContextScout calls during execution. **How**: Stage 3 loads ALL context upfront, so execution stages (4-6) have everything they need. **Example**: ``` Stage 1: Discover context files β†’ [standards.md, security.md, patterns.md] Stage 3: Load all files β†’ Read standards.md, Read security.md, Read patterns.md Stage 4: Execute with loaded context β†’ No nested discovery needed ``` ### Approval Gates **Critical checkpoints**: - **Stage 2 β†’ Stage 3**: User must approve the plan - **Stage 5 β†’ Stage 6**: Validation must pass **Never skip approval** - it prevents wasted work and ensures alignment. ## πŸ”§ Configuration ### Model: opusplan The plugin ships with `settings.json` at the plugin root: ```json { "model": "opusplan" } ``` `opusplan` uses **Opus for planning/orchestration** (the main agent) and **Sonnet for execution** (subagents). This matches OAC's plan-first workflow and gives you Opus-quality reasoning without paying Opus rates for every tool call. Subagents that need a lighter model override this at the agent level (e.g. `external-scout` uses `haiku`). The root setting only affects the main orchestrating agent. To reload after any settings change: `/reload-plugins` (no restart needed). ### Context Structure ``` plugins/claude-code/ β”œβ”€β”€ .claude-plugin/ β”‚ └── plugin.json # Plugin metadata β”œβ”€β”€ settings.json # Model config: opusplan β”œβ”€β”€ agents/ # Custom subagents (7 files) β”‚ β”œβ”€β”€ task-manager.md β”‚ β”œβ”€β”€ context-scout.md β”‚ β”œβ”€β”€ context-manager.md β”‚ β”œβ”€β”€ external-scout.md β”‚ β”œβ”€β”€ coder-agent.md β”‚ β”œβ”€β”€ test-engineer.md β”‚ └── code-reviewer.md β”œβ”€β”€ skills/ # Workflow skills (8 files) β”‚ β”œβ”€β”€ using-oac/SKILL.md β”‚ β”œβ”€β”€ context-discovery/SKILL.md β”‚ β”œβ”€β”€ external-scout/SKILL.md β”‚ β”œβ”€β”€ task-breakdown/SKILL.md β”‚ β”œβ”€β”€ code-execution/SKILL.md β”‚ β”œβ”€β”€ test-generation/SKILL.md β”‚ β”œβ”€β”€ code-review/SKILL.md β”‚ β”œβ”€β”€ install-context/SKILL.md β”‚ └── parallel-execution/SKILL.md β”œβ”€β”€ commands/ # User commands (4 files) β”‚ β”œβ”€β”€ install-context.md β”‚ β”œβ”€β”€ oac-help.md β”‚ β”œβ”€β”€ oac-status.md β”‚ └── oac-cleanup.md β”œβ”€β”€ hooks/ # Event-driven automation β”‚ β”œβ”€β”€ hooks.json β”‚ └── session-start.sh β”œβ”€β”€ scripts/ # Utility scripts β”‚ β”œβ”€β”€ install-context.ts # Context installer (TypeScript) β”‚ β”œβ”€β”€ install-context.js # Context installer (JS fallback) β”‚ └── cleanup-tmp.sh # Temporary file cleanup └── .context-manifest.json # Downloaded context tracking ``` ### Context Files Context files are downloaded from the main repository via `/install-context`: ``` .opencode/context/ β”œβ”€β”€ core/ # Core standards and workflows β”‚ β”œβ”€β”€ standards/ β”‚ β”œβ”€β”€ workflows/ β”‚ └── patterns/ β”œβ”€β”€ openagents-repo/ # OAC-specific guides β”‚ β”œβ”€β”€ guides/ β”‚ β”œβ”€β”€ standards/ β”‚ └── concepts/ └── navigation.md # Context discovery navigation ``` ## πŸ› οΈ Development ### Adding New Skills 1. Create skill directory: ```bash mkdir -p plugins/claude-code/skills/my-skill ``` 2. Create `SKILL.md` with frontmatter: ```markdown --- name: my-skill description: What this skill does context: fork agent: my-subagent --- # My Skill Instructions for the main agent... ``` 3. Test locally: ```bash claude --plugin-dir ./plugins/claude-code /my-skill ``` ### Adding New Subagents 1. Create subagent file: ```bash touch plugins/claude-code/agents/my-subagent.md ``` 2. Add frontmatter: ```markdown --- name: my-subagent description: What this subagent does tools: Read, Write, Glob, Grep model: sonnet --- # MySubagent Instructions for the subagent... ``` 3. Create skill to invoke it: ```markdown --- name: my-workflow description: Workflow description context: fork agent: my-subagent --- ``` ### Adding Hooks Create `hooks/hooks.json`: ```json { "hooks": { "SessionStart": [{ "type": "command", "command": "${CLAUDE_PLUGIN_ROOT}/hooks/session-start.sh", "timeout": 5 }], "PostToolUse": [{ "matcher": "Write|Edit", "hooks": [{ "type": "command", "command": "${CLAUDE_PLUGIN_ROOT}/scripts/format.sh", "timeout": 30 }] }] } } ``` ## πŸ”— Related Projects - **OpenAgents Control** - Main repository (OpenCode native) - **OAC CLI** - Command-line tool for multi-IDE management (coming soon) ## πŸ“– Documentation - [Main Documentation](../.opencode/docs/) - [Context System](../docs/context-system/) - [Planning Documents](../docs/planning/) ## 🀝 Contributing Contributions welcome! See the main [OpenAgents Control repository](https://github.com/darrenhinde/OpenAgentsControl) for contribution guidelines. ## πŸ“„ License MIT License - see [LICENSE](../LICENSE) for details. ## πŸ†˜ Support - **Issues**: [GitHub Issues](https://github.com/darrenhinde/OpenAgentsControl/issues) - **Discussions**: [GitHub Discussions](https://github.com/darrenhinde/OpenAgentsControl/discussions) ## πŸ—ΊοΈ Roadmap ### Phase 1: Foundation βœ… COMPLETE - βœ… Plugin structure - βœ… 6 custom subagents (task-manager, context-scout, external-scout, coder-agent, test-engineer, code-reviewer) - βœ… 8 workflow skills (using-oac, context-discovery, external-scout, task-breakdown, code-execution, test-generation, code-review, install-context, parallel-execution) - βœ… 4 user commands (/install-context, /oac:help, /oac:status, /oac:cleanup) - βœ… SessionStart hook for auto-loading using-oac skill - βœ… Context download and verification scripts - βœ… Flat delegation hierarchy (skills invoke subagents via context: fork) ### Phase 2: Advanced Features βœ… COMPLETE - βœ… External library documentation fetching (ExternalScout subagent + skill) - βœ… .tmp cleanup automation (/oac:cleanup command) - βœ… .oac configuration file support (context-manager skill) - βœ… Context management and personal task systems (context-manager skill) - βœ… Parallel subtask execution tracking (parallel-execution skill) - ⬜ MCP server integration (future) ### Phase 3: JSON Config System - ⬜ Auto-generation from JSON config - ⬜ Type-safe configuration - ⬜ Multi-IDE conversion --- **Version**: 1.0.0 **Last Updated**: 2026-02-16 **Status**: Production Ready