# Review Review

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

- **Type:** Skill
- **Install:** `agentstack add skill-herbertjulio-specialist-agent-review-review`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [HerbertJulio](https://agentstack.voostack.com/s/herbertjulio)
- **Installs:** 0
- **Category:** [Developer Tools](https://agentstack.voostack.com/c/developer-tools)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [HerbertJulio](https://github.com/HerbertJulio)
- **Source:** https://github.com/HerbertJulio/specialist-agent/tree/main/packs/nuxt/skills/review-review
- **Website:** https://specialistagent.com.br

## Install

```sh
agentstack add skill-herbertjulio-specialist-agent-review-review
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## 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:
```bash
git diff --name-only HEAD~1 2>/dev/null || git diff --name-only --cached 2>/dev/null || echo "Please specify the files"
```

2. Run automated checks:
```bash
nuxi typecheck
npx eslint . --max-warnings 0
npx vitest run --passWithNoTests
```

2b. Run `/review-check-architecture $SCOPE` for automated pattern validation.
3. 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

4. Classify:
   - VIOLATION - ARCHITECTURE.md violation
   - ATTENTION - Recommended improvement
   - COMPLIANT - Correct
   - HIGHLIGHT - Positive highlight

5. 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.

- **Author:** [HerbertJulio](https://github.com/HerbertJulio)
- **Source:** [HerbertJulio/specialist-agent](https://github.com/HerbertJulio/specialist-agent)
- **License:** MIT
- **Homepage:** https://specialistagent.com.br

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

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/skill-herbertjulio-specialist-agent-review-review
- Seller: https://agentstack.voostack.com/s/herbertjulio
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
