一键导入
nematode-review-impl
Comprehensive review of implementation before evaluation or merge. Checks completeness, correctness, code quality, test coverage, and more.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Comprehensive review of implementation before evaluation or merge. Checks completeness, correctness, code quality, test coverage, and more.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Launch evolutionary optimisation runs via scripts/run_evolution.py. Use when the user wants to evolve brain weights with CMA-ES or GA, evolve hyperparameters with CMA-ES or Optuna/TPE, or run evolution-framework smoke/pilot configs. Covers the timing pitfalls that crashed earlier sessions.
Run parallel experiment groups with multiple seeds. Use when the user wants to launch evaluation experiments across different configurations.
Analyse experiment results from simulation sessions. Use when the user wants to evaluate how experiments performed, diagnose issues, or decide next steps after running experiments.
Create or update an experiment logbook with artifacts, supporting data, and roadmap updates. Use when the user wants to document evaluation results permanently.
Review an OpenSpec change for completeness, correctness, and scientific rigor before implementation. Use before starting implementation of a change.
Update the evaluation scratchpad with latest experiment results. Use when the user wants to record findings from an evaluation round to the working scratchpad document.
| name | nematode-review-impl |
| description | Comprehensive review of implementation before evaluation or merge. Checks completeness, correctness, code quality, test coverage, and more. |
| metadata | {"author":"nematode","version":"1.0"} |
Comprehensive review of implementation before evaluation or merge.
Input: Optionally specify which files or features to review. If omitted, review all uncommitted/recent changes.
Steps
Identify scope
Determine what to review:
git diff --stat main to find changed filesCompleteness check
dtypes, __init__, config_loader, brain_factory, BrainConfigType)Correctness check
Code quality check
Performance check
Test coverage check
Security / robustness check
Run verification
uv run pytest -m "not nightly" --tb=short -q
uv run ruff check <changed_files>
uv run pyright <key_files>
Report findings
Categorise as:
For each bug/issue, propose a fix.
Guardrails