smithery.ai

implementation-review

Review feature implementations for spec compliance, code quality, and organizational consistency. Use when implementing features, checking spec compliance, validating API implementations, or preparing releases.

First seen Apr 11, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Allowed toolsRead, Grep, Glob, Bash(git:*), Bash(rg:*), WebSearch

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,399 B
  • docs SUMMARY.md 239 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 2 installs

SKILL.md

Implementation Review

Comprehensive review of feature implementations against specifications and organizational standards.

When to Use

  • Implementing or completing new features
  • Validating spec compliance before merge
  • Checking API implementation correctness
  • Preparing release readiness assessments

Instructions

Step 1: Gather Context

  1. Identify the implementation scope:

``bash git diff --name-only HEAD~5 git status ``

  1. Locate relevant specification: UPP-1.3.spec.md or related spec files
  2. Identify affected providers/modules

Step 2: Spawn Review Sub-Agents

Delegate parallel reviews to sub-agents for:

Agent Focus Review Scope
Spec Compliance Compare implementation against spec requirements
Code Standards Organizational consistency, naming, patterns
API Validation Search web to validate API parameters, endpoints, payloads
Regression Check Search codebase for potential breaking changes

Step 3: Synthesize Reports

Collect sub-agent findings and compile:

  1. Compliance gaps - Missing or incorrect spec implementations
  2. Quality issues - Code smells, inconsistencies, design concerns
  3. API correctness - Validated against official documentation
  4. Regression risks - Potential breaking changes identified

Output Format

# Implementation Review Report

## Summary
[One paragraph overview]

## Spec Compliance: [PASS/PARTIAL/FAIL]
- [ ] Requirement 1
- [ ] Requirement 2

## Code Quality Issues
| Severity | File | Issue | Recommendation |
|----------|------|-------|----------------|

## API Validation
[Findings from web search validation]

## Regression Risks
[Identified risks and mitigation]

## Release Readiness: [READY/BLOCKED/NEEDS WORK]
[Estimation with blockers listed]

Notes

  • Always validate external API usage against current documentation
  • Cross-reference with existing provider implementations for consistency
  • Flag any deviations from established patterns