review-flow: Skill for Claude Code

.claude/skills/agent-creator/SKILL.md

agent-creator is a skill for Claude Code from DGouron/review-flow. It costs 48 tokens per session (1,655 once invoked), scanned A, original, MIT.

A guide for designing specialized Claude Code agents, which are focused assistants for particular programming jobs. It also covers multi-agent workflows where several specialized assistants coordinate.

In plain words
What is it for?
Use it to create or improve a specialized agent, swarm sub-agent, or multi-agent process. It explains how to connect entry-point skills, agent descriptions, and preloaded skills.
Why use it?
It helps turn a vague assistant into one with a defined role, relevant preloaded skills, and a reusable workflow. This makes the agent's responsibilities and supporting knowledge clearer.

Skill for Claude Code

Written for Claude Code: PreToolUse hook event. Also seen: reads .claude/ paths; mentions subagents; mentions Claude Code.

This is DGouron/review-flow's own configuration. It tells Claude Code how to work on review-flow 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 review-flow configures →

Reuse

Borrowing it

Nothing to install: this file belongs to DGouron/review-flow. 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/DGouron/review-flow/master/.claude/skills/agent-creator/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/DGouron/review-flow

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 agent-creator

README.md
[![agentmods](https://agentmods.dev/badge/skills/dgouron/review-flow/agent-creator.svg)](https://agentmods.dev/skills/dgouron/review-flow/agent-creator)
Your own site
<a href="https://agentmods.dev/skills/dgouron/review-flow/agent-creator"><img src="https://agentmods.dev/badge/skills/dgouron/review-flow/agent-creator.svg" alt="Measured on agentmods" height="20"></a>
Per session 48 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,655 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.00048 $0.01655
Opus 5 $0.00024 $0.00827
Sonnet 5 $0.00010 $0.00331
Haiku 4.5 $0.00005 $0.00166

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

Security

Grade A, and why

agent-creator 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 7d 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/agent-creator/SKILL.md · 203 lines

How it starts

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

Agent Creator

Activation

This skill activates for:

  • Creating a new specialized agent (sub-agent, swarm agent)
  • Designing a multi-agent workflow
  • Optimizing an existing agent
  • Creating a feature-specific or domain-specific agent

Core Principle

A feature-specific agent with a targeted persona always outperforms a generic agent.

❌ "You are a senior backend engineer"
✅ "You are a TDD implementation agent for the ReviewFlow Clean Architecture Fastify/TypeScript project"

Orchestration Architecture

Skill (user entry point, triggers)
  → Agent .claude/agents/*.md (targeted persona, preloaded skills)
    → Skill (knowledge injected into agent context)
Level Role Location
Skill Entry point, orchestration .claude/skills/<name>/SKILL.md
Agent Autonomous execution, dedicated context .claude/agents/<name>.md
Skill (preloaded) Knowledge injected at startup skills: in agent YAML

Agent vs Inline Prompt

Criteria Agent .claude/agents/ Inline prompt
Skills preloaded skills: [tdd, architecture] Must read manually
Reusable From any skill Locked in one skill
Configuration model, maxTurns, permissions, tools, hooks Limited to Agent tool
Discoverability Visible in .claude/agents/ Hidden

Rule: ALWAYS create .claude/agents/<name>.md. Never inline prompts in references/.

Creation Workflow

Phase 1: INTAKE — Define the need

Before creating the agent, clarify:

  1. What problem does it solve? — One sentence, not a paragraph
  2. What is its scope? — Files, modules, or full codebase
  3. How often will it be used? — One-off or recurring
  4. Does a skill/agent already cover this? — Check .claude/skills/ AND .claude/agents/
  5. What is its expected output? — Files created, report, refactoring
  6. Which existing skills should it know? — For preloading

Phase 2: DESIGN — Create the agent file

Read the full file on GitHub · 203 lines

Files

What ships with it

3 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. 7d ago First seen · 203 lines · 48 tokens per session scan A d571981e7a9f

Subscribe to this mod's changes

agent-creator is a skill published in the GitHub repository DGouron/review-flow (42 stars, last pushed 4d ago), licensed MIT. It adds 48 tokens to every session and 1,655 once invoked, about $0.0002 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

community-research-insight

Extract structured insight briefs from community research transcripts or notes. Produces pain points, stakeholder needs, opportunity maps, risks, and follow-up questions. Requires human review before publication.

clawdotnet/openclaw.net · 41 tokens

docs

Use when documentation generally needs to catch up with a branch before pushing or merging, covering internal developer docs, external customer-facing docs, and release notes together — "update the docs", "do a docs pass before I merge", "make sure everything's documented". Prefer this when no single documentation…

The01Geek/prflow · 97 tokens

install-jazz-github-action

Set up Jazz as a GitHub Action for automated PR code review and on-demand /jazz PR assistance. Use when the user asks to add Jazz to CI, create a GitHub Action workflow, set up PR review automation, enable /jazz commands on PRs, or integrate Jazz with GitHub.

lvndry/jazz · 69 tokens

analysis-provenance

Identify code ownership before modifying validators or linters. Checks file headers for provenance indicators, reviews documentation, and determines provenance as UPSTREAM, LOCAL, VENDOR, or UNKNOWN. Prevents accidental modification of upstream tools.

rjmurillo/ai-agents · 48 tokens

pir-action-tracker

Parses Post-Incident Review (PIR) pages in a Confluence space, fetches live status from referenced Jira tickets, updates action item tables with current status and due dates, marks completed PIRs with a visual closure panel, and surfaces any overdue actions for follow-up. Designed for Customer Success, Support, and…

Perseus-Computing-LLC/perseus · 78 tokens

pull-request-automation

Audits and improves the pull request workflow for a GitHub repository. Covers PR description templates, auto-labelling, CODEOWNERS, PR size checks, and branch protection rules. Invoked when the user asks to improve the PR process, set up PR automation, or add a PR template.

soulcodex/agentic · 65 tokens