ciel-quality-and-verification

ciel-quality-and-verification is a skill for Claude Code, Codex from jxoesneon/Ciel. It costs 25 tokens per session (546 once invoked), scanned A, original, Apache-2.0.

A verification workflow that requires fresh evidence before claiming work is complete and uses test-driven development (TDD), where tests guide implementation.

In plain words
What is it for?
It helps write failing tests first, implement the smallest fix, refactor safely, enforce formatting during edits, and verify changes from the terminal.
Why use it?
It prevents unverified completion claims and encourages small, testable changes with checks for code quality.

Skill for Claude CodeCodex

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

Good fit It helps write failing tests first, implement the smallest fix, refactor safely, enforce formatting during edits, and verify changes from the terminal.

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/jxoesneon/ciel/ciel-quality-and-verification"><img src="https://agentmods.dev/badge/skills/jxoesneon/ciel/ciel-quality-and-verification.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 546 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.00546
Opus 5 $0.00013 $0.00273
Sonnet 5 $0.00005 $0.00109
Haiku 4.5 $0.00003 $0.00055

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

Security

Grade A, and why

ciel-quality-and-verification 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/ciel-quality-and-verification/SKILL.md · 56 lines

What it actually says

CIEL ADAPTATION: Quality & Verification (The Integrity Layer)

This skill formalizes the "Evidence before Claims" mandate. it prioritizes fresh verification and disciplined implementation loops.

The Iron Law (Hard Gate)

NO COMPLETION CLAIMS WITHOUT FRESH VERIFICATION EVIDENCE. If you haven't run the verification command in the CURRENT message, you cannot claim it passes.

TDD implementation loop

  1. RED: Write a failing test that reproduces the bug or exercises the new feature.
  2. GREEN: Apply the minimal implementation required to pass the test.
  3. REFACTOR: Improve code quality while maintaining GREEN state.
  4. Coverage: Mandate 80% line coverage for all production logic.

Write-Time Enforcement (Plankton)

  • Silent Phase: Run formatters (Ruff/Biome) on every file edit.
  • Delegation Phase: Route complex violations to specific model tiers (Haiku for style, Sonnet for logic, Opus for types).
  • Enforcement: Block legacy package managers (pip/npm) in favor of modern runtimes (uv/bun).

Terminal Ops (Evidence-First)

  • Workflow: surface -> Evidence -> Action -> Status.
  • Integrity: Distinguish between "changed locally" and "verified locally."
  • Verification: Name the specific command or test that proves the fix.

Anti-Patterns

  • The "Should" Trap: Claiming code is correct because it "should work" or "looks right."
  • Amnesiac Regression: Passing a test once and then moving on without verifying the RED-GREEN cycle.
  • Linter-Passing ≠ Compiler-Passing: Claiming success because the linter is clean while the build is broken.
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 · 56 lines · 25 tokens per session scan A eb1a38b159b6

Subscribe to this mod's changes

ciel-quality-and-verification 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 546 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

mutation-testing

Use when adding or reviewing a gate, guard rule, CI grep, or test assertion in this plugin's own scripts — and whenever a suite is green and you need to know whether that means anything. Runs scripts/mutate.sh, which breaks the code on purpose and reports which assertions failed to notice. Triggers from code-reviewer…

vmobifystudio/app-dev-team · 83 tokens

aidex-bugfix

Use when fixing a bug, resolving a reported issue, or when something is broken and needs a test-driven fix — investigate root cause, write a failing regression test (RED), implement the minimum fix, confirm the test passes (GREEN), then commit test and fix together. Fires on "fix this bug", "this is broken", "it's not…

yacb2/aidex · 144 tokens

workflow-test-fix

Unified test-fix pipeline combining test generation (session, context, analysis, task gen) with iterative test-cycle execution (adaptive strategy, progressive testing, CLI fallback). Triggers on "workflow-test-fix", "test fix workflow".

catlog22/Claude-Code-Workflow · 52 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

tdd-guide

Test-Driven Development specialist enforcing write-tests-first methodology. Use PROACTIVELY when writing new features, fixing bugs, or refactoring code. Ensures 80%+ test coverage.

Kacper0199/Opencode-Ultrathinker · 42 tokens

build-test

Run the project's build / typecheck / lint / test commands and emit the build.passing + tests.passing signals devloop convergence reads.

nexu-io/open-design · 31 tokens