aod-orchestrate

A workflow for running several GitHub Issues as ordered groups of parallel tasks. It groups issues by ICE priority, where ICE is a score based on impact, confidence, and ease, and runs higher-priority groups first.

In plain words
What is it for?
Use it to select issues from project planning, create task records, start parallel work through the orchestrator, monitor each wave, and report the results.
Why use it?
It removes the manual work of sorting related issues, starting task batches, tracking their progress, and checking between priority groups.

Skill for Claude CodeCodex

Install

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.

agentmods
npx agentmods add skills/davidmatousek/agentic-oriented-development-kit/aod-orchestrate
Any agent
npx skills add davidmatousek/agentic-oriented-development-kit --skill aod-orchestrate
Clone the repo
git clone --depth 1 https://github.com/davidmatousek/agentic-oriented-development-kit

Made for: Claude Code, Codex.

Per session 110 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 10,187 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
Origin 100% copy Near-identical to another mod in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5 $0.00110 $0.10187
Opus 5 $0.00055 $0.05094
Sonnet 5 $0.00022 $0.02037
Haiku 4.5 $0.00011 $0.01019

Measured 3d ago against content hash 3d02470843d8, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

aod-orchestrate scanned grade A with 1 finding 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 3d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -sf "${AOD_API_URL:-http://localhost:8000}/api/v1/projects/{project_id}" -H "X-AOD-Source: skill"
Origin

This is a copy

100% identical to aod-orchestrate — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.claude/skills/aod-orchestrate/SKILL.md · 986 lines

How it starts

The opening of the file, as written. The whole thing — 986 lines — stays where its author put it; the contents beside it link to each section on GitHub.

/aod.orchestrate Skill

Purpose

Orchestrate multiple features from /aod.blueprint output as priority-ordered parallel waves. The skill auto-detects the project, fetches actionable issues, groups them by ICE priority tier, and executes waves sequentially via the batch spawn API with governance checkpoints at tier boundaries.

Flow: Parse flags --> Auto-detect project --> Check idempotency --> Fetch issues --> Plan waves --> Confirm --> Execute waves --> Report completion


Step 0: Capture Start Time

Record the orchestration start time for duration calculation in the completion report.

Run the following command via Bash tool and store the result:

date +%s

Store this value as start_time for use in Step 8 (Completion Reporter).


Step 1: Parse Arguments

Parse user arguments from the skill invocation.

User Input

$ARGUMENTS

1.1: Parse --issues flag

Check if $ARGUMENTS contains --issues:

  1. If $ARGUMENTS contains --issues N,N,N (comma-separated issue numbers):
    • Extract the comma-separated list of issue numbers
    • Set selected_issues to the parsed list of integers
    • Strip --issues N,N,N from $ARGUMENTS (trim extra whitespace)
  2. If $ARGUMENTS does NOT contain --issues:
    • Set selected_issues to empty (all issues)

1.2: Parse --dry-run flag

Check if $ARGUMENTS contains --dry-run:

  1. If present:
    • Set dry_run = true
    • Strip --dry-run from $ARGUMENTS
  2. If not present:
    • Set dry_run = false

1.3: Parse --yes flag

Check if $ARGUMENTS contains --yes:

  1. If present:
    • Set auto_confirm = true
    • Strip --yes from $ARGUMENTS
  2. If not present:
    • Set auto_confirm = false

Step 2: Project Auto-Detection

Resolve the active orchestrator project from local context. Detection follows a priority order with fallback.

2.1: Read config file

Run the following command via Bash tool:

cat .aod/config.json 2>/dev/null

Read the full file on GitHub · 986 lines

Changes

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.

  1. 3d ago First seen · 986 lines · 110 tokens per session scan A 3d02470843d8

Subscribe to this mod's changes

aod-orchestrate is a skill published in the GitHub repository davidmatousek/agentic-oriented-development-kit (22 stars, last pushed 2mo ago), licensed MIT. It adds 110 tokens to every session and 10,187 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). It is 100% identical to aod-orchestrate, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

brainstorming

You MUST use this before any creative work - creating features, building components, adding functionality, or modifying behavior. Explores user intent, requirements and design before implementation.

obra/superpowers · 37 tokens

auto-perf-optimize

Run agent-driven VS Code performance or memory investigations. Use when asked to launch Code OSS, automate a VS Code scenario, run the Chat memory smoke runner, capture renderer heap snapshots, take workflow screenshots, compare run summaries, or drive a repeatable scenario before heap-snapshot analysis.

microsoft/vscode · 62 tokens

chat-perf

Run chat perf benchmarks and memory leak checks against the local dev build or any published VS Code version. Use when investigating chat rendering regressions, validating perf-sensitive changes to chat UI, or checking for memory leaks in the chat response pipeline.

microsoft/vscode · 51 tokens

chat-pet-sprite-creation

Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.

microsoft/vscode · 53 tokens

cpu-profile-analysis

Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…

microsoft/vscode · 71 tokens