spawn_from_profile
Spawns an autonomous agent from a saved profile, supporting variable interpolation and per-call overrides for tasks like coding, fixing issues, or writing tests.
Instructions
Spawn an agent job from a saved profile. Supports variable interpolation and per-call overrides. Call list_profiles first to see available profiles. Built-in profiles: coder, fix-issue, implement-feature, write-tests, security-audit, refactor, review-pr, bump-deps. Use the 'coder' profile for general coding tasks — it injects Karpathy discipline guidelines.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| vars | No | Variables to interpolate into the task template (e.g. { issue: '42', title: 'Login broken' }) | |
| fast_mode | No | Override the profile's fast mode setting for this spawn (optional). | |
| effort_level | No | Override the profile's default effort level for this spawn (optional). | |
| profile_name | Yes | Name of the profile to use | |
| task_override | No | Use this task instead of the profile's template (optional) | |
| branch_override | No | Override the profile's branch (optional) | |
| budget_override | No | Override the profile's default budget (optional) | |
| spawning_namespace | No | Namespace of the caller. When set, job completion notifications are routed to cca:notify:{spawning_namespace}. Defaults to the current namespace. |