rfc-and-unit-orchestration

rfc-and-unit-orchestration is a skill for Claude Code, Codex from jxoesneon/Ciel. It costs 23 tokens per session (491 once invoked), scanned A, original, Apache-2.0.

A framework for turning large features into smaller work units that can be checked and merged independently. An RFC is a written proposal for a change, and a DAG is a dependency map showing which tasks must come first.

In plain words
What is it for?
Use it to write feature proposals, split work into dependent units, assign implementation steps, run tests after merges, and require code review before integration.
Why use it?
It makes complex implementation work easier to track and reduces integration errors by defining scope, tests, dependencies, and rollback plans for each unit.

Skill for Claude CodeCodex

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

Good fit Use it to write feature proposals, split work into dependent units, assign implementation steps, run tests after merges, and require code review before integration.

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/jxoesneon/ciel/rfc-and-unit-orchestration"><img src="https://agentmods.dev/badge/skills/jxoesneon/ciel/rfc-and-unit-orchestration.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 23 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 491 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.00023 $0.00491
Opus 5 $0.00012 $0.00246
Sonnet 5 $0.00005 $0.00098
Haiku 4.5 $0.00002 $0.00049

Measured 9d ago against content hash 5c2229e25c08, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

rfc-and-unit-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 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.

skills/rfc-and-unit-orchestration/SKILL.md · 55 lines

What it actually says

CIEL ADAPTATION: RFC & Unit Orchestration (The Structure Layer)

This skill formalizes the decomposition of large features into independently verifiable work units. it prioritizes quality gates and merge safety.

The RFC Pipeline

  1. Intake: Map high-level intent to a formal Request for Comments (RFC).
  2. DAG Decomposition: Split the RFC into a Directed Acyclic Graph (DAG) of work units.
  3. Unit Assignment: Assign units based on complexity tiers (1: Isolated, 2: Multi-file, 3: Schema/Security).
  4. Merge Queue: Manage the sequential integration of units. Re-run integration tests after EVERY merge.

Work Unit Specification

Every unit MUST include:

  • id and depends_on.
  • scope: Exact files or functions.
  • acceptance_tests: Minimum proving steps.
  • rollback_plan: How to undo the change if integration fails.

Implementation Workflow

  • Research: iterative context retrieval for the unit.
  • Implementation: TDD-based implementation.
  • Review: Mandatory code-review turn before merge-readiness.
  • Integration: Rebase and resolve conflicts on the main feature branch.

Anti-Patterns

  • Zombie Dependencies: Proceeding with a unit when its required predecessor failed.
  • Merge-and-Forget: Integrating a unit without re-running the full integration test suite.
  • The Giant Unit: Defining a single unit that touches > 5 files across different domains.
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. 9d ago First seen · 55 lines · 23 tokens per session scan A 5c2229e25c08

Subscribe to this mod's changes

rfc-and-unit-orchestration is a skill published in the GitHub repository jxoesneon/Ciel (1 stars, last pushed 5d ago), licensed Apache-2.0. It adds 23 tokens to every session and 491 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

review-tests

Reviews test quality and coverage. Use when checking that a diff has adequate tests, checking a new or edited test, or auditing the test suite of a codebase.

mrinalwadhwa/fluent · 36 tokens

testing-rate-limiting

Apply deterministic SlowAPI rate-limiter isolation for FastAPI transport tests, especially to avoid flaky HTTP 429 responses.

asap-protocol/asap-protocol · 29 tokens

fluent

Operate the fluent workflow to build software autonomously over extended periods. Interactive stages (brief, behaviors, approach, plan) run with the user. Autonomous execution loops writer → tester → parallel reviewers, then runs the Learner after a passing review round. Only a successful Learner run produces a ready…

mrinalwadhwa/fluent · 116 tokens

test-scaffold

Gera estrutura completa de testes automatizados (unitários, integração e edge cases) com base no código existente. Use para "escrever testes para este arquivo", "aumentar cobertura" ou "criar mocks".

rcelebrone/DotAgents · 49 tokens

e2e-runner

End-to-end testing specialist using Playwright. Use PROACTIVELY for generating, maintaining, and running E2E tests. Manages test journeys, quarantines flaky tests, uploads artifacts (screenshots, videos, traces), and ensures critical user flows work.

Kacper0199/Opencode-Ultrathinker · 59 tokens

tdd-workflow

Use this skill when writing new features, fixing bugs, or refactoring code. Enforces test-driven development with 80%+ coverage including unit, integration, and E2E tests.

Kacper0199/Opencode-Ultrathinker · 43 tokens