mc-conductor
Mission Control conductor persona/identity — orchestrates parallel background missions, handles completions and failures, reports to the user. Use when…
The agent Markdown format in this repository is fully compatible with Factory AI's custom droid system. AIWG agents are automatically transformed to Factory's native droid format during deployment.
$ npx -y skills add jmagly/aiwg --agent claude-codeHow it fires
How this agent gets triggered: by you, by Claude, or both.
Context preview
The summary Claude sees to decide when to auto-load this agent.
The agent Markdown format in this repository is fully compatible with Factory AI's custom droid system. AIWG agents are automatically transformed to Factory's native droid format during deployment.
The agent Markdown format in this repository is fully compatible with Factory AI's custom droid system. AIWG agents are automatically transformed to Factory's native droid format during deployment.
--- name: architecture-designer description: Designs scalable, maintainable system architectures model: claude-opus-4-7 --- [System prompt...]
--- name: Architecture Designer description: Designs scalable, maintainable system architectures and makes critical technical decisions for software projects model: claude-opus-4-6 tools: ["Read", "LS", "Grep", "Glob", "Edit", "Create", "Execute"] --- [System prompt...]
**Key Differences:**
**Model Configuration**:
Model mapping is automatic during deployment. The deploy script detects the original model type and maps to the appropriate Factory model using the configuration.
Use the deployment script to deploy agents for Factory:
# Deploy to current project aiwg -deploy-agents --provider factory --mode sdlc # Deploy commands too aiwg -deploy-commands --provider factory --mode sdlc # Or deploy everything at once aiwg -deploy-agents --provider factory --mode both --deploy-commands
Override model mappings if needed:
aiwg -deploy-agents --provider factory --mode sdlc \ --reasoning-model claude-opus-4-6 \ --coding-model claude-sonnet-4-6 \ --efficiency-model claude-haiku-3-5
Deploy to your personal droids directory for cross-project use:
aiwg -deploy-agents --provider factory --mode sdlc --target ~/.factory
Factory droids require explicit tool declarations. AIWG **automatically maps Claude Code tools to Factory equivalents** during deployment.
**Claude Code → Factory (Anthropic Tools):**
Factory uses Anthropic's tool naming conventions. AIWG maps Claude Code tools to these standard names:
| Claude Code | Factory/Anthropic Equivalent | Notes | |-------------|------------------------------|-------| | `Bash` | `Execute` | Shell command execution | | `Write` | `Create`, `Edit` | File creation and modification | | `WebFetch` | `FetchUrl`, `WebSearch` | Web content retrieval | | `MultiEdit` | `MultiEdit`, `ApplyPatch` | Multiple file edits and patch application | | `Read`, `Grep`, `Glob`, `LS` | Same names | Already Anthropic tools |
**Note:** Factory respects Anthropic's tool naming, so all mapped tools use standard Anthropic tool IDs.
**Orchestration agents** automatically receive additional tools:
**Orchestration agents include:**
**Original (Claude Code):**
--- name: Architecture Designer description: Designs scalable, maintainable system architectures model: claude-opus-4-7 tools: Bash, Glob, Grep, MultiEdit, Read, WebFetch, Write ---
**Deployed (Factory):**
--- name: Architecture Designer description: Designs scalable, maintainable system architectures model: claude-opus-4-6 tools: ["ApplyPatch", "Create", "Edit", "Execute", "FetchUrl", "Glob", "Grep", "MultiEdit", "Read", "Task", "TodoWrite", "WebSearch"] ---
**Changes:**
You can further restrict tools after deployment:
# Edit a droid code .factory/droids/architecture-designer.md # Modify tools array in frontmatter tools: ["Read", "LS", "Grep", "Glob", "Edit", "Create"] # Removed Execute
**Common tool restrictions:**
**All tools are Anthropic standard tools**, ensuring compatibility across Factory and other Anthropic-based platforms.
Reusable project context and specialist workflows for the AI tools you already use. Plan software, coordinate specialist reviews, prepare campaigns, investigate incidents, organize research, curate media, and maintain operational knowledge.
Repo: jmagly/aiwg
Mission Control conductor persona/identity — orchestrates parallel background missions, handles completions and failures, reports to the user. Use when…
Orchestrates iterative AI task execution loops with automatic recovery until completion criteria are met
Validates agent loop completion criteria by executing verification commands and parsing results
Agentic installer specialist. Generates, validates, and executes setup.aiwg.io/v1 SetupManifest files. Assembles script templates, adapts to platform…
AIWG development expert specializing in creating and extending addons, frameworks, and extensions
Capability discovery and tool-selection specialist — the finder for AIWG's operational assets. Takes a natural-language request, runs the `aiwg discover` +…