원클릭으로
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