一键导入
paper-structure
给一个研究项目搭起完整的学术论文骨架(main.tex + sections/ + appendix/ + references.bib)。当用户说"建一个论文项目"、"起论文骨架"、"draft paper structure"、"set up paper directory"时调用。
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
给一个研究项目搭起完整的学术论文骨架(main.tex + sections/ + appendix/ + references.bib)。当用户说"建一个论文项目"、"起论文骨架"、"draft paper structure"、"set up paper directory"时调用。
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
组装校准表 / 矩比对表 / IRF 表 / 反事实表为 CSV 与 LaTeX。当用户说"做表"、"build tables"、"出 LaTeX 表"、"摘要表"时调用。
从数据/文献/矩条件组装 calibration.csv,记录每个参数来源。当用户说"校准参数"、"calibrate"、"匹配矩"、"match moments"、"对齐数据"、"找出 beta / alpha 取多少"时调用。本技能是任何 solve-* 系列的强制前置。
git 提交:检查 .gitignore、生成提交信息、避免提交受保护文件。当用户说"提交"、"commit"、"push"、"git"时调用。
跑反事实 / 过渡路径 / 政策实验,对比 baseline。当用户说"反事实"、"counterfactual"、"政策实验"、"transition path"、"如果……会怎样"时调用。
反方拷问:质疑模型机制、识别策略、数值结果。当用户说"挑刺"、"反驳一下"、"devils advocate"、"audit"时调用。
反向访谈研究生以厘清机制设定(在 spec 模糊时调用)。当用户说"我也不太确定"、"帮我想清楚"、"interview me"时调用。
| name | paper-structure |
| description | 给一个研究项目搭起完整的学术论文骨架(main.tex + sections/ + appendix/ + references.bib)。当用户说"建一个论文项目"、"起论文骨架"、"draft paper structure"、"set up paper directory"时调用。 |
| type | paper-composition |
| 字段 | 类型 | 说明 |
|---|---|---|
project_root | path | 用户研究项目根(默认 pwd) |
paper_title | str | 论文工作标题(之后可改) |
authors | list[dict] | 含 name、affiliation、email |
model_class | enum | dsge / cge / ha / dp / empirical |
paper/ 目录非空 → 询问是覆盖还是退出(避免破坏既有写作)<project_root>/
└── paper/
├── main.tex
├── sections/
│ ├── 01_introduction.tex
│ ├── 02_model.tex
│ ├── 03_calibration.tex
│ ├── 04_solution.tex
│ ├── 05_results.tex
│ ├── 06_robustness.tex
│ └── 07_conclusion.tex
├── appendix/
│ ├── A_proofs.tex
│ └── B_additional_results.tex
├── references.bib
├── figures/ (空,由 simulate-irf 等技能填)
└── tables/ (空,由 build-tables 填)
templates/paper/ 模板从 plugin 的 templates/paper/ 目录把骨架文件复制到 <project_root>/paper/。每个 sections/0X_*.tex 是带占位 prompt 的空段。
把用户给的 paper_title、authors、model_class 插入到 main.tex 的 \title{}、\author{} 中。设置 \documentclass[11pt]{article}、合理的 packages、\graphicspath{{../results/figures/}}、bibliographystyle、hyperref。
把模板 references.bib 复制过去——它已经包含按 model_class 预选的 3–5 个必引经典文献的 BibTeX 条目(如 DSGE 必引 Kydland-Prescott 1982、King-Rebelo 1999;CGE 必引 Hertel 1997;HA 必引 Aiyagari 1994)。用户后续用 manage-bibliography skill 补加自有引用。
记录"已在 <project_root>/paper/ 建立论文骨架,等待 write-introduction 等技能开始填实"。
| 文件 | 必产 | 说明 |
|---|---|---|
paper/main.tex | ✅ | 根文档 |
paper/sections/0[1-7]_*.tex | ✅ | 7 个 section 占位 |
paper/appendix/{A,B}_*.tex | ✅ | 2 个 appendix 占位 |
paper/references.bib | ✅ | 必引文献已预填 |
paper/figures/、paper/tables/ | ✅ | 空目录 |
sections/*.tex 写实质内容(那是 write-* skill 的活)main.tex 元信息直接用占位 "Title TBD"\input{} 不存在的 section| 症状 | 处理 |
|---|---|
| paper/ 已存在非空 | 询问用户:覆盖(带备份)/ 跳过 / 退出 |
| 用户未提供 authors | 用 placeholder 但显式标注 TODO 并提示用户补 |
| 用户给 model_class 不在预定义列表 | 询问,不要默认 dsge |