project-ContemPlace: Command for Claude Code

.claude/commands/audit-captures.md

audit-captures is a command for Claude Code from freegyes/project-ContemPlace. It costs 0 tokens per session (3,291 once invoked), scanned A, original, MIT.

A review command for comparing recent real-world notes or captures with a product's design principles. It identifies where the product's stated promises differ from what users actually experience.

In plain words
What is it for?
Use it to review recent captures, filter them by a tag, find recurring product problems, and recommend concrete changes.
Why use it?
It turns scattered observations into a focused list of gaps and improvement ideas. It also uses earlier audits to choose what new material to review.

Command for Claude Code

Written for Claude Code: $ARGUMENTS substitution. Also seen: mentions CLAUDE.md.

This is freegyes/project-ContemPlace's own configuration. It tells Claude Code how to work on project-ContemPlace itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything project-ContemPlace configures →

Reuse

Borrowing it

Nothing to install: this file belongs to freegyes/project-ContemPlace. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/freegyes/project-ContemPlace/main/.claude/commands/audit-captures.md
Clone the repo
git clone --depth 1 https://github.com/freegyes/project-ContemPlace

Made for: Claude Code.

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 audit-captures

README.md
[![agentmods](https://agentmods.dev/badge/commands/freegyes/project-contemplace/audit-captures/github.svg)](https://agentmods.dev/commands/freegyes/project-contemplace/audit-captures)
Your own site
<a href="https://agentmods.dev/commands/freegyes/project-contemplace/audit-captures"><img src="https://agentmods.dev/badge/commands/freegyes/project-contemplace/audit-captures/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 audit-captures

Your own site · 80×15
<a href="https://agentmods.dev/commands/freegyes/project-contemplace/audit-captures"><img src="https://agentmods.dev/badge/commands/freegyes/project-contemplace/audit-captures.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 3,291 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00000 $0.03291
Opus 5 $0.00000 $0.01646
Sonnet 5 $0.00000 $0.00658
Haiku 4.5 $0.00000 $0.00329

Measured 8d ago against content hash 0375ae2f7841, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

audit-captures scanned grade A with 1 finding 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 8d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -s "${SUPABASE_URL}/rest/v1/capture_profiles?name=eq.default&select=capture_voice" \
.claude/commands/audit-captures.md · 197 lines

How it starts

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

Audit captures

Analyze recent real-world captures against the product's design philosophy. Surface gaps between what the system promises and what it delivers, then recommend concrete improvements.

Arguments

$ARGUMENTS — number of recent fragments to analyze, or a tag filter like "tag:bookbinding" (fetches up to 15 matching notes). Default behavior: all fragments since the last audit date (up to 50). If no prior audit exists, default to 10. An explicit number overrides the smart default.

Workflow

Phase 1: Load everything in parallel

Maximize the first parallel batch. Launch all of these simultaneously — the ethos reads and the data fetches have no dependencies on each other:

Prior audit context (do this BEFORE the parallel batch — it determines the sample size): 0. Find the last audit date. MEMORY.md may be truncated past line 200, so do NOT rely on it being fully loaded. Instead:

  • Use Glob to find all audit_*.md files in the memory directory
  • Read the most recent one (sorted by filename date) to get: date, sample size, key findings, open recommendations
  • This determines the smart default: fetch all fragments since that audit date (up to 50)
  • If no audit files exist, this is the first audit — default to 10

Ethos reads:

  1. Read docs/philosophy.md — the 10 core principles
  2. Read docs/capture-agent.md — capture pipeline behavior, title model, linking logic, traceability rules
  3. Read mcp/src/capture.ts — the live SYSTEM_FRAME (structural contract the LLM actually receives)

Live capture voice (authoritative source — the migration seed can drift): 4. Fetch from the DB via Supabase REST API:

export $(grep -E '^(SUPABASE_URL|SUPABASE_SERVICE_ROLE_KEY)=' .dev.vars | xargs) && \
curl -s "${SUPABASE_URL}/rest/v1/capture_profiles?name=eq.default&select=capture_voice" \
  -H "apikey: ${SUPABASE_SERVICE_ROLE_KEY}" \
  -H "Authorization: Bearer ${SUPABASE_SERVICE_ROLE_KEY}"

Fragment data: 5. list_recent with the smart default limit (all since last audit, up to 50) or the explicit argument to get the sample set. Then filter by created_at to include only fragments newer than the last audit date. If the argument is an explicit number, use that directly without date filtering.

Read the full file on GitHub · 197 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. 8d ago First seen · 197 lines · 0 tokens per session scan A 0375ae2f7841

Subscribe to this mod's changes

audit-captures is a command published in the GitHub repository freegyes/project-ContemPlace (3 stars, last pushed 5mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 3,291 tokens. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.