一键导入
paper-related-works
Given a paper, find its related works (cited references and successor/citing papers) and produce a structured map.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Given a paper, find its related works (cited references and successor/citing papers) and produce a structured map.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
巡检本期 SSH 可连的 5 台远程服务器(HPCC / BCC / TASL-LabServer / TASL-7 / Brev)的 GPU 情况——每卡显存与利用率、Slurm 集群的账号配额/排队作业/全节点空闲 GPU,并算出"我实际还能新申请多少张"。当用户说"检查 GPU""看下 GPU 显存""GPU 情况""哪台服务器有空卡""查一下算力""where can I run""check GPU status""GPU 够不够""有没有空闲显卡"等,或在准备起训练/挑服务器时触发。
统一绘图 skill——文生图 / 图生图 / 多图合成 / 编辑 / 论文与科普配图。两个后端由用户指定:nano(默认,Google Gemini "Nano Banana",快 3-10s、便宜、原生中英文文字渲染、可 1K/2K/4K,含 lite/nb2/pro 三档) 或 gpt(速创API GPT-Image-2,真实感/精细文字更强,异步稍慢 60-90s)。四个专用风格预设也由用户按名指定,两后端通用:UniVLA(pastel macaron 论文方法图)、Physical Intelligence(π/pi-zero retro-computing monospace 图)、Fast-WAM(CVPR/ICLR 矢量图+attention-mask 矩阵)、蓝皮书 BlueBook(蓝白科技科普/咨询长图)。Use this skill for ANY image generation or editing request. 触发词:「画一张」「生成一张图」「出张图」「文生图」「图生图」「改这张图」「编辑图片」「把这张图改成…」「合成/融合这几张图」「做张海报」「配图」「方法图」「架构图」「用 nano/gemini 画」「用 GPT 画」「generate/edit/compose an image」「make a poster」「render a figure」,以及风格名「UniVLA 风格」「Physical Intelligence / PI / π 风格」「Fast-WAM 风格」「蓝皮书 / BlueBook 风格」。默认走 nano;用户点名「用 GPT」时走 gpt。
Write structured experiment reports from experiment-run output. Consumes results/<run_id>/ + EXPERIMENT_TRACKER.md. Reports are scannable: TL;DR + summary table first. Trigger when user says "写个报告", "总结实验结果", "实验报告", "experiment report", or after experiment-run completes.
Adversarial paper review + improvement loop. Sends paper PDF/manuscript to Codex GPT-5.5 as a senior ML reviewer, scores 7 dimensions, then iteratively fixes weaknesses until score ≥ 8. Use after paper-write, or when user says "improve paper", "审稿", "review my paper", "polish paper", "paper review", "提升论文质量", "review loop".
Write a structured rebuttal using Concede–Clarify–Commit structure. Parses reviewer comments, identifies overlapping concerns across reviewers, builds consolidated Table R1, produces venue-formatted rebuttal. Use when user says "写 rebuttal", "rebuttal", "回复审稿意见", "response to reviewers", or receives paper reviews and needs to respond.
Execute experiments from EXPERIMENT_TRACKER.md produced by experiment-plan. For each TODO run: launch training/eval, monitor via gpu-train-monitor, auto-diagnose failures via train-debug, collect results, update tracker. Bridges the gap between planning (experiment-plan) and reporting (experiment_report). Use when user says "跑实验", "run experiments", "执行实验", "按照 plan 跑", or has an EXPERIMENT_TRACKER.md ready to execute.
| name | paper_related_works |
| description | Given a paper, find its related works (cited references and successor/citing papers) and produce a structured map. |
Given an academic paper, build a comprehensive related-works map covering both predecessors (papers it cites) and successors (papers that cite it or build on it).
检索命令语法的唯一来源:AlphaXiv 读取、Semantic Scholar citations/references API、vec-db 检索的精确命令、限流与去重规则,统一定义在
../paper-discovery-sources/SKILL.md(见其中 Goal C 检索策略)。需要命令细节时加载它;下面只写本 skill 特有的策略。
Parse the paper from user input (arXiv URL, ID, title, PDF path), then read it via AlphaXiv (overview first, full text if references are thin, PDF fallback on 404) — see the reference doc for the exact commands.
Extract the full paper content for the walkthrough and related works analysis.
Write a structured walkthrough of the paper. This goes at the top of the final report.
| Method | Benchmark | Metric | Value |
|--------|-----------|--------|-------|
| This paper | ... | ... | ... |
| Best baseline | ... | ... | ... |
From the paper's references and related work section, identify papers grouped by role:
| Role | Description | Example |
|---|---|---|
| Foundation | Core method this paper builds on | "We build on DP3 [Ze et al.]" |
| Baseline | Methods compared against in experiments | "We compare with ACT, DP..." |
| Component | Borrowed modules (encoder, loss, etc.) | "We use PTv3 as backbone" |
| Concurrent | Independent parallel work on same problem | "Concurrent to ours, X also..." |
| Problem | Papers defining the problem or benchmark | "On the RLBench benchmark [James et al.]" |
For each cited paper, extract:
Search for papers that cite or build on the target paper using multiple sources (exact commands in ../paper-discovery-sources/SKILL.md):
4a. Semantic Scholar API (primary) — the citation graph gives both directions in one call:
citations field → successors (papers that cite this one): this is the primary signal for Step 4/5.references field → predecessors (papers this one cites): use this in Step 3 to corroborate/augment the references you pulled from the paper text.4b. Local Vec-db semantic search (find related top-venue work)
Search vec-db with the paper's key concepts. This finds top-venue papers with similar themes that may not directly cite the target but are closely related. Especially useful for discovering parallel/concurrent work.
4c. Web search (supplementary)
WebSearch: "<paper_title>" improvements OR "builds on" OR "extends" site:arxiv.org
WebSearch: "<paper_title>" cite OR citing 2024 2025 2026
4d. AlphaXiv (if available)
Check the AlphaXiv overview for mentions of follow-up or concurrent work.
4e. Connected Papers / Papers With Code
WebSearch: "<paper_title>" site:paperswithcode.com
WebSearch: "<paper_title>" site:connectedpapers.com
For each successor found, classify:
| Relationship | Description |
|---|---|
| Direct extension | Explicitly builds on this paper's method |
| Application | Applies the method to a new domain/task |
| Improvement | Proposes fixes or enhancements |
| Comparison | Uses as baseline in experiments |
| Integration | Combines with other methods |
Rank by relevance: direct extensions > improvements > applications > comparisons.
ASK USER before generating: "I found N predecessors and M successors. Want me to:
Output format:
# Paper Walkthrough & Related Works: <Paper Title>
**Paper:** <title> (<authors>, <year>)
**arXiv:** <link>
**Core contribution:** <1 sentence>
---
## 1. Paper Walkthrough
### Background & Problem
<What problem, why it matters, what gap exists>
### Motivation & Key Insight
<Core insight, what's different from prior work>
### Method
<High-level approach, architecture, key design choices>
### Results
| Method | Benchmark | Metric | Value |
|--------|-----------|--------|-------|
| This paper | ... | ... | ... |
| Best baseline | ... | ... | ... |
<Key ablation findings, qualitative highlights>
### Limitations & Future Work
- <Author-stated limitations>
- <Observed limitations>
- <Proposed future directions>
---
## 2. Predecessors (Papers This Work Builds On)
### Foundations
| Paper | Year | Relationship | Code |
|-------|------|-------------|------|
| [Title](https://arxiv.org/abs/...) | ... | ... | [repo](url) |
### Baselines
| Paper | Year | Relationship | Code |
|-------|------|-------------|------|
### Components
| Paper | Year | Relationship | Code |
|-------|------|-------------|------|
### Concurrent Work
| Paper | Year | Relationship | Code |
|-------|------|-------------|------|
## 3. Successors (Papers That Build on This Work)
### Direct Extensions
| Paper | Year | What They Add | Citations | Code |
|-------|------|--------------|-----------|------|
| [Title](https://arxiv.org/abs/...) | ... | ... | ... | [repo](url) |
### Improvements
| Paper | Year | What They Fix/Improve | Citations | Code |
|-------|------|----------------------|-----------|------|
### Applications
| Paper | Year | Domain/Task | Citations | Code |
|-------|------|------------|-----------|------|
## 4. Research Lineage
<ASCII diagram showing the main line of research>
<target_paper>
├── built on: <foundation_1> → <foundation_2> → ...
├── extended by: <successor_1>, <successor_2>
└── applied to: <application_1>
## 5. Suggested Reading Order
1. <paper> — <why read this first>
2. <paper> — <builds on #1>
...
Always save the report to a file. Ask user for preferred location, default:
mkdir -p doc/related_works
Save as doc/related_works/<paper_short_name>_related.md.
Every paper entry MUST include a clickable link. Use this format for all tables:
| [Paper Title](https://arxiv.org/abs/XXXX.XXXXX) | 2025 | Relationship | `XXXX.XXXXX` |
If no arXiv ID, use Semantic Scholar link: https://www.semanticscholar.org/paper/<S2_ID>
For papers with code, add repo link:
| [Paper Title](https://arxiv.org/abs/XXXX.XXXXX) | 2025 | Description | [code](https://github.com/...) |
After presenting the map, ask:
/create_skill_with_paper)"/topic_survey)"| Issue | Recovery |
|---|---|
| AlphaXiv 404 | Fall back to reading PDF directly |
| Semantic Scholar rate limit | Wait 60s and retry, or switch to web search |
| Paper not on arXiv | Search by title on Semantic Scholar, Google Scholar |
| Too many successors | Filter: citations > 10, or last 2 years only |
| No successors found | Paper may be very recent; note this and rely on web search |