ワンクリックで
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