plugins marketplace
← All plugins

review-suite

v1.0.0

Independent plan and delivery reviews with evidence-based verdicts.

CodexAgent Plugins2 skills

by Lev NikolaevichMIT534updated 2 days ago

Source

git clone https://github.com/levnikolaevich/claude-code-skills

Clone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is plugins/review-suite/ inside the repository.

Layout

plugins/review-suite/
├── .codex-plugin/plugin.json
├── plugin.json
├── skills/ln-11-plan-reviewer/SKILL.md
└── skills/ln-12-delivery-reviewer/SKILL.md

Skills2

ln-11-plan-reviewerskills/ln-11-plan-reviewer/SKILL.md

Reviews implementation plans against repository evidence and current authoritative guidance. Use before execution to expose gaps and risks; not for completed delivery review.

ln-12-delivery-reviewerskills/ln-12-delivery-reviewer/SKILL.md

Reviews a completed scoped change and its affected runtime and contract paths. Use to find change-caused defects and verify readiness; not for codebase audit, implementation, or repair.

Manifests2

plugins/review-suite/.codex-plugin/plugin.json
{
  "name": "review-suite",
  "version": "1.0.0",
  "description": "Independent plan and delivery reviews with evidence-based verdicts.",
  "author": {
    "name": "Lev Nikolaevich",
    "email": "levnikolaevich.com@gmail.com",
    "url": "https://github.com/levnikolaevich"
  },
  "homepage": "https://github.com/levnikolaevich/claude-code-skills",
  "repository": "https://github.com/levnikolaevich/claude-code-skills",
  "license": "MIT",
  "keywords": [
    "review",
    "plan-review",
    "code-review",
    "delivery"
  ],
  "skills": "./skills/",
  "interface": {
    "displayName": "Review Suite",
    "shortDescription": "Review plans and deliveries",
    "longDescription": "Review plans and completed deliveries against repository evidence with explicit findings, verdicts, and residual risks.",
    "developerName": "Lev Nikolaevich",
    "websiteURL": "https://github.com/levnikolaevich/claude-code-skills",
    "category": "Productivity",
    "capabilities": [
      "Interactive",
      "Read"
    ],
    "defaultPrompt": [
      "Review this implementation plan.",
      "Review the completed delivery."
    ]
  }
}
plugins/review-suite/plugin.json
{
  "$schema": "https://agent-plugins.org/schemas/1.0.0/plugin.schema.json",
  "name": "review-suite"
}