用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/AndrewSmigaj/OpenLLMRI --skill thorough-review命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Uncertainty assessment before implementation — identify what you know, what you're guessing, and what to verify
Generate 2-3 genuinely different approaches to a problem and compare them
Challenge a design or approach — find real weaknesses, not performative objections
基于 SOC 职业分类
正在显示 SKILL.md
| name | thorough-review |
| description | Fan-out all review skills via parallel agents, then synthesize findings into one report |
Run all review skills against a target by spawning parallel agents, then synthesize their findings into a single consolidated report.
/thorough-review [target]
Target can be a file path (e.g., docs/architecturemud.md) or a concept name (e.g., "phase 1 design").
architecturemud)phase_1_design)Read the target document fully. Extract a 2-3 sentence project context summary to include in each agent prompt.
mkdir -p /tmp/reviews/{name}
Spawn up to 3 agents in parallel per batch. Each agent gets:
Agent prompt template:
You are reviewing a software architecture document for [specific concern].
Project: Concept MRI is a research tool for studying attractor basin dynamics in MoE language models. It has a Python/FastAPI backend, React frontend, and uses Claude Code as the analysis runtime. The design under review is for adding a MUD-based interface layer.
Read the file at: [target path]
Then analyze it against these review questions:
[paste the Questions section from the relevant review skill]
Rules:
- Every finding must be concrete and specific to THIS design — reference specific sections
- If you can't point to a specific section or decision, the finding isn't real — drop it
- Generic advice that could apply to any project is not useful
Write your findings to: /tmp/reviews/{name}/{skill}.md
Use this output format:
[paste the Output Format section from the relevant review skill]
Batching order:
After all batches complete, read every file in /tmp/reviews/{name}/.
Produce a consolidated report:
# Thorough Review: {name}
Reviewed: {date}
Target: {target path or description}
Skills run: {list}
## Critical Findings
[Findings rated Critical from any skill, deduplicated]
## Important Findings
[Findings rated Important, grouped by theme rather than by skill]
## Minor Findings
[Brief list]
## Cross-Cutting Patterns
[Themes that appeared across multiple skills — these are the real insights]
## Strengths
[What the design does well — important for context, not just a list of problems]
## Recommended Actions
[Prioritized list: what to fix first, what can wait, what to accept]
# Write consolidated report
Write to: docs/scratchpad/review_{name}.md
# Clean up temp files
rm -rf /tmp/reviews/{name}
Give the user a brief summary of top findings and point them to the full report.