Skillquality 0.45
pilot-task-parallel
Fan-out tasks to multiple agents and merge results. Use this skill when: 1. You need to distribute independent work across multiple agents 2. You want to aggregate results from parallel task execution 3. You need to reduce execution time through parallelization Do NOT use this
Price
free
Protocol
skill
Verified
no
What it does
pilot-task-parallel
Fan-out tasks to multiple agents for parallel execution and merge results.
Commands
Submit multiple tasks in parallel
for AGENT in "${AGENTS[@]}"; do
pilotctl --json task submit "$AGENT" --task "Compute task batch" &
done
wait
Wait for all completions
while true; do
ALL_DONE=true
for TASK_ID in "${TASK_IDS[@]}"; do
STATUS=$(pilotctl --json task list --type submitted | jq -r ".[] | select(.task_id == \"$TASK_ID\") | .status")
[ "$STATUS" != "completed" ] && [ "$STATUS" != "failed" ] && ALL_DONE=false && break
done
[ "$ALL_DONE" == true ] && break
sleep 2
done
Merge results
pilotctl --json task list --type submitted | \
jq -r "[.[] | select(.task_id | IN(\"${TASK_IDS[@]}\")) | select(.status == \"completed\") | .result]"
Workflow Example
Distribute image processing across GPU agents:
#!/bin/bash
GPU_AGENTS=$(pilotctl --json peers --search "gpu" | jq -r '.[].address')
AGENT_ARRAY=($GPU_AGENTS)
TASK_IDS=()
for i in {1..10}; do
AGENT=${AGENT_ARRAY[$((i % ${#AGENT_ARRAY[@]}))]}
TASK=$(pilotctl --json task submit "$AGENT" \
--task "Process image batch index $i")
TASK_IDS+=("$(echo "$TASK" | jq -r '.task_id')")
done
# Wait for all tasks
while true; do
ALL_DONE=true
for TASK_ID in "${TASK_IDS[@]}"; do
STATUS=$(pilotctl --json task list --type submitted | \
jq -r ".[] | select(.task_id == \"$TASK_ID\") | .status")
[ "$STATUS" != "completed" ] && [ "$STATUS" != "failed" ] && ALL_DONE=false && break
done
[ "$ALL_DONE" == true ] && break
sleep 2
done
echo "All tasks completed"
Dependencies
Requires pilot-protocol skill, jq, and Bash 4.0+.
Capabilities
skillsource-teoslayerskill-pilot-task-paralleltopic-agent-skillstopic-ai-agentstopic-clawhubtopic-networkingtopic-openclawtopic-overlay-networktopic-p2ptopic-pilot-protocol
Install
Installnpx skills add TeoSlayer/pilot-skills
Transportskills-sh
Protocolskill
Quality
0.45/ 1.00
deterministic score 0.45 from registry signals: · indexed on github topic:agent-skills · 6 github stars · SKILL.md body (1,711 chars)
Provenance
Indexed fromgithub
Enriched2026-05-18 19:15:05Z · deterministic:skill-github:v1 · v1
First seen2026-05-18
Last seen2026-05-18