review-agentic-setup

review-agentic-setup is a skill for Claude Code, Codex from tobihagemann/turbo. It costs 95 tokens per session (1,801 once invoked), scanned A, original, MIT.

A project-level checker for coding-agent setup. It looks for instruction files, installed skills, MCP servers, hooks, and compatibility between Claude Code and Codex CLI.

In plain words
What is it for?
Use it to audit a repository’s agent instructions and tooling before asking an agent to work on the code.
Why use it?
It shows whether a project has the guidance and connections agents need, and points out missing or incomplete parts without changing anything.

Skill for Claude CodeCodex

Written for Claude Code and Codex: PreToolUse hook event, but also reads ~/.codex or $CODEX_HOME. Also seen: reads .claude/ paths; mentions CLAUDE.md; mentions Claude Code.

Good fit Use it to audit a repository’s agent instructions and tooling before asking an agent to work on the code.

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

Made for: Claude Code, 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 review-agentic-setup

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/tobihagemann/turbo/review-agentic-setup"><img src="https://agentmods.dev/badge/skills/tobihagemann/turbo/review-agentic-setup.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 95 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,801 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 warn 7 Sept 2026
SkillSpector: 1 finding, up to medium

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • medium Agent Snooping · line 53
    Skill enumerates or reads other installed skills. Access to other skills' SKILL.md files or the skills directory reveals prompt instructions, capabilities, and secrets that should be invisible to peer skills.
    Fix: Remove all code or instructions that list or read other skills' files or directories. Skills should operate independently; cross-skill access is a privilege escalation.
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.00095 $0.01801
Opus 5 $0.00048 $0.00901
Sonnet 5 $0.00019 $0.00360
Haiku 4.5 $0.00010 $0.00180

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

Security

Grade A, and why

review-agentic-setup 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 11d 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.

claude/skills/review-agentic-setup/SKILL.md · 165 lines

How it starts

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

Review Agentic Setup

Detect agentic coding infrastructure and flag gaps across Claude Code and Codex CLI conventions. Analysis only. Does not install or configure anything.

Scope

Agentic setup review always operates at the project level. Scope parameters (diff commands, file lists) are accepted but ignored.

When called standalone, use the git repository root as the project root (fall back to the current working directory if not in a git repo).

Step 1: Detect Infrastructure

Search for agentic coding configuration in the project. Classify findings into five categories:

Agent Instructions

File Read by What to check
CLAUDE.md (project root) Claude Code Exists? Sections present (project structure, conventions, build commands, rules)?
CLAUDE.md (subdirectories) Claude Code Any nested CLAUDE.md files for sub-module guidance?
AGENTS.md (root and subdirectories) Codex Exists? Content areas (setup, conventions, testing, architecture)?
AGENTS.override.md Codex Exists? Overrides AGENTS.md at the same directory level.
README.md Both Mentions AI-assisted development, agent workflows, or prompting guidance?

Read each file that exists and summarize its coverage areas. Note which tools can use it.

Claude Code does not read AGENTS.md directly. Projects share instructions across both tools by:

  • Import: CLAUDE.md includes @AGENTS.md to pull in shared content
  • Symlink: CLAUDE.md symlinked to AGENTS.md (or vice versa) so both tools read the same file

Check for both patterns when the project has agent instruction files.

Installed Skills

Check both skill locations. For each skill directory, read the SKILL.md frontmatter to extract name and description. Group skills by type:

Location Used by
.claude/skills/ Claude Code
.agents/skills/ Codex

Skill types:

  • Analysis — review, audit, or inspection skills
  • Workflow — multi-step process skills
  • Pipeline — skills that compose other skills
  • Utility — formatting, staging, committing, or other focused tools

Read the full file on GitHub · 165 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. 11d ago First seen · 165 lines · 95 tokens per session scan A f398066a0f8b

Subscribe to this mod's changes

review-agentic-setup is a skill published in the GitHub repository tobihagemann/turbo (402 stars, last pushed yesterday), licensed MIT. It adds 95 tokens to every session and 1,801 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-08-30.

Related

Other skills, from other repositories

plan-ceo-review

CEO/founder-mode plan review. Rethink the problem, find the 10-star product, challenge premises, expand scope when it creates a better product. Three modes: SCOPE EXPANSION (dream big), HOLD SCOPE (maximum rigor), SCOPE REDUCTION (strip to essentials). Originally from Garry Tan's gstack…

SZoloth/skill-pack · 90 tokens

master

Turn reference docs into active mastery through retrieval practice, case binding, and scenario simulation. Combines Skycak (learning science) and Chin (expertise acceleration) frameworks. Use when you want to deeply learn material, not just read it.

SZoloth/skill-pack · 50 tokens

upskilling-coach

Expert coach for learning, mastering, and upskilling in any domain. Use when the user wants to learn, master, improve, upskill, get better at, or get coached on any topic. Helps build consistent practice habits, identify prerequisites, design efficient learning loops, avoid common pitfalls, maintain discipline, and…

SZoloth/skill-pack · 90 tokens

agentic-review

Deep multi-agent code review for local changes. Inspired by AmpCode's agentic review. Use when you want comprehensive analysis of staged changes, unstaged changes, specific commits, or branch differences. Spawns parallel specialized agents (security, performance, patterns, architecture) and synthesizes actionable…

SZoloth/skill-pack · 71 tokens

design-swarm

Orchestrate a team of 10 design agents for holistic UI audit, ideation, and implementation. Use when: "design swarm", "holistic audit", "design review with all lenses", "full design analysis". Modes: audit, ideate, implement (any combination). Targets: screenshots, URLs, file paths, or text briefs.

SZoloth/skill-pack · 74 tokens

qa

Full QA on all session changes using Codex as a second pair of eyes. Use when user says "QA", "full QA", "QA my changes", "QA all your changes", or "use codex to review". Runs git diff, sends changes to Codex for thorough review, and synthesizes findings.

SZoloth/skill-pack · 66 tokens