calibration-flow

calibration-flow is a skill for Claude Code from odere-pro/claude-calibration. It costs 203 tokens per session (1,671 once invoked), scanned A, original, MIT.

A testing workflow for checking whether a multi-step agent process achieves its intended result and passes information correctly between steps.

In plain words
What is it for?
Use it to run workflows against prepared test cases, compare results with expected answers, and measure which steps were found or missed.
Why use it?
It finds problems in the behaviour of the whole workflow that a review of individual configuration files may miss.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: model in frontmatter; names the TodoWrite tool.

Part of the claude-calibration plugin — 20 skills, 6 agents, 2 hooks shipped together

Good fit Use it to run workflows against prepared test cases, compare results with expected answers, and measure which steps were found or missed.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/odere-pro/claude-calibration/calibration-flow
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 odere-pro/claude-calibration --skill calibration-flow
Clone the repo
git clone --depth 1 https://github.com/odere-pro/claude-calibration

Made for: Claude Code.

Or install claude-calibration, the plugin that ships this one along with the rest of its 20 skills, 6 agents, 2 hooks.

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 calibration-flow

README.md
[![agentmods](https://agentmods.dev/badge/skills/odere-pro/claude-calibration/calibration-flow/github.svg)](https://agentmods.dev/skills/odere-pro/claude-calibration/calibration-flow)
Your own site
<a href="https://agentmods.dev/skills/odere-pro/claude-calibration/calibration-flow"><img src="https://agentmods.dev/badge/skills/odere-pro/claude-calibration/calibration-flow/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 calibration-flow

Your own site · 80×15
<a href="https://agentmods.dev/skills/odere-pro/claude-calibration/calibration-flow"><img src="https://agentmods.dev/badge/skills/odere-pro/claude-calibration/calibration-flow.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 203 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,671 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.00203 $0.01671
Opus 5 $0.00102 $0.00835
Sonnet 5 $0.00041 $0.00334
Haiku 4.5 $0.00020 $0.00167

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

Security

Grade A, and why

calibration-flow 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.

The scan reads SKILL.md. This mod also ships 2 executable files (scripts/lint-fixtures.sh, scripts/score-flow.sh), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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/calibration-flow/SKILL.md · 124 lines

How it starts

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

echo "=== calibration-flow preprocessing ==="
PROJECT_DIR="${CLAUDE_PROJECT_DIR:-$(pwd)}"
SCR="${CLAUDE_SKILL_DIR}/scripts"
EXAMPLES="${CLAUDE_SKILL_DIR}/examples"
RULES_DIR="$(cd "${CLAUDE_SKILL_DIR}/../../rules" 2>/dev/null && pwd || echo UNKNOWN)"
echo "PROJECT_DIR=$PROJECT_DIR"
echo "SCR=$SCR"
echo "EXAMPLES=$EXAMPLES"
echo "SIG=$RULES_DIR/signatures.md"
echo "TIMESTAMP=$(date +%Y%m%d-%H%M%S)"
echo "NOW_ISO=$(date -u +%Y-%m-%dT%H:%M:%SZ)"
echo "GIT_HEAD=$(git rev-parse HEAD 2>/dev/null || echo not-a-git-repo)"
echo "DEFAULT_CASES=$PROJECT_DIR/.claude/fixtures"
if [ -d "$PROJECT_DIR/.claude/fixtures" ]; then echo "DEFAULT_CASES_EXISTS=yes"; else echo "DEFAULT_CASES_EXISTS=no"; fi
if [ ! -f "$SCR/score-flow.sh" ]; then echo "FLOW_SCRIPTS_NOT_FOUND=$SCR"; fi
echo "=== end preprocessing ==="

/claude-calibration:calibration-flow

You are the behavioural-flow evaluation flow. You grade whether a workflow (a chain of agents and skills) delivers its intent and keeps its handoffs sound — the half of evaluation /calibrate does not cover (it grades static config). You do this by running the workflow over a case set and diffing its findings against each case's oracle, with the verdict computed by the deterministic score-flow.sh. See docs/evaluating-agentic-workflows.md.

The arguments are: $ARGUMENTS. Resolve env vars (PROJECT_DIR, SCR, EXAMPLES, SIG, TIMESTAMP, NOW_ISO, GIT_HEAD) from the preprocessing block.

If the block printed FLOW_SCRIPTS_NOT_FOUND=..., print exactly:

calibration-flow: scripts/ not found.
→ The plugin install may be incomplete. Re-install or run /reload-plugins.

and stop.

Resolve the case set and mode

  • --cases <path> → that path is the case set. Otherwise default to $PROJECT_DIR/.claude/fixtures (NOT under .claude/calibration/, which is gitignored — your fixtures are source you commit).
  • --dry-run → the deterministic path only (no model run). If the default case set does not exist, fall back to this skill's own shipped $EXAMPLES so a dry-run always has something to score.
  • The first non-flag token is the workflow-id (the skill/agent under test). It is required for a real run; --dry-run does not need it.

Read the full file on GitHub · 124 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. 9d ago First seen · 124 lines · 203 tokens per session scan A 17fae0e1ac0f

Subscribe to this mod's changes

calibration-flow is a skill published in the GitHub repository odere-pro/claude-calibration (1 stars, last pushed 1mo ago), licensed MIT. It adds 203 tokens to every session and 1,671 once invoked, about $0.0010 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-31.

Related

Other skills, from other repositories

archetype-lint

This skill should be used when the user asks to "lint an archetype", "validate an archetype", "check archetype compliance", "check archetype rules compliance", or "run archetype rules". Applies 24 normative lint rules with ERROR/WARNING/INFO severity. Supports STRICT and PERMISSIVE modes. Reports violations only — it…

Cadasto/openehr-assistant-plugin · 130 tokens

code-quality

This skill should be used when implementing code quality standards, setting up linting/testing/security scans, enforcing coverage thresholds, or establishing CI/CD guardrails.

saitarrun/Devforge-ai · 33 tokens

testing

Language-agnostic testing standards for writing effective tests. Covers test structure, what to test, mocking, and coverage goals. Make sure to use this skill whenever writing tests, doing TDD, reviewing test coverage, or when code changes should have tests added; testing standards apply to all code, not just…

johanthoren/jeff · 79 tokens

playwright

Browser automation and end-to-end testing with Playwright. Use when building/testing frontends, automating user workflows, taking screenshots, validating UI state, filling forms, testing across browsers, or mentions "playwright", "E2E test", "browser automation", "screenshot".

saitarrun/Devforge-ai · 60 tokens

no-silent-pass

Write Python whose failures are visible and checks that actually fire — distinct sentinels for success and error, filters that narrow to nothing without reading as "all clear", output never discarded on a non-zero exit, and selftest cases proven red before they are trusted (mutate the fix, mutate it the other way too…

AleksandarBisevac/claude-plugins · 143 tokens

enterprise-test-suites

Comprehensive testing matrix spanning Unit, Integration, E2E (Playwright), Contract (Pact), Chaos/Fault-Injection, Mutation, Load/Stress (k6), and Security Fuzz testing.

saitarrun/Devforge-ai · 47 tokens