mastermind-critical-review

mastermind-critical-review is a skill for Codex from xcrft/mastermind. It costs 63 tokens per session (1,532 once invoked), scanned A, original, MIT.

A review checklist and process for challenging a proposed design, task specification, implementation plan, or completion report. It checks assumptions, contracts, scope, evidence, and likely failure modes.

In plain words
What is it for?
Use it before approving important work or accepting an agent’s report. It is for critique and auditing, not for gathering raw code facts or implementing fixes.
Why use it?
It helps catch confident but unsupported plans before they become code, especially when changes affect authentication, billing, data migrations, public interfaces, or rollback.

Skill for Codex

Written for Codex: agents/openai.yaml present. Also seen: mentions subagents.

Good fit Use it before approving important work or accepting an agent’s report. It is for critique and auditing, not for gathering raw code facts or implementing fixes.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/xcrft/mastermind/mastermind-critical-review
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 xcrft/mastermind --skill mastermind-critical-review
Clone the repo
git clone --depth 1 https://github.com/xcrft/mastermind

Made for: 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 mastermind-critical-review

README.md
[![agentmods](https://agentmods.dev/badge/skills/xcrft/mastermind/mastermind-critical-review/github.svg)](https://agentmods.dev/skills/xcrft/mastermind/mastermind-critical-review)
Your own site
<a href="https://agentmods.dev/skills/xcrft/mastermind/mastermind-critical-review"><img src="https://agentmods.dev/badge/skills/xcrft/mastermind/mastermind-critical-review/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 mastermind-critical-review

Your own site · 80×15
<a href="https://agentmods.dev/skills/xcrft/mastermind/mastermind-critical-review"><img src="https://agentmods.dev/badge/skills/xcrft/mastermind/mastermind-critical-review.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 63 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,532 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00063 $0.01532
Opus 5 $0.00032 $0.00766
Sonnet 5 $0.00013 $0.00306
Haiku 4.5 $0.00006 $0.00153

Measured yesterday against content hash f4df1a7a1dec, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

mastermind-critical-review 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 yesterday.

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/workflow/mastermind-critical-review/SKILL.md · 141 lines

How it starts

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

Mastermind Critical Review

Challenge a proposed design or completed change before it becomes accepted work. The goal is not to be negative — it's to prevent confident wrongness.

This is the rubric; the spawnable agent that applies it is the mastermind-critic subagent in independent context.

When to use

  • Before approving a non-trivial task spec.
  • Before accepting a design that touches auth, billing, migrations, public APIs, data loss, or rollback complexity.
  • When a planner asks a critic to stress-test an approach.
  • When an auditor needs to judge whether executor claims are supported.
  • When a design "sounds reasonable" but hasn't been checked against failure modes.

Do NOT use for raw fact gathering — use [[mastermind-codegraph-research]] first when symbol existence, callers, imports, file paths, or blast radius are unknown. Do NOT use to implement fixes; this produces critique, not code.

Security scope: if the review surfaces security-sensitive scope (auth, tools, secrets, delegation, supply chain, prompt injection), don't go deep inline — spawn mastermind-security-auditor and fold its verdict into the critique.

Inputs

  • Proposal — the design, spec, report, or plan under review.
  • Evidence — codegraph facts, files, test results, logs, or an explicit "evidence unavailable".
  • Scope — what the review may challenge.
  • Lens (optional) — security, performance, simplicity, migration safety, API compatibility, or testing.

If evidence is missing, say so. Missing mmcg alone does not invalidate a review when source, test, or runtime evidence establishes the required facts. An unsupported claim is unknown; a claim contradicted by evidence is a finding.

Review protocol

Run in order.

  1. Evidence — Which claims are backed by local evidence vs assumption? Which named files/symbols/callers/contracts are unverified? Is the design relying on memory or guesswork? Code structure named without evidence is a finding.
  2. Contract — Does this change an API, data shape, permission boundary, event/CLI/config contract, or persisted behavior? Are existing consumers covered? Is backward compatibility explicit? Are error shapes and edge cases preserved? Hidden contract changes are high severity.
  3. Failure mode — What happens on retry, partial failure, concurrency, stale data, empty/malformed/duplicated/out-of-order input, or a slow/missing/misbehaving dependency? Report only the plausible ones.
  4. Scope — Solving the stated problem or adding future-proofing? Is every abstraction justified by ≥ 2 current use cases? Is unrelated cleanup mixed in? Is the path larger than the problem requires? Scope creep is a finding even when the extra work seems useful.
  5. Test & verification — Would the proposed tests fail before the fix? Do they cover the contract that can break? Are integration paths covered where unit tests aren't enough? Are VERIFY commands concrete and runnable? "Run tests" is not a sufficient plan for behavior-changing work.
  6. Rollback & observability — Safely revertible? Does it need a migration/backfill/feature flag? Would production failure be visible? Require observability only when the risk justifies it.

Read the full file on GitHub · 141 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. yesterday Changed · +24 lines f4df1a7a1dec
  2. 9d ago First seen · 117 lines · 63 tokens per session scan A 82f83e8b12be

Subscribe to this mod's changes

mastermind-critical-review is a skill published in the GitHub repository xcrft/mastermind (11 stars, last pushed today), licensed MIT. It adds 63 tokens to every session and 1,532 once invoked, about $0.0003 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

projectatlas

Use ProjectAtlas as the atlas-first orientation layer before broad source reads, with MCP-first task startup, short-alias worktree registration and routing, safe targeted initialization, ranked navigation, exact or federated graph evidence, purpose curation, health, lint, and repository-wide token reporting.

styler-ai/ProjectAtlas · 60 tokens

truecourse-hooks

Install, configure, or remove the TrueCourse pre-commit hook.

truecourse-ai/truecourse · 17 tokens

codex-coding-plugin

Build, review, or fix ProjectAtlas plugin/runtime installer integration for Codex, Claude Code, and OpenCode, especially version convergence, stale ProjectAtlas cache repair, MCP config generation, skill artifacts, host smoke tests, and fake-host tests for ProjectAtlas releases.

styler-ai/ProjectAtlas · 59 tokens

repo-harness

Route explicit repo-harness setup, planning, execution, verification, and handoff actions through deterministic repository state.

Ancienttwo/repo-harness · 26 tokens

cymbal

Tree-sitter indexed code navigator. Use the cymbal CLI — not Read, Grep, Glob, or Bash — for finding where symbols are defined, tracing callers and callees, locating interface implementations, understanding the impact of a change, and mapping imports across an existing codebase. Returns precise, token-efficient…

1broseidon/cymbal · 89 tokens

obsidian-memory

Cross-project long-term memory over an Obsidian brain vault: recall relevant notes before a task, and persist distilled conclusions (decisions, pitfalls, solutions, progress) back after a task. The vault is an optional aggregation/projection layer — repo-local artifacts stay the per-project source of truth, and sync…

Ancienttwo/repo-harness · 212 tokens