Manages temporary and defined agents including creation, promotion, cleanup, and namespacing. Use when user creates custom agents, asks about agent lifecycle, temp agents, or agent management.
/plugin marketplace add mbruhler/claude-orchestration/plugin install orchestration@orchestration-marketplaceThis skill inherits all available tools. When active, it can use any tool Claude has access to.
available-agents.mddefined-agents.mdexternal-agents.jsonnamespacing.mdpromotion.mdtemp-agents.mdI manage the lifecycle of agents in the orchestration system: creation, execution, promotion, and cleanup.
I automatically activate when you:
No namespace prefix, always available:
Explore - Codebase explorationgeneral-purpose - General-purpose taskscode-reviewer - Code reviewimplementation-architect - Architecture planningexpert-code-implementer - Code implementationWith orchestration: prefix, permanent agents in this plugin:
orchestration:workflow-socratic-designerorchestration:workflow-syntax-designerLocated in: agents/ directory
Registry: agents/registry.json
With orchestration: prefix, workflow-specific ephemeral agents:
temp-agents/ directoryReference in workflows: $agent-name
See temp-agents.md for complete guide.
Created automatically during workflow design:
---
name: security-scanner
description: Scans for security vulnerabilities
created: 2025-01-08
---
You are a security expert specializing in vulnerability detection...
Saved to: temp-agents/security-scanner.md
Referenced in workflow with $ prefix:
$security-scanner:"Scan codebase":findings ->
general-purpose:"Analyze {findings}"
Executed with namespace: orchestration:security-scanner
After workflow completion, you can save temp agents:
Workflow complete!
Temp agents created:
- security-scanner
- performance-profiler
Save as permanent agents? [Y/n]
If saved:
temp-agents/ to agents/agents/registry.jsonUnsaved temp agents are deleted:
š§¹ Cleaned up 2 temporary file(s):
- temp-agents/security-scanner.md
- examples/workflow-data.json
See defined-agents.md for detailed guide.
To create a permanent agent manually:
agents/custom-agent.md:
---
name: custom-agent
namespace: orchestration:custom-agent
description: One-line description of what this agent does
tools: [Read, Grep, Edit]
usage: "Use via Task tool with subagent_type: 'orchestration:custom-agent'"
---
You are a specialized agent for [purpose].
Your responsibilities:
1. Task 1
2. Task 2
Output format:
[Expected output format]
Use these tools:
- Read: [When to use]
- Grep: [When to use]
Add to agents/registry.json:
{
"custom-agent": {
"file": "custom-agent.md",
"description": "One-line description",
"namespace": "orchestration:custom-agent",
"created": "2025-01-08",
"usageCount": 0
}
}
Reference by name (system adds namespace automatically):
custom-agent:"Perform specialized task":output
See namespacing.md for complete reference.
| Agent Type | User Writes | System Executes |
|---|---|---|
| Built-in | Explore:"task" | Explore |
| Defined plugin | workflow-socratic-designer | orchestration:workflow-socratic-designer |
| Temp | $security-scanner | orchestration:security-scanner |
function resolveAgent(name) {
// 1. Check if built-in
if (isBuiltIn(name)) return name;
// 2. Check if other plugin (e.g., superpowers:)
if (name.includes(':')) return name;
// 3. Add orchestration namespace
return `orchestration:${name}`;
}
See promotion.md for details.
After workflow execution with temp agents:
Temp agents used in this workflow:
1. security-scanner
Description: Scans for security vulnerabilities
Used: 1 time in workflow
2. performance-profiler
Description: Analyzes code performance
Used: 1 time in workflow
Select agents to save (space-separated numbers, or 'none'):
You selected: security-scanner
Promotion options:
[P]romote as-is - Save with current definition
[E]dit first - Modify before saving
[S]kip - Don't save this agent
If promoted:
temp-agents/ to agents/agents/registry.jsonUnselected agents are deleted
To update a defined agent:
agents/agent-name.mdagents/registry.json metadataChanges take effect immediately in new workflows.
To remove a defined agent:
agents/agent-name.mdagents/registry.jsonAgent will no longer be available in workflows.
Track agent usage in agents/registry.json:
{
"security-scanner": {
"usageCount": 15,
"lastUsed": "2025-01-08T14:30:00Z"
}
}
ā DO:
ā DON'T:
ā Promote when:
ā Don't promote when:
ā Good names:
security-scanner (clear purpose)api-doc-generator (descriptive)performance-profiler (specific)ā Bad names:
helper (too generic)agent1 (meaningless)do-stuff (vague)"Agent not found" error:
temp-agents/agents/ and registryNamespace conflict:
orchestration: in workflowsTemp agent disappeared:
agents/registry.json:
{
"$schema": {
"description": "Registry of defined agents",
"namespace": "orchestration:",
"usage": "All agents accessed via 'orchestration:{agent-name}'"
},
"agent-name": {
"file": "agent-name.md",
"description": "One-line description",
"namespace": "orchestration:agent-name",
"created": "2025-01-08",
"usageCount": 0,
"lastUsed": null
}
}
See examples in:
Need to create or manage agents? Just ask!
Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright violations.
Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.
Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.