Agent Orchestrate

PassAudited by ClawScan on May 1, 2026.

Overview

This is a coherent instruction-only guide for coordinating sub-agents, with expected notes around spawning agents and reusing or storing their outputs.

This skill appears safe to install as an instruction-only reference. Before using it, be aware that it may lead your agent to start multiple sub-agents, incur additional costs, and save or pass intermediate results between agents; use timeouts, small fan-out sizes, and human review for sensitive or high-impact tasks.

Findings (3)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

Using this skill may increase agent activity, token/API costs, and the number of concurrent actions being coordinated.

Why it was flagged

The skill intentionally teaches creating and managing additional agents; this is central and disclosed, but users should recognize that it can launch work that continues until completion, timeout, or termination.

Skill content
`sessions_spawn` | Create isolated sub-agent with task ... `subagents kill` | Terminate an agent
Recommendation

Use clear labels, set `runTimeoutSeconds`, limit fan-out size, and keep human checkpoints for expensive or high-impact workflows.

What this means

Intermediate outputs or session references could remain in workspace files and be reused in later tasks if the user does not manage them.

Why it was flagged

The skill recommends persisting task results and session identifiers in a local state file, which is purpose-aligned but may retain sensitive intermediate information.

Skill content
For complex orchestrations, track state in a file: ... "result": "...", "sessionKey": "..."
Recommendation

Keep state/checkpoint files scoped to the project, avoid storing secrets, and review or delete orchestration state when it is no longer needed.

What this means

An incorrect or misleading intermediate result could propagate through later stages of a workflow.

Why it was flagged

The pipeline pattern intentionally passes one agent's output into later agents, so mistakes or unsafe instructions in earlier outputs can influence downstream work.

Skill content
Sequential chain where each agent's output feeds the next.
Recommendation

Review important intermediate outputs before downstream stages, especially before actions that affect files, accounts, public content, or spending.