fixtures/copilot-validation/.github/skills/multi-agent-workflow/SKILL.md
Validates parallel sub-agent execution with file-backed JSON artifact handoff
npx skillsauth add rp1-run/rp1 multi-agent-workflowInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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
data-ai
Capture session context as a structured, frontmatter-rich markdown note under .rp1/work/notes/ with auto-maintained index and log.
tools
Plan and execute splitting a large PR or branch into a reviewable stacked PR sequence.
development
Write maximally terse agent prompts from scratch. Use when creating new agent specs, command prompts, or instruction sets. Teaches structure-first composition with compression-by-default patterns. Extended with constitutional governance, epistemic stance selection, and a six-stage prompt pipeline.
development
Interactive speedrun loop for small, low-risk changes. Delegates each request to a general sub-agent. Redirects larger work to /build-fast or /build.