用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/flonat/claude-research --skill synthesise-reviews命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Use when you need to audit a research project against the init-project-research template.
Use when you need to validate a paper's bibliography — cross-references \cite{} keys against .bib files or embedded \bibitem entries, finds missing/unused/typo'd keys, and checks every key against the Paperpile library via the local resolver. Deep verification mode spawns parallel agents for DOI/metadata validation at scale. Fix mode rekeys drifted keys to canonical and stages missing entries for Paperpile.
Use when you need to bootstrap a full research project with directory scaffold and Overleaf symlink.
基于 SOC 职业分类
正在显示 SKILL.md
| name | synthesise-reviews |
| description | Use when you need to synthesise parallel review reports into a prioritised revision plan. |
| argument-hint | [optional: path to reviews/ directory] |
| allowed-tools | Read, Glob, Grep, Write, Edit, AskUserQuestion |
Combine multiple review reports into a single prioritised revision plan with cross-reviewer consensus ranking.
Per rules/review-artefact-routing.md (auto-loads in research projects (path-scoped to paper-*/ and paper/)):
synthesise-reviewsreviews/<scope>/synthesise-reviews/YYYY-MM-DD-HHMM.md inside the project, where <scope> is the paper slug (e.g. paper-jtp) or _project for project-level synthesis. Path is relative to the research project root, not the Task-Management repo../CRITIC-REPORT.md-style filenames are forbidden — pre-rule layout).{date}-revision.md, {date}-r2.md, {date}-pre-submission.md) — never overwrite.reviews/INDEX.md exists, write a one-line entry under "Latest per source" pointing at the new file. Otherwise /review-recap will rebuild the index next time it runs.After running parallel review agents (paper-critic, domain-reviewer, referee2-reviewer), this skill reads all their reports, cross-references issues, and produces a unified REVISION-PLAN.md that groups issues into workstreams by priority and theme.
Inspired by APE Papers' reviewer_response_plan_1.md pattern — workstreams grouped by priority, each concern traced to its reviewer.
/strategic-revision)paper-critic, domain-reviewer, referee2-reviewer)Glob for review files in the project root. Scan the new canonical structure first, then fall back to legacy:
reviews/<scope>/<check>/YYYY-MM-DD*.md (canonical: e.g. reviews/paper-jtp/paper-critic/2026-06-28-1437.md)
reviews/<check>/YYYY-MM-DD*.md (legacy: e.g. reviews/paper-critic/2026-06-28-1437.md)
Where <scope> is a paper slug (e.g. paper-jtp) or _project.
Also check for processed referee comments:
docs/venues/*/revision-*/reviewer-comments/comment-tracker.md
If no reports found, ask the user where the reports are.
Present the discovered reports and their dates. If reports are from different dates, ask whether to synthesise all or just the most recent round.
For each report, extract the issue list:
From paper-critic CRITIC-REPORT.md:
From domain-reviewer DOMAIN-REVIEW.md:
From referee2-reviewer REFEREE2-REPORT.md:
From processed referee comments (comment-tracker.md):
Match issues across reports by semantic similarity (same underlying problem, possibly described differently):
| Consensus | Priority |
|---|---|
| Flagged by 3/3 reviewers | Critical (regardless of individual severity) |
| Flagged by 2/3 reviewers | Major (or higher if any reviewer rated Critical) |
| Flagged by 1/3 reviewers | Keep original severity |
Important: Consensus can only escalate severity, never reduce it. If one reviewer says Critical and two say Minor, it stays Critical.
Cluster issues by theme:
| Theme | What belongs here |
|---|---|
| Identification & Methodology | Research design, estimation strategy, assumptions, causal claims |
| Mathematical Rigour | Derivations, proofs, notation consistency, formal claims |
| Empirical Analysis | Data, results, robustness, replication |
| Literature & Positioning | Citations, positioning, literature gaps, framing |
| Presentation & Structure | Writing quality, organisation, clarity, flow |
| Technical (LaTeX) | Compilation, references, formatting, figures, tables |
Within each workstream, sort by priority (Critical → Major → Minor).
Write to reviews/<scope>/synthesise-reviews/YYYY-MM-DD-HHMM.md in the project, where <scope> is the paper slug (e.g. paper-jtp) or _project for project-level synthesis. This report contains the consolidated revision plan synthesised from all input reports.
# Revision Plan
**Date:** YYYY-MM-DD
**Reports synthesised:** [list of report files with dates]
**Total issues:** N (C: X, M: Y, m: Z)
## Positive Consensus
Issues/strengths noted positively by multiple reviewers:
- [Strength 1] — noted by [reviewers]
- [Strength 2] — noted by [reviewers]
## Workstream 1: [Theme Name]
| # | Priority | Issue | Flagged by | Action | Source |
|---|----------|-------|------------|--------|--------|
| 1 | Critical | [description] | paper-critic (C1), domain-reviewer (A2), referee2 | [suggested action] | [file:line] |
| 2 | Major | [description] | paper-critic (M3), domain-reviewer (D1) | [suggested action] | [file:line] |
| 3 | Minor | [description] | paper-critic (m2) | [suggested action] | [file:line] |
## Workstream 2: [Theme Name]
[Same table format]
...
## Summary
| Workstream | Critical | Major | Minor | Total |
|------------|----------|-------|-------|-------|
| Identification & Methodology | X | Y | Z | N |
| Mathematical Rigour | X | Y | Z | N |
| ... | | | | |
| **Total** | **X** | **Y** | **Z** | **N** |
## Recommended Order
1. [First workstream to tackle and why]
2. [Second workstream]
3. ...
## Consensus Statistics
- Issues confirmed by all reviewers: N
- Issues confirmed by majority (2/3): N
- Issues from single reviewer: N
- Total unique issues: N
If the reviews include processed referee comments (from /strategic-revision), also generate:
# Reply to Reviewers
**Paper:** [title]
**Date:** YYYY-MM-DD
## Reviewer 1
### Comment R1-C1: [short title]
> [Original comment — blockquote]
**Response:**
[Placeholder — to be filled by author]
**Changes made:**
- [Placeholder]
### Comment R1-C2: ...
## Reviewer 2
[Same format]
Ask the user before generating this file.