auditing-progress

auditing-progress is a skill for Claude Code, Codex from prime-radiant-inc/iterative-development. It costs 44 tokens per session (923 once invoked), scanned A, original, Apache-2.0.

A post-iteration audit workflow that checks whether software behavior has enough reliable evidence. It examines new work deeply, rechecks affected existing behavior, and runs a small set of high-value regression checks.

In plain words
What is it for?
Use it after an iteration to audit acceptance criteria, verify changed scenarios, detect regressions, and update the project's behavior evidence.
Why use it?
It helps catch missing tests and regressions after development work is marked complete. It also ensures that evidence exists at the right level, such as unit, integration, or end-to-end checks.

Skill for Claude CodeCodex

Part of the iterative-development plugin — 6 skills shipped together

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/prime-radiant-inc/iterative-development/auditing-progress
Any agent
npx skills add prime-radiant-inc/iterative-development --skill auditing-progress
Clone the repo
git clone --depth 1 https://github.com/prime-radiant-inc/iterative-development

Made for: Claude Code, Codex.

Or install iterative-development, the plugin that ships this one along with the rest of its 6 skills.

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 auditing-progress

README.md
[![agentmods](https://agentmods.dev/badge/skills/prime-radiant-inc/iterative-development/auditing-progress.svg)](https://agentmods.dev/skills/prime-radiant-inc/iterative-development/auditing-progress)
Your own site
<a href="https://agentmods.dev/skills/prime-radiant-inc/iterative-development/auditing-progress"><img src="https://agentmods.dev/badge/skills/prime-radiant-inc/iterative-development/auditing-progress.svg" alt="Measured on agentmods" height="20"></a>
Per session 44 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 923 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00044 $0.00923
Opus 5 $0.00022 $0.00462
Sonnet 5 $0.00009 $0.00185
Haiku 4.5 $0.00004 $0.00092

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

Security

Grade A, and why

auditing-progress 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 5d 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/auditing-progress/SKILL.md · 80 lines

How it starts

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

Auditing Progress

Overview

Runs after every iteration as part of the planning cycle. Verifies behavior evidence quality in three tiers using parallel adversarial review (PAR) — two paired auditor subagents evaluate the same work in parallel with competitive framing.

The audit answers: "Does durable, reusable evidence exist at the correct seam for every externally observable behavior this iteration touched?"

When to Use

Invoked by iterative-development after every running-an-iteration call, before picking the next iteration.

Audit Process

1. Partition the audit into three tiers

Read the per-epic requirement files in docs/superpowers/iterations/requirements/, docs/superpowers/iterations/behavior-scenarios.md, and docs/superpowers/iterations/behavior-corpus.md:

  • Tier 1 — Deep evidence: stories marked done:ITER-<current> and scenarios added or updated in this iteration. Audit every AC and its proof obligation thoroughly.
  • Tier 2 — Impacted behavior: all existing scenarios whose owning stories had code changes in this iteration (even if those stories were completed in earlier iterations). Verify the scenarios still pass.
  • Tier 3 — Sentinel corpus: all scenarios with run cadence sentinel in the behavior corpus. Compare against the pre-iteration baseline from running-an-iteration step 3.

2. Dispatch paired auditor subagents (PAR)

Following the PAR methodology in skills/shared/parallel-adversarial-review.md:

  1. Build the auditor prompt using auditor-subagent-prompt.md. Include ALL THREE tiers:
    • Tier 1: full story cards with proof obligations + new/changed scenario cards
    • Tier 2: impacted scenario cards + their current test results
    • Tier 3: sentinel scenario IDs + baseline results + current results
  2. Wrap in competitive framing from skills/shared/par-reviewer-wrapper.md
  3. Dispatch TWO auditor subagents in parallel
  4. Wait for both to return

3. Aggregate findings

Following PAR aggregation rules:

  • Same finding from both auditors → one finding, high confidence
  • Finding from only one auditor → separate finding, still actionable
  • Severity disagreement → take the more severe assessment, always fix it

Read the full file on GitHub · 80 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 5d ago First seen · 80 lines · 44 tokens per session scan A b8a1897eb817

Subscribe to this mod's changes

auditing-progress is a skill published in the GitHub repository prime-radiant-inc/iterative-development (177 stars, last pushed 3mo ago), licensed Apache-2.0. It adds 44 tokens to every session and 923 once invoked, about $0.0002 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-30.

Related

Other skills, from other repositories

design

Create a doc-as-code design package from a PRD or SPEC. Conditionally generates C4 diagrams (Context/Container/Component), sequence diagrams, ER diagram + Data Dictionary, OpenAPI 3.0, AsyncAPI 3.0, ADRs, domain glossary, state diagrams, and deployment view as Mermaid-rendered Markdown files. Use when PM mentions…

cryndoc/polisade-orchestrator · 162 tokens

tasks

Decompose a PLAN / SPEC / FEAT / BUG / DEBT / CHORE into atomic TASK-NNN items ready for the implement flow, via a clean-context subagent. Use when PM mentions "create tasks", "generate TASKs", "break down into tasks", "tasks from PLAN", "break this into tasks", "декомпозиция", "сделай таски", or any request to…

cryndoc/polisade-orchestrator · 127 tokens

design-corpus

EXPERIMENTAL (Claude Code only). Apply a SPEC increment to a single LIVING architecture corpus under docs/architecture/ instead of a per-SPEC silo package — treats docs as event-sourcing (SPEC = commit, corpus = working tree), so C4 Context/Container, glossary and the data model stay system-wide and never drift across…

cryndoc/polisade-orchestrator · 166 tokens

continue

Autonomous work — find and execute ready tasks.

cryndoc/polisade-orchestrator · 11 tokens

prd

Create a full Product Requirements Document (PRD-NNN) via a structured PM interview — for large initiatives that justify the overhead. Use when PM mentions "create PRD", "write product requirements", "PRD document", "product brief", "requirements doc", "напиши PRD", "создай PRD", or any request to capture a full…

cryndoc/polisade-orchestrator · 121 tokens

review-pr

Run a quality review on an open pull request (by PR number or linked TASK), externally via codex or internally via a clean-context self-review, and post the verdict. Use when PM mentions "review PR", "PR review", "review pull request", "quality review", "review this pr", "сделай ревью pr", or any request to evaluate…

cryndoc/polisade-orchestrator · 113 tokens