一键导入
sessions-spawn
Spawn sub-agent tasks for parallel execution
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Spawn sub-agent tasks for parallel execution
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Local file search and content exploration workflow
Push notifications to user devices
Scheduled recurring task management
Task planning and execution tracking
Web search and content retrieval workflow
基于 SOC 职业分类
| name | sessions_spawn |
| description | Spawn sub-agent tasks for parallel execution |
| server_tools | sessions_spawn |
| client_tools | null |
| depends_on | null |
Use sessions_spawn to delegate self-contained tasks to a sub-agent
that runs in parallel. Progress is tracked automatically by the frontend
via polling — you do NOT need to check status manually.
When delegating multiple tasks, you MUST call sessions_spawn multiple times
in the same response (parallel tool calls). Do NOT spawn one, wait for it,
then spawn the next — this defeats the purpose of parallel execution.
Correct (all in one response):
[sessions_spawn(task="Research topic A"), sessions_spawn(task="Research topic B"), sessions_spawn(task="Research topic C")]
Wrong (sequential, one per response):
sessions_spawn(task="Research topic A")
→ wait for result
sessions_spawn(task="Research topic B")
→ wait for result
child_session_idsessions_spawn_status to check progress — the system handles waiting automatically