بنقرة واحدة
multi-agent-workflow
Validates parallel sub-agent execution with file-backed JSON artifact handoff
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Validates parallel sub-agent execution with file-backed JSON artifact handoff
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Agent-only canonical output templates for rp1 artifacts. Load when producing structured markdown to ensure format consistency and routing metadata.
Ask about rp1 capabilities, discover skills, and get workflow guidance.
Evidence-gated tech debt and bloat detection. Scouts signals, ranks by materiality, validates by refutation, reports up to 5 findings with actions.
Synchronizes user-facing documentation with the current knowledge base through validate -> stale gate -> scan -> approval -> process orchestration.
Orchestrates parallel KB generation using spatial analysis and a map-reduce architecture with incremental and feature-learning modes.
Analyzes systems holistically to provide strategic recommendations balancing cost, quality, performance, complexity, and business objectives with quantified trade-offs.
| name | multi-agent-workflow |
| description | Validates parallel sub-agent execution with file-backed JSON artifact handoff |
This skill validates Copilot CLI's ability to orchestrate multiple sub-agents in parallel and collect their results via file-backed JSON artifacts.
Create the output directory:
mkdir -p .rp1/work/agent-output/multi-agent-test
Delegate to three instances of the parallel-worker agent in parallel:
Worker 1:
Worker 2:
Worker 3:
Use Copilot CLI's agent delegation mechanism (e.g., create_agent) to spawn each worker. All three should run concurrently.
After all workers complete, read each output file:
cat .rp1/work/agent-output/multi-agent-test/worker-1.json
cat .rp1/work/agent-output/multi-agent-test/worker-2.json
cat .rp1/work/agent-output/multi-agent-test/worker-3.json
Parse each worker's JSON output and produce an aggregated report:
{
"workflow": "multi-agent-test",
"total_workers": 3,
"completed_workers": "<count of workers with status=completed>",
"results": [
"<worker-1 output>",
"<worker-2 output>",
"<worker-3 output>"
],
"overall_status": "PASS if all completed, FAIL otherwise"
}
Write this aggregated report to .rp1/work/agent-output/multi-agent-test/aggregate.json.
[FIXTURE] Multi-Agent Workflow Complete
Workers dispatched: 3
Workers completed: <count>
Parallel execution: PASS/FAIL
File-backed handoff: PASS/FAIL
Aggregation: PASS/FAIL
Overall: PASS/FAIL