agent_spawn
Assign tasks to AI agents by writing instructions to a shared blackboard for automated workflow execution in multi-agent systems.
Instructions
Dispatch a task to a named agent by writing a task record to the blackboard. The agent will pick it up on its next poll cycle.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| agent_id | Yes | ID of the agent to assign the task to (e.g. "code_writer", "data_analyst") | |
| task_key | Yes | Blackboard key for the task (e.g. "task:write:auth_module") | |
| instruction | Yes | Natural language instruction for the agent | |
| payload_json | No | Optional JSON-encoded extra payload for the agent | |
| ttl | No | Time-to-live for the task entry in seconds (default: 3600) |