Phase Review logo

Phase Review

Community
mcouthon
phase-review

Review implementation plans from the .tasks/ directory for flaws before committing — either a single phase (phase mode) or across all phases of a task for consistency (cross-phase analyze mode). Triggers on: 'use phase mode', 'review phase', 'review the plan', 'check phase', 'validate phase', 'review phase N', 'check the plan for phase', 'analyze phases', 'cross-phase review', 'check consistency across phases', 'analyze the task plan'.

Overview

Publishermcouthon
Repositoryagents
Skill namephase-review
Stars
79
Forks
11
Bundled files
Instructions only
LicenseMIT
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • Self-contained

    Everything the model needs lives in the instructions — no extra files to sync.

  • Open source

    Published by mcouthon on GitHub. Read the source before you install it.

Installation

Install the Phase Review AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/mcouthon/agents.git /tmp/agents
mkdir -p .claude/skills
cp -r /tmp/agents/generated/claude/skills/phase-review .claude/skills/phase-review
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Phase Review in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Phase Review on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Phase Review is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

Phase Plan Review

This skill has two modes. Pick by what you were asked to review.

Mode 1 — Single phase (default)

This is the only review pass this plan gets — never ask to be re-run on the same plan. Go over the plan for the provided phase in the linked task and make sure it has no flaws; make suggestions if there are changes you'd consider (keep the full context for the task in mind). Anything unresolved goes to the human as BLOCKING.

Tag every finding High / Medium / Low (same scale defined under ## File access below), one line per finding.

High is decided by criteria, not by judgement. A finding is High if any of these is true — and is otherwise not High:

  • (a) It cannot work as written. A named anchor, file, path, symbol or section does not exist in the live tree, or a step depends on something no earlier step creates.
  • (b) It contradicts an explicit instruction in task.md, AGENTS.md, or an ADR the task is bound by.
  • (c) Parallel/dependency conflict. ## Files Modified intersects another phase in the same parallel_group, or blocked_by / Deps disagree between state.json and task.md. (Already High under Mode 1's mechanical check below — this keeps the two scales consistent.)
  • (d) A required plan section is missing## Verification (with success criteria and a demo statement), ## Tests for any behaviour change, or ## Files Modified.
  • (e) A verification step is wrong against the live files — a stated command or grep that fails before the change lands, or passes whether or not it lands. A guard that cannot fail, or fails on arrival, is not a guard.
  • (f) It widens a tool permission, grant, hook or agents: scope not named in the task's approved scope.

Binding rule — the verdict is computed, not chosen:

  • one or more High findings → BLOCKING, always;
  • no High, at least one Medium or Low → APPROVED WITH SUGGESTIONS;
  • no findings → APPROVED.

Close with exactly one of APPROVED, APPROVED WITH SUGGESTIONS, or BLOCKING — [what must change, in one line a non-author can act on]. If the tags and the verdict disagree, the tags win — re-derive the verdict.

Do not tune the tag to reach a preferred verdict. Never soften a High to avoid BLOCKING; never tag a nitpick High to force attention. Cosmetic, stylistic and count-off-by-a-few findings are Low, never High. The criteria above are the whole test — a confidence percentage is not a severity and does not substitute for one.

If the phase has a parallel_group assigned, additionally check:

  • File overlap (mechanical): Read the ## Files Modified section from each phase plan in the same parallel group. Compute the intersection of their file lists. Flag any overlap as High severity — parallel phases must not modify overlapping files.
  • Shared state: Check if this phase reads state that another parallel phase writes (e.g., shared config files, database migrations that must be ordered). Flag as Medium severity if detected.

Mode 2 — Cross-phase analyze (opt-in, multi-phase tasks only)

Use when asked to analyze a task across its phases (e.g. "analyze phases", "check consistency across phases"). Skip for single-phase tasks — there is nothing to cross-check.

Read task.md (phase table, overview, goal) and ALL plan/*.md for the task, then cross-check the phases against each other and against the goal for:

  • Contradictions — phases that assume conflicting state, ordering, or interfaces.
  • Duplication — two phases doing the same work.
  • Gaps — a goal/overview item or a stated dependency with no owning phase.
  • Ordering/dependency — a phase that depends on the output of a later phase.
  • Parallel group safety — phases in the same parallel_group that modify overlapping files or share mutable state. Severity: High if file overlap, Medium if shared-state risk.
  • Dependency consistencyblocked_by edges in state.json match the Deps column in task.md. Flag mismatches as Medium severity.
  • Scope drift — a phase doing work outside the task goal.
  • Convention misalignment — phases that diverge from AGENTS.md Learned Patterns / project conventions (when an AGENTS.md is present).

File access

Do NOT modify task.md or any source code file, and never change a plan's own instructions. Write your findings as your response — that is what the orchestrating agent presents to the user for adoption or rejection.

Mode 1 — also persist them. Before returning, append the full tagged list to the phase plan you reviewed, as its last section (sibling of Builder's ## Verification Evidence), using Edit:

## Plan Review — findings (advisory; NOT implementation steps)

Verdict: [verdict], recorded [YYYY-MM-DD]. The plan above is authoritative — adopted
findings may already be applied.

- **[High|Medium|Low]** — [finding, one line]

This is the only edit you may make to a plan file, and it is what keeps the findings an orchestrator collapses at a checkpoint reachable by one path. Replace the section if one is already there rather than adding a second; write nothing at all when there are no findings. Mode 2 spans phases and has no single owning plan file — response only.

For cross-phase mode, structure findings as a list, each item:

  • Severity — High (blocks correct implementation) / Medium (likely rework) / Low (minor).
  • Phases involved — the phase numbers.
  • Issue — one line.
  • Recommended resolution — what to change (a suggestion; you do not apply it).

End with an overall consistency verdict (consistent / issues found) and a one-line summary.

Frequently asked questions

What does the Phase Review AI skill do?

Review implementation plans from the .tasks/ directory for flaws before committing — either a single phase (phase mode) or across all phases of a task for consistency (cross-phase analyze mode). Triggers on: 'use phase mode', 'review phase', 'review the plan', 'check phase', 'validate phase', 'review phase N', 'check the plan for phase', 'analyze phases', 'cross-phase review', 'check consistency across phases', 'analyze the task plan'.

Why use Phase Review on TypingMind?

Because you install it once and use it with any model. Phase Review is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Phase Review in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/mcouthon/agents/tree/main/generated/claude/skills/phase-review. TypingMind reads its SKILL.md and installs it as a skill you can enable per chat.

Which AI models can use Phase Review?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Phase Review?

As many as you like. As long as a model supports skills, you can use Phase Review with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Phase Review AI skill free?

Yes. It is published on GitHub by mcouthon under the MIT license. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇