بنقرة واحدة
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