一键导入
code-reviewer-strict
Strict code and test review against coding principles, minimality, and project specs. Reports KEEP/DISCARD/ESCALATE with quality score.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Strict code and test review against coding principles, minimality, and project specs. Reports KEEP/DISCARD/ESCALATE with quality score.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Apply senior UI/UX judgment to interfaces, user flows, interaction details, and product usability decisions.
Build, review, and extend Astro static sites — config, integrations, SEO, deployment to GitHub Pages.
Design system, visual language, tone, and UI conventions for comtechconsulting.dk — reference before adding any new UI, copy, or page to the site.
Apply senior-level engineering judgment to code review, implementation, debugging, refactoring, and delivery planning.
Advise on Confluence Cloud AI — Atlassian Intelligence, Rovo Chat, Rovo Chat macro, plan tier detection, and space-level AI scoping.
Configure and surface Rovo AI features in Confluence Cloud — Chat, custom Agents, Space Agent assignment, and space homepage CTA patterns.
基于 SOC 职业分类
| name | code-reviewer-strict |
| description | Strict code and test review against coding principles, minimality, and project specs. Reports KEEP/DISCARD/ESCALATE with quality score. |
| version | 1.0.0 |
| tags | ["code-review","quality","testing","minimality"] |
| tool_agnostic | true |
Perform strict technical and minimality review of produced code and tests against coding principles, scope, specs, and technical validation evidence. This skill reviews and reports — it does not rewrite code.
/review # review all staged/unstaged changes in the current repo
/review <file> # review a specific file
/review --scope <topic> # review changes scoped to a specific topic or ticket
First, resolve project tech stack and commands in this order:
pyproject.toml, package.json, go.mod, Cargo.toml, *.csproj, pom.xml, build.gradle*.From resolved stack, determine:
Validate code + tests against:
coding-principles.md (DRY, KISS, readability, maintainability) — if presentProduce ONE artifact: code-review-report.md containing KEEP/DISCARD/ESCALATE decisions and quality score.
coding-principles.md in full (if present).For ALL source files:
For EVERY fn, class, module, and test:
For ALL code:
Calculate quality score (0–100):
Deductions:
Overall decision:
Generate code-review-report.md:
# Code Review Report
**Scope**: <description>
**Language**: <from project stack>
**Review Date**: <timestamp>
**Overall Decision**: [Approved/Rejected/Blocked]
**Quality Score**: <0-100>
## Summary
- Total Items Reviewed: <count>
- KEEP: <count>
- DISCARD: <count>
- ESCALATE: <count>
## Technical Validation
### Compilation/Type Check Status
[Results for each file]
### Test Discovery Status
[Results from test discovery command]
## Detailed Review
### KEEP Items
[For each: file, function/class, mapped requirement, rationale]
### DISCARD Items
[For each: file, function/class, reason, violated principle]
### ESCALATE Items
[For each: file, function/class, ambiguity description, required clarification]
## Coding Principles Violations
[ALL violations with file, line, principle, and description]
## Minimality Analysis
[Analysis of speculative code, over-engineering, unmapped functionality]
## Quality Score Breakdown
- Compilation/Type Check: <score>/20
- Test Discovery: <score>/20
- Minimality: <score>/20
- Coding Principles: <score>/30
- Test Quality: <score>/10
- Deductions: -<total>
- **Final Score**: <score>/100
## Technical Debt Identified
| File | Line | Type | Description |
|------|------|------|-------------|
## Recommendations
[Specific, actionable steps to address issues]