answer-reviewer-questi…
For each reviewer question on a PR, recall implementation reasoning and compose a raw answer. Use when the user asks to \"answer reviewer questions\", \"draft…
Detect agentic coding infrastructure in a project: CLAUDE.md, AGENTS.md, installed skills, MCP servers, hooks, and cross-tool compatibility (Claude Code and Codex CLI). Returns structured findings about agentic readiness without applying changes. Use when the user asks to
$ npx -y skills add tobihagemann/turbo --skill review-agentic-setup --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/review-agentic-setupContext preview
The summary Claude sees to decide when to auto-load this skill.
Detect agentic coding infrastructure in a project: CLAUDE.md, AGENTS.md, installed skills, MCP servers, hooks, and cross-tool compatibility (Claude Code and Codex CLI). Returns structured findings about agentic readiness without applying changes. Use when the user asks to
name: review-agentic-setup description: "Detect agentic coding infrastructure in a project: CLAUDE.md, AGENTS.md, installed skills, MCP servers, hooks, and cross-tool compatibility (Claude Code and Codex CLI). Returns structured findings about agentic readiness without applying changes. Use when the user asks to \"review agentic setup\", \"check agentic setup\", \"agentic readiness\", \"is this project set up for AI coding\", or \"review AI coding setup\"."
Detect agentic coding infrastructure and flag gaps across Claude Code and Codex CLI conventions. Analysis only. Does not install or configure anything.
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).
Search for agentic coding configuration in the project. Classify findings into five categories:
| 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:
Check for both patterns when the project has agent instruction files.
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:
Both tools use the same SKILL.md format (YAML frontmatter with `name` and `description`). Projects can symlink one location to the other (e.g., `.agents/skills/` → `.claude/skills/`) to share skills across both tools. Check for symlinks.
| File | Used by | What to check | |---|---|---| | `.mcp.json` (project root) | Claude Code | Configured MCP servers with their types (stdio, http) | | `.claude/settings.json` | Claude Code | MCP server entries in project settings | | `.claude/settings.local.json` | Claude Code | MCP server entries in local settings (gitignored) | | `.codex/config.toml` (`[mcp_servers]`) | Codex | MCP server entries in project config |
List each detected server by name, type, and which tool configuration it belongs to.
| File | Used by | What to check | |---|---|---| | `.claude/settings.json` | Claude Code | Hook configurations (PreToolUse, PostToolUse, etc.) | | `.claude/settings.local.json` | Claude Code | Hook configurations in local settings (gitignored) | | `.codex/hooks.json` | Codex | Hook configurations (PreToolUse, PostToolUse, etc.) |
List each detected hook with its trigger event, command, and which tool configuration it belongs to.
Search CLAUDE.md and AGENTS.md content for file paths, URLs, or section headings that reference documentation. Also check the project root for:
| File or directory | What it indicates | |---|---| | `docs/` directory | Project documentation | | `CONTRIBUTING.md` | Contributing guidelines | | `TROUBLESHOOTING.md` | Known issues and fixes | | `ARCHITECTURE.md` | Architecture or design docs | | API docs or schema files referenced in agent instructions | API reference material |
For each category, assess agentic readiness:
Gap analysis considers the project's complexity. A single-file script doesn't need installed skills. A multi-module application benefits from CLAUDE.md with build commands and architecture notes.
After detection, assess which agentic tools the project supports:
| Signal | Compatibility | |---|---| | Has `AGENTS.md` but no `CLAUDE.md` | Codex-ready only. Claude Code does not read AGENTS.md. | | Has `CLAUDE.md` but no `AGENTS.md` | Claude Code-ready only. Codex does not read CLAUDE.md. | | Has both, but CLAUDE.md lacks `@AGENTS.md` import | Both files exist but instructions are siloed. Claude Code misses AGENTS.md content. | | Has both, and CLAUDE.md imports `@AGENTS.md` | Both tools supported. Shared instructions with tool-specific additions. | | Instruction files are symlinked | Both tools supported. Identical instructions. | | Has `.claude/skills/` but no `.agents/skills/` | Skills available to Claude Code only. | | Has `.agents/skills/` but no `.claude/skills/` | Skills available to Codex only. | | Skill directories are symlinked | Both tools supported. Shared skill set. | | MCP configured in one tool's config only | MCP servers available to that tool only. |
Flag any compatibility gaps as findings. A project that invests in one tool's config but not the other has a portability gap that may matter for team
A composable dev process for agentic coding harnesses, packaged as modular skills. Turbo has sibling editions for Claude Code and Codex. The Claude Code edition is production-tested.
For each reviewer question on a PR, recall implementation reasoning and compose a raw answer. Use when the user asks to \"answer reviewer questions\", \"draft…
Apply findings by making the suggested code changes. Applies accepted verdicts, escalates ambiguous findings to the user, and offers to note genuine…
Assess project-wide structural technical debt: complexity hotspots, deprecated API usage, duplication clusters, and architecture rot. Ranks findings by impact…
Project-wide health audit pipeline that fans out to all analysis skills in parallel, evaluates findings, and produces a unified report at .turbo/audit.md. Use…
Shared changelog conventions and formatting rules referenced by /create-changelog and /update-changelog. Not typically invoked directly.
Enforce existence, reuse, mirror, and symmetry principles to keep new code minimal and consistent with surrounding code. Use when writing new code in an…