---
name: claw-conductor
description: Always-on autonomous development orchestrator with intelligent triage. Auto-detects Discord channels, routes to project workspaces, triages simple vs development requests, decomposes complex tasks, routes to optimal AI models, executes in parallel, and consolidates results.
version: 2.1.0
---
# Claw Conductor v2.1
**Your always-on development assistant - handles everything from quick questions to full project builds.**
Claw Conductor is an intelligent orchestration layer that:
- šÆ **Always-On**: Handles every message automatically (no need to invoke)
- š¤ **Smart Triage**: Detects simple questions vs development tasks
- š¬ **Discord-Aware**: Auto-maps channels to project workspaces
- š **Multi-Model**: Routes tasks to optimal AI based on capabilities
- ā” **Parallel Execution**: Builds complete projects efficiently
## š How It Works
**Automatic Flow:**
1. Message arrives in Discord channel (e.g., #scientific-calculator)
2. Claw-conductor detects channel ā maps to `/root/projects/scientific-calculator`
3. Triages request: Simple question or development task?
4. **If Simple**: Quick response from fast model with project context
5. **If Development**: Full orchestration - decompose, route, execute, consolidate
**You never need to explicitly invoke it** - it handles everything automatically!
## šÆ Usage Examples
**Simple Questions** (fast response):
```
User: What files are in this project?
Conductor: š Simple response mode
[Lists files from /root/projects/scientific-calculator]
User: How does the calculator work?
Conductor: š Simple response mode
[Explains architecture with project context]
```
**Development Tasks** (full orchestration):
```
User: Build a scientific calculator with trig functions
Conductor: š§ Development mode - full orchestration
[Decomposes into tasks, routes to models, executes in parallel]
User: Fix the bug in the calculation logic
Conductor: š§ Development mode - full orchestration
[Analyzes code, creates fix, tests, commits]
```
**User Overrides**:
```
User: !simple Build a calculator
Conductor: š Simple response mode
[Gives advice/explanation instead of building]
User: !dev What files exist?
Conductor: š§ Development mode - full orchestration
[Treats as development task - maybe creates file listing tool]
```
## š Skill Invocation (For OpenClaw Agent)
**NEW: Always-On Mode (Recommended)**
Configure this skill as the default handler for Discord channels in "Active Projects" category:
```python
# In OpenClaw agent configuration
from orchestrator import Orchestrator
orchestrator = Orchestrator()
# Handle ALL messages through conductor
result = orchestrator.handle_message(
request=user_message,
channel_id=discord_channel_id,
channel_name=discord_channel_name
)
```
**Legacy: Explicit Invocation**
When this skill is invoked with a development request, execute the following:
1. **Extract the request** from the user's message (everything after "use claw-conductor to")
2. **Determine project name** from the request or generate one from keywords
3. **Execute the orchestrator** using Python:
```bash
cd ~/.openclaw/skills/claw-conductor/scripts
python3 -c "
from orchestrator import Orchestrator
import sys
orchestrator = Orchestrator()
request = '''[USER'S REQUEST HERE]'''
project_name = '[PROJECT-NAME]' # e.g., 'calculator-app', 'todo-app', 'blog-site'
# Get GitHub user from config
github_user = orchestrator.config.get('github_user')
result = orchestrator.execute_request(
request=request,
project_name=project_name,
github_user=github_user
)
# Report results back to Discord
if result['success']:
print(f\"ā
Project '{project_name}' completed successfully!\")
print(f\"š¦ {result['tasks_completed']} tasks completed\")
if github_user:
print(f\"š GitHub: https://github.com/{github_user}/{project_name}\")
print(f\"š Workspace: {result.get('workspace', '/root/projects/' + project_name)}\")
else:
print(f\"ā Project failed: {result.get('error', 'Unknown error')}\")
sys.exit(1)
"
```
4. **Report progress** to Discord during execution:
- Announce task decomposition results
- Report task routing decisions
- Update on parallel execution progress
- Share final results with GitHub link
**Example Invocation:**
User says: `@OpenClaw use claw-conductor to build a calculator app`
You execute:
- Request: "build a calculator app"
- Project name: "calculator-app"
- Run orchestrator with these parameters
---
## What's New in v2.1
š¤ **AI-Powered Decomposition**: Intelligently analyzes complex requests using your best AI model (auto-selected or configured)
šÆ **Full Orchestration**: Decomposes complex requests ā Routes subtasks ā Executes in parallel ā Consolidates results
ā” **Parallel Execution**: Up to 5 tasks running concurrently across multiple projects
š **Project Management**: Automatic workspace creation, git initialization, and GitHub integration
š **Dependency-Aware**: Respects task dependencies and file conflicts
š¦ **Auto-Consolidation**: Merges results, runs tests, commits to git, pushes to GitHub
---
## Quick Start
### Installation
In OpenClaw:
```bash
cd ~/.openclaw/skills
git clone https://github.com/johnsonfarmsus/claw-conductor.git
cd claw-conductor
./scripts/setup.sh
```
### First-Time Setup
```bash
./scripts/setup.sh
```
This creates your personalized agent-registry.json with:
- Your AI model configurations
- Cost tracking (free vs paid)
- Capability ratings per model
- Routing preferences
### Usage
**Simple request:**
```
@OpenClaw use claw-conductor to build a calculator app
```
**Complex request:**
```
@OpenClaw use claw-conductor to build a towing dispatch system with:
- Customer portal for requesting service
- Driver dashboard for accepting jobs
- Admin panel for managing users
- Real-time location tracking
- Payment integration
```
---
## How It Works
### Complete Workflow
```
Discord Request
ā
1. Task Decomposition
⢠Analyzes request complexity
⢠Breaks into independent subtasks
⢠Assigns category & complexity to each
⢠Builds dependency graph
ā
2. Intelligent Routing
⢠Scores each model for each task (0-100)
⢠Routes to best match based on capabilities
⢠Considers cost optimization
ā
3. Project Initialization
⢠Creates /root/projects/{name}/
⢠Initializes git repository
⢠Creates GitHub repo (if configured)
⢠Sets up workspace
ā
4. Parallel Execution
⢠Spawns up to 5 tasks simultaneously
⢠Respects dependencies (database before auth)
⢠Avoids file conflicts (same files sequential)
⢠Reports progress to Discord
ā
5. Result Consolidation
⢠Merges all task outputs
⢠Resolves file conflicts
⢠Runs tests (if present)
⢠Commits to git
⢠Pushes to GitHub
ā
Discord Completion Report
```
### Example: Dispatch System
**Request:**
```
Build a towing dispatch system with customer portal,
driver dashboard, admin panel, and real-time tracking
```
**Decomposition:**
```
Task 1: Database schema (database-operations, complexity: 4)
Task 2: Authentication system (security-fixes, complexity: 4)
Task 3: Customer portal UI (frontend-development, complexity: 3)
Task 4: Driver dashboard UI (frontend-development, complexity: 3)
Task 5: Admin panel UI (frontend-development, complexity: 3)
Task 6: REST API endpoints (api-development, complexity: 3)
Task 7: Real-time tracking (performance-optimization, complexity: 5)
Task 8: Unit tests (unit-test-generation, complexity: 2)
```
**Routing:**
```
Task 1 ā Mistral Devstral (score: 92, best for database)
Task 2 ā Mistral Devstral (score: 88, security expert)
Task 3 ā Mistral Devstral (score: 95, frontend expert)
Task 4 ā Mistral Devstral (score: 95, frontend expert)
Task 5 ā Mistral Devstral (score: 95, frontend expert)
Task 6 ā Llama 3.3 70B (score: 87, API specialist)
Task 7 ā Mistral Devstral (score: 78, fallback - needs Claude ideally)
Task 8 ā Llama 3.3 70B (score: 95, test generation expert)
```
**Execution:**
```
Parallel execution plan:
Worker 1: Task 1 (Database) ā Mistral
Worker 2: Task 3 (Customer UI) ā Devstral
Worker 3: Task 4 (Driver UI) ā Devstral
Worker 4: Task 5 (Admin UI) ā Devstral
Worker 5: Task 6 (API) ā Llama
After Task 1 completes:
Worker 1: Task 2 (Auth - depends on DB) ā Mistral
After all code complete:
Worker 1: Task 8 (Tests) ā Llama
```
**Result:**
```
ā
All 8 tasks completed in 47 minutes
š¦ Committed to git with 8 changes
š Pushed to GitHub repository
š Project ready for deployment
```
---
## Scoring Algorithm
Each model is scored 0-100 for each task:
```python
score = (
(rating / 5.0) * 50 + # Model capability (0-50 pts)
(1 - complexity/5.0) * 40 + # Complexity fit (0-40 pts)
(experience / 100) * 10 + # Experience (0-10 pts)
cost_factor * 10 # Cost (0-10 pts)
)
```
**Hard Ceiling:** Models cannot handle tasks above their `max_complexity` rating.
### Scoring Example
**Task:** Backend API development (complexity: 4)
| Model | Capability | Complexity Fit | Experience | Cost | Total |
|-------|------------|----------------|------------|------|-------|
| Mistral Devstral | 4ā
(40pts) | Can handle 4 (40pts) | 0 (0pts) | Free (10pts) | **90/100** |
| Llama 3.3 70B | 4ā
(40pts) | Can handle 4 (40pts) | 2 tasks (2pts) | Free (10pts) | **92/100** ā
|
| Perplexity | N/A | Cannot handle backend | - | - | **0/100** |
Winner: **Llama 3.3 70B** (higher experience)
---
## Configuration
### Agent Registry Structure
`config/agent-registry.json`:
```json
{
"version": "1.0.0",
"user_config": {
"cost_tracking_enabled": true,
"prefer_free_when_equal": true,
"max_parallel_tasks": 5,
"default_complexity_if_unknown": 3,
"fallback": {
"enabled": true,
"retry_delay_seconds
... (truncated)AI advertising agents that automates ad campaigns across Google Ads, Meta Ads, LinkedIn Ads, and TikTok Ads. Creates campaigns, reads live performance data, researches keywords with real CPC data, optimizes budgets, and manages ads through natural language via the Adspirer MCP server. 103 tools across 4 ad platforms.
Self-orchestrating multi-agent development workflows.
Complete guide for creating and deploying browser automation functions
Comprehensive guide for building AI workflows, agents