autonomous-orchestration

autonomous-orchestration is a skill for Claude Code, Codex from jxoesneon/Ciel. It costs 25 tokens per session (504 once invoked), scanned A, original, Apache-2.0.

A framework for coordinating multiple coding agents, scheduled jobs, and isolated Git worktrees. A worktree is a separate working copy of a repository.

In plain words
What is it for?
It is for building task dependency graphs, dispatching independent missions, merging successful work, running recurring jobs, and reporting mission status.
Why use it?
It helps split complex work safely, start dependent tasks in order, keep sessions isolated, and track failures and progress.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit It is for building task dependency graphs, dispatching independent missions, merging successful work, running recurring jobs, and reporting mission status.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/jxoesneon/ciel/autonomous-orchestration
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.

Any agent
npx skills add jxoesneon/Ciel --skill autonomous-orchestration
Clone the repo
git clone --depth 1 https://github.com/jxoesneon/Ciel

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for autonomous-orchestration

README.md
[![agentmods](https://agentmods.dev/badge/skills/jxoesneon/ciel/autonomous-orchestration/github.svg)](https://agentmods.dev/skills/jxoesneon/ciel/autonomous-orchestration)
Your own site
<a href="https://agentmods.dev/skills/jxoesneon/ciel/autonomous-orchestration"><img src="https://agentmods.dev/badge/skills/jxoesneon/ciel/autonomous-orchestration/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.

agentmods 80×15 button for autonomous-orchestration

Your own site · 80×15
<a href="https://agentmods.dev/skills/jxoesneon/ciel/autonomous-orchestration"><img src="https://agentmods.dev/badge/skills/jxoesneon/ciel/autonomous-orchestration.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 25 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 504 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found 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.1 $0.00025 $0.00504
Opus 5 $0.00013 $0.00252
Sonnet 5 $0.00005 $0.00101
Haiku 4.5 $0.00003 $0.00050

Measured 7d ago against content hash fc34cc6c2f23, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

autonomous-orchestration 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 7d 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.

skills/autonomous-orchestration/SKILL.md · 50 lines

What it actually says

CIEL ADAPTATION: Autonomous Orchestration (Fleets & Missions)

This skill formalizes the execution of multi-step, multi-agent workflows. it prioritizes isolation, structured reporting, and persistent scheduling.

The Fleet Pattern (DevFleet)

  1. Mission DAG: Break complex requests into a Directed Acyclic Graph (DAG) of missions.
  2. Isolation: Each agent MUST run in an isolated git worktree with dedicated tooling.
  3. Auto-Dispatch: Missions with met dependencies auto-start. missions with blocked dependencies queue.
  4. Merge Protocol: Missions auto-merge on success; conflict resolution is a manual or dedicated "Conflict Solver" mission.

Scheduled Operations (Crons)

  • Persistence: Use native scheduled tasks for recurring monitoring (e.g., Daily standup at 9 AM).
  • Session Isolation: Crons run in isolated sessions. use project memory for cross-session context.
  • Error Handling: Every cron prompt MUST include instructions for handling failures (e.g., "If tests fail, post log to memory and alert user").

Reporting & Status

  • Dashboard: Use get_dashboard() to monitor slot usage and recent activity.
  • Missions: Every mission MUST produce a MISSION_REPORT.md (Files changed, Tests run, Next steps).

Anti-Patterns

  • Circular Missions: Creating a dependency loop between agents.
  • Shared Worktrees: Running two independent agents in the same directory (causes race conditions).
  • Amnesiac Crons: Running a daily task that doesn't read the previous day's result from memory.
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. 7d ago First seen · 50 lines · 25 tokens per session scan A fc34cc6c2f23

Subscribe to this mod's changes

autonomous-orchestration is a skill published in the GitHub repository jxoesneon/Ciel (1 stars, last pushed 3d ago), licensed Apache-2.0. It adds 25 tokens to every session and 504 once invoked, about $0.0001 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-09-03.

Related

Other skills, from other repositories

factory-handoff

Hand one exact agent-ready ticket to the central Factory runtime over the configured SSH forced-command boundary. Use when an operator asks to hand off an existing ticket or a prose request instead of implementing it in the current session.

watt-mind/factory · 47 tokens

delivery

Fecha o ciclo de entrega local — build check, bump semântico, changelog e commit convencional. Deploy remoto somente sob a condição dupla do Ops. Use para "finalizar tarefa", "fazer release" ou "publicar versão".

rcelebrone/DotAgents · 50 tokens

feature-flow

Cria o diretório canônico da task (docs/todo/NNN-slug/), a branch e o scaffolding inicial. Use para "criar feature", "iniciar tarefa" ou "abrir task".

rcelebrone/DotAgents · 49 tokens

gitnexus-cli

Use when the user needs to run GitNexus CLI commands like analyze/index a repo, check status, clean the index, generate a wiki, or list indexed repos. Examples: "Index this repo", "Reanalyze the codebase", "Generate a wiki".

Kacper0199/Opencode-Ultrathinker · 59 tokens

github-release-pr-writer

Draft or update GitHub release pull request descriptions from verified tags, commits, merged pull requests, and the release diff. Use when a PR prepares a version, aligns release metadata, promotes a prerelease, or needs a reviewer-focused release summary, exact change inventory, breaking-change section, or migration…

flc1125/skills · 80 tokens

codex-review

Professional code review with auto CHANGELOG generation, integrated with Codex AI.

agent-skills-hub/agent-skills-hub · 18 tokens