一键导入
paper-assistant
Use when coordinating the complete academic paper writing workflow, managing stage transitions, or initializing a new paper project
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when coordinating the complete academic paper writing workflow, managing stage transitions, or initializing a new paper project
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use when downloading academic papers from arXiv, searching for papers, or managing paper downloads
Use when implementing experimental code, scaffolding research projects, or following coding best practices for academic work
Use when running experiments, analyzing results, designing comparative experiments, or validating findings
Use when generating research hypotheses, designing experiments, or evaluating hypothesis feasibility
Use when conducting literature review, searching for academic papers, identifying research gaps, or analyzing existing work
Use when drafting manuscript sections, formatting citations, polishing writing style, or preparing paper for submission
| name | paper-assistant |
| description | Use when coordinating the complete academic paper writing workflow, managing stage transitions, or initializing a new paper project |
The central orchestrator for AI-assisted academic paper writing, managing the complete workflow from literature review to publication.
The assistant maintains context through .paper_context.json:
{
"project_name": "my-paper",
"current_stage": "literature_review",
"stages": {
"literature_review": {
"status": "completed",
"research_gap": "...",
"summary": "..."
},
"hypothesis": { "status": "pending" },
"code": { "status": "pending" },
"experiment": { "status": "pending" },
"writing": { "status": "pending" }
},
"user_preferences": {
"discipline": "cs",
"methodology": "quantitative",
"language": "zh",
"citation_style": "IEEE"
}
}
I want to write a paper about [topic]
Continue to hypothesis generation
Skip to experiment stage
What's the current status of my paper?
Show me the literature review summary
Each stage must meet completion criteria before proceeding:
This coordinator delegates to specialized skills:
paper-literature-review: Literature search and analysispaper-hypothesis: Hypothesis generation and validationpaper-code: Code scaffolding and best practicespaper-experiment: Experiment execution and analysispaper-writing: Manuscript drafting and polishingEach plugin can be used independently or as part of the full workflow.
The coordinator provides three core scripts for context management:
scripts/context-manager.py: Load, save, and update .paper_context.jsonscripts/state-checker.py: Validate stage completion and transitionsscripts/discipline-config.py: Manage discipline-specific configurations# Initialize new project
python scripts/context-manager.py init --project ./my-paper
# Check project status
python scripts/context-manager.py status
# Validate current stage
python scripts/state-checker.py literature_review
# List supported disciplines
python scripts/discipline-config.py list
# Get discipline info
python scripts/discipline-config.py info --discipline cs