apex-review
Apex Review performs a cross-cutting engineering audit of recent work by running automated health scans, analyzing git history, and systematically checking for gaps across security, performance, observability, data integrity, infrastructure, and CI/CD domains. Use it when asked to review completed work, perform pre-launch checks, or validate that specialist teams haven't missed integration points or cross-domain concerns before shipping.
git clone --depth 1 https://github.com/jeremylongshore/claude-code-plugins-plus-skills /tmp/apex-review && cp -r /tmp/apex-review/plugins/ai-agency/tonone/skills/apex-review ~/.claude/skills/apex-reviewSKILL.md
# 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 0. **Run the automated health snapshot.** From the repo root: ```bash 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. 1. **Read git log and recent changes to understand what was built.** ```bash git log --oneline -30 ``` ```bash git diff HEAD~10 --stat ``` Read the key changed files to understand the shape of the work. 2. **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 3. **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 4. **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) 5. **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." 6. **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.
Audit and fix Claude Code SKILL.md files to meet enterprise compliance standards. Analyzes frontmatter, required sections, and style. Use when you need to validate or repair skills in a plugin directory.
Learn how SKILL.md files work in Claude Code plugins, then build a production-quality agent skill from scratch. Covers frontmatter schema, body structure, testing, and iteration.
Step-by-step guide to writing a SKILL.md file for Claude Code. Learn how to plan, structure, and test auto-activating skills with proper frontmatter, allowed-tools, dynamic context injection, and supporting files.
|
|
|
|
|