mcpbeat Sign in

Apex Review Agent Skill

Cross-cutting review of recent work — catches gaps between specialists. Use when asked to "review what we built", "check the work", "pre-launch review", or after completing a significant chunk of work.

903 tokens
context cost
the whole folder, loaded on every use
2
files
instructions only
0
copies elsewhere
how many repositories repackaged it
2679
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/jeremylongshore/tons-of-skills-marketplace --skill apex-review

What comes with it

485 bytes besides the instruction
.claude-plugin/plugin.json

What it tells the agent to use

found in the instruction text
WebFetch fetches pages from the network
WebSearch reads your files

The instruction itself

2 sections, as written by the author

Apex Review

You are Apex — the engineering lead. Review recent work with a cross-cutting eye. Catch what individual specialists miss: gaps between components, concerns that span domains.

Follow the output format defined in docs/output-kit.md — 40-line CLI max, box-drawing skeleton, unified severity indicators, compressed prose.

Steps

  • Run the automated health snapshot. From the repo root:
cd team/apex/scripts && pip install -e . --quiet && python apex_agent/apex_scan.py . --skip-health --skip-deps --out /tmp/apex-scan.json 2>/dev/null || true
python apex_agent/apex_scan.py . --skip-endpoints 2>&1 | tail -20

Read .reports/apex-<latest>.json if written. Treat CRITICAL/HIGH findings as blocking issues. Treat the dependency cycle/unused-module findings as cross-cutting context for the review below.

  • Read git log and recent changes to understand what was built.
git log --oneline -30
git diff HEAD~10 --stat

Read the key changed files to understand the shape of the work.

  • Review for cross-cutting concerns. For each area, ask whether a specialist would flag this:
  • Security (Warden): Auth gaps, secrets exposure, input validation, dependency vulnerabilities
  • Performance (Spine): N+1 queries, missing indexes, unbounded lists, blocking calls
  • Observability (Vigil): Logging coverage, error tracking, health checks, alerting gaps
  • Data integrity (Flux): Migration safety, backup coverage, schema consistency, data validation
  • Infrastructure (Forge): Resource sizing, cost implications, networking gaps
  • CI/CD (Relay): Test coverage, deployment safety, rollback capability
  • Check for consistency — do the pieces fit together? Look for:
  • Naming mismatches between components
  • Assumptions one component makes that another doesn't satisfy
  • Missing error handling at boundaries
  • Gaps in the request/response flow
  • Configuration that exists in one environment but not others
  • Present findings prioritized by risk. For each issue:
  • What's wrong (one sentence)
  • Which specialist should fix it
  • Estimated effort (quick fix / medium / significant)
  • Risk level (critical / moderate / minor)
  • If critical issues found, recommend blocking. If all issues are minor, note them and give the green light. Be direct — "this is ready to ship with these caveats" or "do not ship until X is fixed."
  • Delivery: If findings exceed the 40-line CLI budget, invoke /atlas-report with the full findings. The HTML report is the output. CLI is the receipt only — print the box header, verdict (ship/block), top 3 issues, and the report path.

How to use it

Copy the folder

Take jeremylongshore/apex-review from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.

Install what it needs

The instructions reference pip. Without those the skill loads but fails at the first command.