بنقرة واحدة
orchestrate
Plan and execute multi-agent work — decompose features, spawn workers, monitor progress
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Plan and execute multi-agent work — decompose features, spawn workers, monitor progress
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Create, test, and improve functions at runtime — agents write their own code
Session lifecycle management — transitions, state tracking, reactions
Persistent agent memory — store, recall, search across sessions
Scan agent health and auto-recover stale or dead sessions
Security scanning — injection detection, capability checks, audit trails
Multi-agent swarm coordination — create swarms, broadcast tasks, reach consensus
| name | orchestrate |
| description | Plan and execute multi-agent work — decompose features, spawn workers, monitor progress |
| toolScope | ["Bash","Read","Write","Agent"] |
| effort | extended |
Use AgentOS orchestrator to break down complex tasks:
curl -X POST http://localhost:3111/api/orchestrator/plan -H 'Content-Type: application/json' -d '{"description": "<task>"}'curl -X POST http://localhost:3111/api/orchestrator/execute -H 'Content-Type: application/json' -d '{"planId": "<id>"}'curl -X POST http://localhost:3111/api/orchestrator/status -H 'Content-Type: application/json' -d '{"planId": "<id>"}'The orchestrator decomposes tasks into subtasks with hierarchical IDs, spawns workers for each leaf task, and monitors progress with lifecycle reactions.