ms-review

ms-review is a command for Claude Code from thixpin/pitway. It costs 0 tokens per session (1,088 once invoked), scanned A, a copy of milestone-review, MIT.

A role-based process for reviewing a project milestone, with steps to start the review, brief reviewers, record findings, create a report, and decide the outcome.

In plain words
What is it for?
It helps coordinate reviewers, collect their findings, produce a review report, and mark a milestone as accepted, needing revision, or rejected.
Why use it?
It keeps review work and decisions in one tracked process instead of leaving feedback scattered across separate conversations or files.

Command for Claude Code

Written for Claude Code: a Claude Code command (commands/*.md). Also seen: mentions subagents.

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 commands/thixpin/pitway/ms-review
Clone the repo
git clone --depth 1 https://github.com/thixpin/pitway

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 ms-review

README.md
[![agentmods](https://agentmods.dev/badge/commands/thixpin/pitway/ms-review.svg)](https://agentmods.dev/commands/thixpin/pitway/ms-review)
Your own site
<a href="https://agentmods.dev/commands/thixpin/pitway/ms-review"><img src="https://agentmods.dev/badge/commands/thixpin/pitway/ms-review.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,088 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin 100% copy Near-identical to another mod 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.00000 $0.01088
Opus 5 $0.00000 $0.00544
Sonnet 5 $0.00000 $0.00218
Haiku 4.5 $0.00000 $0.00109

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

Security

Grade A, and why

ms-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 6d 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.

Origin

This is a copy

100% identical to milestone-review — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

src/integrations/claude/commands/ms-review.md · 84 lines

How it starts

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


description: PitWay: Role-based milestone review workflow (start/brief/record/report/decide) argument-hint: <start|brief|record|report|decide>

milestone-review

Role: Orchestrator (start, brief, record, report) · Main Agent (decide)

pitway milestone-review start <id> [--roles <csv>] [--json]
pitway milestone-review brief <id> --role <role> [--json]
pitway milestone-review record <id> --role <role> --file <path> [--usage <json>] [--json]
pitway milestone-review report <id> [--json]
pitway milestone-review decide <id> --outcome accepted|revision_requested|rejected [--note <text>] [--json]

A role-based review workflow: PitWay manages review state (sessions, briefs, findings, decisions) — the driver runs the actual reviews. Usable against a draft, confirmed, in_progress, or review milestone; never against a completed or cancelled one.

Five steps, always in this order:

  • Select roles with the developer. milestone-review start <id> --roles <csv> opens a session (or, with --roles omitted on a TTY, presents a numbered multi-select). Multi-select is the developer's choice — offer a combination that fits the milestone, but never impose one. Three example combinations, quoted as examples, never enforced presets:
    • Architecture/execution milestone → developer,architect,devops
    • Product/UX milestone → developer,product,user
    • Business-impacting milestone → developer,architect,business
  • Dispatch one reviewer subagent per selected role. For each role, run milestone-review brief <id> --role <role> --json and pass ONLY that envelope to the dispatched reviewer — the same bounded-context discipline as a task dispatch's own bundle (../dispatch.md). A reviewer subagent runs unconfined (no worktree, no guard) and must never be asked to run pitway itself, edit the contract/tasks, or confirm anything — findings only.
  • Record each reviewer's findings verbatim. milestone-review record <id> --role <role> --file <yaml> accepts the brief's own findings YAML shape. Normalizing a reviewer's raw output into that shape is fine; inventing or embellishing a finding the reviewer didn't actually report is not. MUST: when the dispatched reviewer subagent's own tool result reports runtime usage, extract it and pass it as --usage '{"total_tokens": N, ...}' on this same call — the same propagation rule as a task dispatch's own completion (dispatch.md); never estimated or derived, and omitting --usage when none was reported correctly leaves that role's recorded usage null.
  • Present the report to the developer. milestone-review report <id> renders every recorded role's findings (severity-ordered), pending roles, and mechanically grouped conflicts/overlaps — read this to the developer, don't reconcile it yourself.
  • The developer decides. milestone-review decide <id> --outcome accepted | revision_requested | rejected [--note <text>] closes the session. accepted/revision_requested require every selected role recorded; rejected is the explicit path to abandon an unfinished or stale review. A revision_requested outcome names the two sanctioned revision paths (milestone-add --replace for a draft, milestone-confirm --amend for a confirmed milestone) — apply one, then reconcile the contract yourself; no review command ever writes contract.md or tasks.yaml.

Staleness: a session pins a content hash at start. If the milestone's contract/task content is revised mid-review (a real task-amend/--replace/--amend — never a task transition or milestone-confirm's own status promotion), brief/record refuse on the stale session; decide --outcome rejected abandons it, then start a fresh session.

Honesty: PitWay never runs a review, spawns a reviewer, or verifies reviewer independence — it only enforces the state machine above. A recorded finding is reviewer opinion-evidence, never proof that requires implementation or runtime verification; reconciling findings is always yours, never Core's. Decide before milestone-complete — a decided session keeps the review record readable against what actually shipped.

Read the full file on GitHub · 84 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. 6d ago First seen · 84 lines · 0 tokens per session scan A 6e5bfaba0186

Subscribe to this mod's changes

ms-review is a command published in the GitHub repository thixpin/pitway (19 stars, last pushed 4d ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,088 tokens. A static security scan graded it A with 0 findings. It is 100% identical to milestone-review, differing in 0 lines, and is treated as a copy.

Related

Other commands, from other repositories

catchup

This command was migrated to a skill in Claude Code 2.1.3. See: examples/skills/catchup/SKILL.md.

FlorianBruniaux/claude-code-ultimate-guide · 0 tokens

crear-skill

Crear, probar y mejorar skills de forma iterativa. Usa cuando el usuario dice "crear skill", "crear habilidad", "build skill", "create a skill", "skill development", "desarrollar skill", "nueva habilidad". Usa el workflow: draft → test → review → improve → repeat con evaluación cuantitativa y qualitative review.

doncheli/don-cheli-sdd · 70 tokens

capturar

Capturar ideas y notas sin interrumpir el flujo de trabajo. Usa cuando el usuario dice "capturar idea", "quick note", "nota rápida", "grab this", "take a note", "guardar idea", "note to self", "capture thought", "I should remember", "guardar esto". Guarda en memoria persistente sin romper el contexto actual.

doncheli/don-cheli-sdd · 74 tokens

cerrar-sesion

Ritual de cierre de sesión con auditoría, calidad, aprendizajes y contexto para la próxima sesión.

doncheli/don-cheli-sdd · 21 tokens

voice

Integrar con Claude Code Voice Mode para dictar specs y requirements por voz. Usa cuando el usuario dice "voice", "dictar", "dictate specs", "voice mode", "dictar requerimientos", "speech to text", "voice input", "hablar specs", "dictate", "voice integration". Configura Voice Mode para dictar specs y requirements sin…

doncheli/don-cheli-sdd · 78 tokens

historial

Listar sesiones pasadas guardadas en el historial.

doncheli/don-cheli-sdd · 10 tokens