register_agent
Creates or updates an agent profile with capabilities, tags, and capacity in the Agents/ folder, enabling capability-based task routing.
Instructions
Register an agent with capabilities, tags, and capacity. Creates or updates an agent profile in the Agents/ folder. Used for capability-based task routing.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tags | No | Specialization tags (e.g. ['typescript', 'react', 'database']). | |
| model | No | LLM model name powering this agent (e.g. 'claude-opus-4-6', 'gpt-4o'). | |
| agent_id | Yes | Unique identifier for the agent (e.g. 'claude-code-1', 'research-agent'). | |
| description | No | Human-readable description of what this agent does. | |
| capabilities | No | Task types this agent can handle (e.g. ['code', 'research', 'writing']). | |
| max_concurrent | No | Maximum number of parallel tasks this agent can handle. Default: 3. |