用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/HezaoHezao/poirot --skill research-paper-writing命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | research-paper-writing |
| description | ML paper pipeline: experiment design to submission. |
| allowed-tools | ["bash","write_file","read_file","web_search","browse_page"] |
| enabled | true |
| related-skills | ["arxiv","academic-paper-review","plan"] |
| license | MIT |
| author | Adapted from hermes-agent (Nous Research, MIT); Orchestra Research |
End-to-end pipeline for producing publication-ready ML/AI research papers targeting NeurIPS, ICML, ICLR, ACL, AAAI, COLM. Covers the full research lifecycle: experiment design, execution, analysis, paper writing, review, revision, and submission.
This is not a linear pipeline — it is an iterative loop. Results trigger new experiments. Reviews trigger new analysis.
Phase 0: Project Setup → Phase 1: Literature Review
│ │
▼ ▼
Phase 2: Experiment Phase 5: Paper Drafting ◄──┐
Design │ │
│ ▼ │
▼ Phase 6: Self-Review │
Phase 3: Execution & Revision ───────────┘
& Monitoring │
│ ▼
▼ Phase 7: Submission
Phase 4: Analysis
project/
├── experiments/
├── data/
├── src/
├── paper/
│ ├── main.tex
│ ├── figures/
│ └── references.bib
└── README.md
arxiv skill to find related workweb_search for non-arXiv papers (Semantic Scholar, Google Scholar)browse_page to read key papers in fullreferences.bib with all cited works# Run experiments
python src/train.py --config configs/exp1.yaml
# Monitor with logging
python src/train.py --config configs/exp1.yaml --log-dir runs/exp1
# Track experiments
python src/eval.py --checkpoint runs/exp1/best.pt --eval-set test
python src/plot.py --results runs/ --output paper/figures/
Follow venue template structure:
Writing principles:
Use academic-paper-review skill to self-review:
# Multiple seeds — compute mean ± std
python3 -c "
import numpy as np
results = [0.85, 0.83, 0.86, 0.84, 0.82] # per-seed results
print(f'Mean: {np.mean(results):.4f} ± {np.std(results):.4f}')
"
# Paired t-test vs baseline
python3 -c "
from scipy import stats
baseline = [0.80, 0.79, 0.81, 0.78, 0.80]
ours = [0.85, 0.83, 0.86, 0.84, 0.82]
t, p = stats.ttest_rel(ours, baseline)
print(f't={t:.3f}, p={p:.4f}')
"
This skill benefits from: numpy, scipy, matplotlib (analysis + plots).
Install via pip install numpy scipy matplotlib.