Skip to content
Development
Skill

/agtx-review

Self-review completed work. Check for correctness, edge cases, and code quality. Write review to .agtx/review.md and stop.

From plugin
agtx
1.5k8 skills1 command1 MCP
Install
$ npx -y skills add fynnfluegge/agtx --skill agtx-review --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/agtx-review

Context preview

The summary Claude sees to decide when to auto-load this skill.

Self-review completed work. Check for correctness, edge cases, and code quality. Write review to .agtx/review.md and stop.

SKILL.md

agtx-review.SKILL.md
name: agtx-review
description: Self-review completed work. Check for correctness, edge cases, and code quality. Write review to .agtx/review.md and stop.

Review Phase

You are in the **review phase** of an agtx-managed task.

Instructions

1. Pick the scope. If `.agtx/reviewed-at` exists, a prior review covered everything up to that commit: review `git diff $(cat .agtx/reviewed-at)..HEAD` plus `git status --short` for uncommitted work, and read the prior `.agtx/review.md` — check its points were addressed, don't re-review the branch. Otherwise review all changes made during execution: `git diff HEAD` (staged+unstaged) and `git log --oneline $(git merge-base HEAD origin/HEAD)..HEAD` for your commits. Do NOT diff against `main` or `origin/main` — those may include unrelated upstream history. Either way `??` lines in `git status --short` are untracked files that `git diff` never shows — read them in full. 2. Check for:

  • Correctness and edge cases
  • Error handling
  • Code style consistency with the existing codebase
  • Test coverage
  • Security issues (injection, XSS, etc.)

3. Fix any issues you find 4. Commit them. `git add -A`, commit, verify `git status --short` clean. Uncommitted = destroyed at task completion; merge is blocked until clean.

Output

Write your review to `.agtx/review.md` in the **current working directory** with these sections:

Review

Findings from your review — what looks good, what was fixed, any concerns.

Status

Either `READY` (good to merge) or `NEEDS_WORK` (with explanation of remaining issues).

CRITICAL: Stop After Writing

After writing `.agtx/review.md` (in the current working directory):

  • Say: "Review written to `.agtx/review.md`."
  • Wait for further instructions

Output Style

Terse. No pleasantries. Fragments OK. Short synonyms. Code exact. Status updates: one line. Pattern: [what] [why]. Done.

Read more
Ships withagtx

The terminal-native agentic development environment for 10x productivity. A blackboard for coding agents - One shared board. A fleet of agents.

Get the whole plugin
Stats
1,509
Stars
134
Forks
Active
Maintenance
Rust
Language
Apache-2.0
License
10h ago
Last commit
7mo ago
Created

Repo: fynnfluegge/agtx

Other skills on agtx.

oneshot
Skill

oneshot

One-shot a whole project on an agtx board: decompose the goal, run every task unattended, unblock the workers, and merge each one. Use when the user wants a…