来源信息
- 仓库
- brycewang-stanford/Auto-Empirical-Research-Skills
- 最近来源活动
- 2026年4月3日 02:07
- 检测到的 SKILL.md 语言
- 英语
- 星标
- 3,291
- 分支
- 432
安装方式
默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。
检查来源文件
决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。
菜单
默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。
决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/brycewang-stanford/Auto-Empirical-Research-Skills --skill peer-review-guide命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
Route empirical-research requests through the Auto-Empirical Research Skills catalog when this whole repository is installed as one skill in Codex, CodeBuddy, Claude Code, or another IDE. Use to choose and load the right vendored AERS skill for causal inference, econometrics, replication, data acquisition, manuscript writing, peer review and referee responses, citation checking, de-AIGC editing, or full empirical-paper workflows without reading the entire repository at once.
中英双语学术降 AIGC / bilingual academic de-AIGC skill. Removes AI-generated writing signatures from empirical papers in economics, management, and the social sciences — in both English and Chinese. Covers Turnitin AI, GPTZero, Originality.ai on the English side and 知网 AMLC, 万方, 维普 on the Chinese side. Uses a six-step loop (intake → audit → claim-evidence check → differentiated rewrite → five-dimension self-score → cold-reader recheck) with two pattern libraries (22 English + 17 Chinese patterns), section-by-section strategies for empirical papers, and hard protections that keep every number, coefficient, and citation intact.
Use when a research task needs reproducible Kaggle discovery, metadata inspection, bounded public-data downloads, competition or kernel discovery, model discovery, or an explicitly approved Kaggle write/delete operation through the official CLI.
基于 SOC 职业分类
| name | peer-review-guide |
| description | Conduct thorough, constructive peer reviews and evaluate research papers |
| metadata | {"openclaw":{"emoji":"🕵️","category":"research","subcategory":"paper-review","keywords":["peer review","reviewer comments","paper evaluation","paper reading assistant","manuscript assessment"],"source":"wentor"}} |
A skill for conducting thorough, fair, and constructive peer reviews of academic manuscripts. Covers systematic evaluation frameworks, writing effective reviewer reports, and common evaluation criteria across disciplines.
First Pass (30 min): Skim for overall assessment
- Read title, abstract, introduction, conclusion
- Scan figures and tables
- Assess: Is this paper in scope? Is the question important?
Second Pass (60-90 min): Detailed critical reading
- Read the full paper carefully
- Annotate unclear points, potential errors, missing references
- Check methodology, statistical analyses, interpretation
Third Pass (30-60 min): Constructive feedback
- Formulate your major and minor comments
- Identify strengths to highlight
- Draft your review report
def evaluate_manuscript(assessments: dict) -> dict:
"""
Structured manuscript evaluation across key dimensions.
Args:
assessments: Dict mapping dimension to score (1-5) and comments
"""
dimensions = {
'novelty': {
'weight': 0.20,
'questions': [
'Does this paper present new findings, methods, or perspectives?',
'How does it advance beyond existing work?',
'Is the contribution incremental or substantial?'
]
},
'significance': {
'weight': 0.20,
'questions': [
'Is the research question important to the field?',
'Will this work influence future research or practice?',
'Is the scope appropriate for this journal?'
]
},
'methodology': {
'weight': 0.25,
'questions': [
'Is the study design appropriate for the research question?',
'Are methods described in sufficient detail to reproduce?',
'Are statistical analyses appropriate and correctly applied?',
'Are there threats to validity that are not addressed?'
]
},
'presentation': {
'weight': 0.15,
'questions': [
'Is the paper clearly written and well organized?',
'Are figures and tables informative and properly labeled?',
'Is the paper an appropriate length?'
]
},
'literature': {
'weight': 0.10,
'questions': [
'Is the related work section comprehensive?',
'Are key prior studies cited and discussed?',
'Is the paper properly positioned within the literature?'
]
},
'reproducibility': {
'weight': 0.10,
'questions': [
'Are data and code available or described sufficiently?',
'Could another researcher replicate this study?',
'Are all materials, procedures, and analyses documented?'
]
}
}
overall_score = 0
evaluation = {}
for dim, info in dimensions.items():
score = assessments.get(dim, {}).get('score', 3)
comment = assessments.get(dim, {}).get('comment', '')
overall_score += score * info['weight']
evaluation[dim] = {
'score': score,
'weight': info['weight'],
'weighted_score': score * info['weight'],
'comment': comment
}
evaluation['overall_score'] = round(overall_score, 2)
evaluation['recommendation'] = (
'Accept' if overall_score >= 4.0
else 'Minor Revision' if overall_score >= 3.5
else 'Major Revision' if overall_score >= 2.5
else 'Reject'
)
return evaluation
SUMMARY (2-3 sentences)
Briefly describe what the paper does and its main contribution.
This shows the authors you read and understood their work.
STRENGTHS (3-5 bullet points)
- Specific positive aspects
- "The experimental design is rigorous, with appropriate controls..."
- "The visualization in Figure 3 effectively communicates..."
MAJOR COMMENTS (numbered, typically 2-5)
Issues that must be addressed before the paper can be accepted.
These concern correctness, validity, or significant gaps.
1. [Specific concern with reference to section/page]
"In Section 3.2, the assumption that X holds is questionable
because [reason]. The authors should either provide evidence
for this assumption or discuss what happens if it is relaxed."
2. [Another major concern]
MINOR COMMENTS (numbered, typically 3-10)
Suggestions for improvement that are not critical but would
strengthen the paper.
1. "On page 5, line 23: consider citing Smith et al. (2023)
who address a similar phenomenon."
TYPOS AND FORMATTING (optional, brief list)
- Page 3, line 14: "effect" should be "affect"
- Table 2: column headers are cut off
CONFIDENTIAL COMMENTS TO THE EDITOR (separate section)
Overall assessment, conflicts of interest, ethical concerns.
This is NOT shared with the authors.
def format_review_comment(comment_type: str, section: str,
issue: str, suggestion: str) -> str:
"""
Format a review comment following best practices.
Args:
comment_type: 'major' or 'minor'
section: Where in the paper (e.g., 'Section 3.2, page 7')
issue: What the problem is
suggestion: How to address it
"""
return (
f"[{comment_type.upper()}] {section}\n"
f"Issue: {issue}\n"
f"Suggestion: {suggestion}\n"
)
# Good review comment (specific, actionable, constructive):
print(format_review_comment(
'major',
'Section 4.1, Table 3',
'The comparison with baseline methods uses different evaluation metrics '
'(accuracy for the proposed method, F1 for baselines), making the '
'comparison unfair.',
'Please report the same set of metrics (precision, recall, F1, accuracy) '
'for all methods, including the proposed approach, to enable fair comparison.'
))