CLI Agent Orchestrator is a tool that coordinates multiple AI coding command-line programs by running them as separate workers in isolated terminal sessions. A supervisor uses it to delegate software tasks to specialist agents in parallel or in sequence while the workers retain their normal command-line capabilities. The catalogue skills operate this orchestration workflow.
Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add awslabs/cli-agent-orchestrator --skill aidlc-portfoliogit clone --depth 1 https://github.com/awslabs/cli-agent-orchestratorWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/awslabs/cli-agent-orchestrator/aidlc-portfolio)<a href="https://agentmods.dev/skills/awslabs/cli-agent-orchestrator/aidlc-portfolio"><img src="https://agentmods.dev/badge/skills/awslabs/cli-agent-orchestrator/aidlc-portfolio/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/awslabs/cli-agent-orchestrator/aidlc-portfolio"><img src="https://agentmods.dev/badge/skills/awslabs/cli-agent-orchestrator/aidlc-portfolio.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00074 | $0.02926 |
| Opus 5 | $0.00037 | $0.01463 |
| Sonnet 5 | $0.00015 | $0.00585 |
| Haiku 4.5 | $0.00007 | $0.00293 |
Grade A, and why
aidlc-portfolio scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 339 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AI-DLC Portfolio
Maintain a thin control plane around existing AI-DLC workflows. Never replace or modify the child workflow engine.
Resolve every relative resource path against the directory containing this
SKILL.md. In the commands below, set SKILL_DIR to that absolute directory:
SKILL_DIR=/absolute/path/to/skills/aidlc-portfolio
Operating Rules
- Run
"$SKILL_DIR/scripts/portfolio.ts"for every portfolio mutation. - Keep portfolio state at
<root>/portfolioand project checkouts at<root>/repositories. - Give each active child intent its own path under
<root>/worktrees. - Dispatch one
aidlc_runnerper child intent with CAOassign. - Treat child AI-DLC state as opaque. Never edit
aidlc-state.mdor derive its next stage. - Require evidence and confidence for discovered catalog relationships.
- Ask the human about missing or uncertain business facts before verification.
- Run dispatch validation before starting or resuming a child runner.
- Treat the portfolio supervisor as the sole shared-memory approval authority.
- Never merge worktree-local
project.mdorteam.mdchanges. - The supervisor owns bootstrap; the operator should not have to prepare the workspace, repository checkout, intent files, worktrees, or child harness.
- Never dispatch until portfolio discovery has explicit human confirmation.
- Never answer a child AI-DLC question without human input.
- Stage, project, and verify child harnesses only through
harnesscommands. - Advance parent work only through the persisted portfolio lifecycle.
- Require one structured result per child and pass convergence before Learn.
Bootstrap From Work Items
The normal entry point is an operator naming a repository and one or more work items. Perform setup on their behalf:
- Derive a stable portfolio ID from the repository and sorted work-item IDs.
- Use the terminal's launch directory as the portfolio root unless the operator explicitly supplies another root. Never create a nested root.
- Run
initagainst that exact root; never hand-create portfolio state. - Create a fresh canonical checkout under
<root>/repositories. Do not reuse, clean, reset, or remove an existing user checkout or worktree. - Inspect the work items and register the project, dependencies, and one portfolio intent per independent work item using templates and utility commands.
- Create each worktree through
worktree create. - Locate the Claude AI-DLC distribution at
$HOME/Project/aidlc-workflows/dist/claude. Runharness stage,harness sync, andharness verifyto project one manifest-pinned Opus 5 runtime into every worktree. - Run
doctoranddispatch check, then assign all dependency-readyaidlc_runnersessions concurrently with CAOworking_directoryset to each absolute worktree. - Report the generated root, intent IDs, worktree paths, and terminal IDs.
What ships with it
30 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- agents/openai.yaml 215 B
- assets/schemas/child-result.schema.json 1.9 KB
- assets/schemas/dependency.schema.json 2.1 KB
- assets/schemas/discovery-decision.schema.json 2.3 KB
- assets/schemas/intent.schema.json 1.8 KB
- assets/schemas/learning-proposal.schema.json 2.1 KB
- assets/schemas/portfolio.schema.json 1.1 KB
- assets/schemas/project.schema.json 2.5 KB
- assets/templates/child-result.yaml 263 B
- assets/templates/dependency.yaml 381 B
- assets/templates/discovery-decision.yaml 435 B
- assets/templates/intent.yaml 424 B
- assets/templates/learning-proposal.yaml 386 B
- assets/templates/portfolio-questions.md 1.2 KB
- assets/templates/portfolio.yaml 223 B
- assets/templates/project.yaml 420 B
- assets/templates/question-packet.md 139 B
- assets/templates/runner-message.md 1.6 KB
- bun.lock 1.3 KB
- package.json 218 B
- references/catalog-model.md 1.7 KB
- references/convergence.md 1.7 KB
- references/coordination-rules.md 4.5 KB
- references/harness-lifecycle.md 1.4 KB
- references/portfolio-lifecycle.md 1.8 KB
- references/shared-memory.md 1.7 KB
- scripts/convergence.ts 21 KB runs code
- scripts/harness.ts 20 KB runs code
- scripts/lib.ts 77 KB runs code
- scripts/portfolio.ts 14 KB runs code
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 9d ago First seen · 339 lines · 74 tokens per session scan A 7ee534571d1b
aidlc-portfolio is a skill published in the GitHub repository awslabs/cli-agent-orchestrator (1,235 stars, last pushed yesterday), licensed Apache-2.0. It adds 74 tokens to every session and 2,926 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
cleanup
Use when cleaning up peers, sessions, tmux panes, processes, feature worktrees, branches, generated artifacts, or after a delegated lane or PR is complete.
worktree-isolation
Use when splitting work across peers, creating or selecting feature worktrees, preventing overlapping edits, or deciding whether to reroute implementation out of the main worktree.
mindforge-forensics
Post-mortem investigation for failed MindForge workflows — analyzes git history, artifacts, and state to diagnose what went wrong.
mindforge-quick
Execute a quick task with MindForge guarantees (atomic commits, state tracking) but skip optional agents.
mindforge-pause-work
Create context handoff when pausing work mid-phase.
mindforge-remove-phase
Remove a future phase from roadmap and renumber subsequent phases.