review

review is a skill for Claude Code from AcKeskin/contexture. It costs 108 tokens per session (7,133 once invoked), scanned A, original, MIT.

A code-audit tool that checks a project against its architectural rules and reports places where the implementation has drifted from them.

In plain words
What is it for?
Use it to review a whole project or selected files, inspect architectural drift, and propose corrective changes for confirmation.
Why use it?
It helps find dead code, inconsistent structure, and missing or weakened patterns before those problems spread through the project.

Skill for Claude Code

Written for Claude Code: $CLAUDE_PROJECT_DIR variable. Also seen: reads .claude/ paths.

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/ackeskin/contexture/review
Any agent
npx skills add AcKeskin/contexture --skill review
Clone the repo
git clone --depth 1 https://github.com/AcKeskin/contexture

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 review

README.md
[![agentmods](https://agentmods.dev/badge/skills/ackeskin/contexture/review.svg)](https://agentmods.dev/skills/ackeskin/contexture/review)
Your own site
<a href="https://agentmods.dev/skills/ackeskin/contexture/review"><img src="https://agentmods.dev/badge/skills/ackeskin/contexture/review.svg" alt="Measured on agentmods" height="20"></a>
Per session 108 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 7,133 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.1 $0.00108 $0.07133
Opus 5 $0.00054 $0.03566
Sonnet 5 $0.00022 $0.01427
Haiku 4.5 $0.00011 $0.00713

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

Security

Grade A, and why

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 2d 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/review/SKILL.md · 396 lines

How it starts

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

review

The review organ. Consumes discover, deliver, the architectural-rules tree, and routes corrections through capture.

Prep prevents drift by priming before code is written. Review detects drift after the fact and proposes concrete cleanups. Different jobs, complementary.

When to run

  • User types /review / /review <path> / /review --since <ref>.
  • Natural language: "review this", "audit the architecture", "check for drift", "look for dead code".
  • Do not auto-fire. No session-end trigger, no task-end trigger, no hook-based trigger. Continuous monitoring is deliberately parked. User-invoked only.

Inputs

  • Scope argument (optional). Determines which files the scan covers.
  • Working directory$CLAUDE_PROJECT_DIR or cwd. Anchors project context and .claude/architecture.md lookup.
  • Git repo presence. Enables --since scoping, TODO-age checks, and (optional) open/closed commit-history analysis. Degrade gracefully when absent.

Procedure

1. Resolve scope

Form Resolution
/review (no args) Entire project — every file under the project root, respecting .gitignore
/review <path> Directory (recursive) or single file
/review --since <ref> git diff <ref>..HEAD --name-only — only changed files. Bail with a clear message if not a git repo. Skips Phase-1 orientation (§2c) and the persistent artefact (§7b) — --since runs are ephemeral by nature
/review --vault (combinable with any of the above) Same scan, plus a copy written to the Obsidian vault per §7c. The in-repo .claude/reviews/... artefact is still produced.
/review --expand (combinable with --vault) Force the vault artefact to use the subfolder layout (§7c) even when no threshold tripped. Useful when the user knows up front this review will accumulate iterations or attached discussion.
Natural language Infer from task text; default to entire project when unclear; narrow to a path when the user named a module. "Save this to Obsidian" / "write to the vault" / "put it in my notes" enables --vault.

Read the full file on GitHub · 396 lines

Files

What ships with it

4 files 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. 2d ago First seen · 396 lines · 108 tokens per session scan A 2aeb18f5d023

Subscribe to this mod's changes

review is a skill published in the GitHub repository AcKeskin/contexture (2 stars, last pushed 1mo ago), licensed MIT. It adds 108 tokens to every session and 7,133 once invoked, about $0.0005 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

debug-systematic

Systematic 4-phase debugging methodology for complex, intermittent, or mysterious issues. Use when investigating bugs, race conditions, or unexplained failures.

travisjneuman/.claude · 33 tokens

triage-issue

Verify an issue, persisted audit finding, or unresolved review finding against current code, classify it, and write only the contracted forge/ledger outcome. Supports independent batches and an immediate-fix review-finding route. Triggers: "triage-issue", "triage issue N", "triage this finding", "is this trigger met".

gtrabanco/agentic-workflow · 74 tokens

test-driven-development

Use when implementing any feature or bugfix, before writing implementation code. Red-Green-Refactor cycle ensures tests pass.

changoo89/claude-pilot · 29 tokens

Pair Programming

AI-assisted pair programming with multiple modes (driver/navigator/switch), real-time verification, quality monitoring, and comprehensive testing. Supports TDD, debugging, refactoring, and learning sessions. Features automatic role switching, continuous code review, security scanning, and performance optimization with…

spencermarx/open-code-review · 61 tokens

context-align

Checks AGENTS.md and SKILL.md files against the actual codebase for drift. Surfaces references to packages, directories, commands, or patterns that no longer match reality.

fending/context-engineering · 38 tokens

rapid-fix

Rapid bug fix workflow - auto-plan, execute, test, and close simple fixes in one command. Use for simple bug fixes, one-line changes, minor validation issues.

changoo89/claude-pilot · 38 tokens