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