mini-implement-review

mini-implement-review is a skill for Claude Code from ZTE-AICloud/Co-OmniSpec. It costs 14 tokens per session (926 once invoked), scanned A, a copy of mini-design-review, MIT.

A review process for checking whether code matches a detailed software design and follows the project’s stated rules.

In plain words
What is it for?
Reviewing the current code changes against user stories, design documents, and the project constitution, then writing the result to a review file.
Why use it?
It catches missing implementation work and rule violations before the change is accepted.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the omni-dsdd plugin — 40 skills, 16 agents, 1 hook shipped together

Good fit Reviewing the current code changes against user stories, design documents, and the project constitution, then writing the result to a review file.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/zte-aicloud/co-omnispec/mini-implement-review
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add ZTE-AICloud/Co-OmniSpec --skill mini-implement-review
Clone the repo
git clone --depth 1 https://github.com/ZTE-AICloud/Co-OmniSpec

Made for: Claude Code.

Or install omni-dsdd, the plugin that ships this one along with the rest of its 40 skills, 16 agents, 1 hook.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for mini-implement-review

README.md
[![agentmods](https://agentmods.dev/badge/skills/zte-aicloud/co-omnispec/mini-implement-review/github.svg)](https://agentmods.dev/skills/zte-aicloud/co-omnispec/mini-implement-review)
Your own site
<a href="https://agentmods.dev/skills/zte-aicloud/co-omnispec/mini-implement-review"><img src="https://agentmods.dev/badge/skills/zte-aicloud/co-omnispec/mini-implement-review/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for mini-implement-review

Your own site · 80×15
<a href="https://agentmods.dev/skills/zte-aicloud/co-omnispec/mini-implement-review"><img src="https://agentmods.dev/badge/skills/zte-aicloud/co-omnispec/mini-implement-review.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 14 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 926 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin 88% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00014 $0.00926
Opus 5 $0.00007 $0.00463
Sonnet 5 $0.00003 $0.00185
Haiku 4.5 $0.00001 $0.00093

Measured 10d ago against content hash 634de939c5a7, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

mini-implement-review scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

88% identical to mini-design-review — 43 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

omni-dsdd/skills/mini-implement-review/SKILL.md · 60 lines

What it actually says

仓库根目录下执行脚本(不要从技能目录下找) scripts/bash/mini-delete-review.sh --implement

准备阶段

  • 判断当前操作系统,windows还是linux系统;
  1. 清理上次评审结果:
  • linux:仓库根目录下执行脚本(不要从技能目录下找) scripts/bash/mini-delete-review.sh --implement
  • windows: 仓库根目录下执行脚本(不要从技能目录下找) scripts/powershell/mini-delete-review.ps1 --implement
  1. 获取详设文档
  • linux:仓库根目录下执行脚本(不要从技能目录下找):scripts/bash/mini-check.sh --json
  • windows:仓库根目录下执行脚本(不要从技能目录下找):scripts/powershell/mini-check.ps1 --json
    • 解析 JSON 获取 DESIGN ,DESIGN 为详设文档。 对于参数中的单引号如 "I'm Groot", 使用转义语法: 例如 'I'''m Groot'(或尽可能使用双引号: "I'm Groot").
    • 解析 JSON 获取 FEATURE_DIR , FEATURE_DIR 需求相关文档产物所在目录。
  1. 判断详设文档 DESIGN 是否存在,且内容不为空。如果详设文档 DESIGN 不存在或者内容为空,则结束该SKILL。

评审次数上限保护

  1. 读取文件 FEATURE_DIR/implement-review-times.md ,该文件内容为一个数字,表示当前为第几次评审。
  2. *** 当前评审次数大于等于3 *** ,向FEATURE_DIR/review-result.md中写入评审通过,然后直接结束本技能,不执行后续步骤。

检查校验

通过git diff 获取本次代码修改,检查代码是否修改是否满足下述各类检查项,检查结果写到文档 FEATURE_DIR/review-result.md, 写清楚哪个位置违反了什么校验条件 *** 只评审下述提到的要求评审,不自己增加评审项 ***

功能实现完整检查

  1. 读取详设文档 DESIGN,判断每个用户故事、每个修改点是否修改完成。
  2. 如果全部修改完成,则 FEATURE_DIR/review-result.md 中写入,功能实现完整检查:通过

宪章检查

  1. 读取.omni-infra/memory/constitution.md:了解章程约束,判断代码修改中是否有违反规章约束。
  2. 如果没有违反该项检查,则 FEATURE_DIR/review-result.md 中写入,宪章检查:通过

新增函数检查

  1. 新实现的任何函数,需要确认无相同功能的函数。
  2. 如果没有违反该项检查,则 FEATURE_DIR/review-result.md 中写入,新增函数检查:通过

调用现有函数检查

  1. 调用的已有函数,需要实际读取函数完整代码确认实现逻辑是否符合本次需求要求。
  2. 如果没有违反该项检查,则 FEATURE_DIR/review-result.md 中写入,调用现有函数检查:通过

清理未使用代码

  1. 检查:本次修改代码后,不再使用的函数、全局变量等,判断是否还有其他位置使用,如果未使用,需要删除。
  2. 如果没有违反该项检查,则 FEATURE_DIR/review-result.md 中写入,清理未使用代码检查:通过

新增常量检查

  1. 检查新增的常量,在现有代码中是否已有全局变量定义,如果有,则复用原有变量。
  2. 如果没有违反该项检查,则 FEATURE_DIR/review-result.md 中写入,新增常量检查检查:通过

新增全局变量位置检查

  1. 检查新增的全局变量定义位置是否和现有风格保持一致,查看是否有类似功能的全局变量统一定义在了某个文件。
  2. 如果没有违反该项检查,则 FEATURE_DIR/review-result.md 中写入,新增全局变量位置检查:通过
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 60 lines · 14 tokens per session scan A 634de939c5a7

Subscribe to this mod's changes

mini-implement-review is a skill published in the GitHub repository ZTE-AICloud/Co-OmniSpec (54 stars, last pushed 1mo ago), licensed MIT. It adds 14 tokens to every session and 926 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. It is 88% identical to mini-design-review, differing in 43 lines, and is treated as a copy.