AgentStack
SKILL verified MIT Self-run

Review Review

skill-herbertjulio-specialist-agent-review-review · by HerbertJulio

Use when code changes need review before merge - validates architecture, types, security, and test coverage.

No reviews yet
0 installs
10 views
0.0% view→install

Install

$ agentstack add skill-herbertjulio-specialist-agent-review-review

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Review Review? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Perform a full code review of changed files, validating against docs/ARCHITECTURE.md.

Scope: $ARGUMENTS (if empty, review files changed in git)

Steps

  1. Identify changed files:
git diff --name-only HEAD~1 2>/dev/null || git diff --name-only --cached 2>/dev/null || echo "Please specify the files"
  1. Run automated checks:
nuxi typecheck
npx eslint . --max-warnings 0
npx vitest run --passWithNoTests

2b. Run /review-check-architecture $SCOPE for automated pattern validation.

  1. Check ARCHITECTURE.md patterns:
  • Services: no try/catch, no transformation, use $fetch
  • Adapters: pure functions
  • Composables: use service+adapter, useAsyncData with watch triggers
  • State: useState for simple, Pinia for complex, no server state in stores
  • Components: script setup, auto-imports, typed props/emits, < 200 lines
  • Server routes: Zod validation, createError() for errors
  • Naming: correct conventions
  • Boundaries: no cross-module imports
  • Auto-imports: no explicit imports where Nuxt handles them
  1. Classify:
  • VIOLATION - ARCHITECTURE.md violation
  • ATTENTION - Recommended improvement
  • COMPLIANT - Correct
  • HIGHLIGHT - Positive highlight
  1. Produce report with verdict: Approved | With caveats | Requires changes

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.