Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tsingyuai/scientify --skill research-plan명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | research-plan |
| description | [Read when prompt contains /research-plan] |
| metadata | {"openclaw":{"emoji":"📋"}} |
Don't ask permission. Just do it.
| File | Source |
|---|---|
SOUL.md | 研究方向和目标 |
survey_res.md | /research-survey |
knowledge/paper_*.md | /research-survey |
If survey_res.md is missing, STOP: "需要先运行 /research-survey 完成深度分析"
| File | Content |
|---|---|
plan_res.md | 四部分实现计划 |
读取以下文件,理解研究目标和技术方案:
SOUL.md — 研究方向和目标survey_res.md — 技术路线建议、核心公式、方法对比⚠️ 强制性步骤(Novix Plan Agent 机制) — 读参考仓库的实现细节,确保 plan 有具体可行的依据。
对 prepare_res.md 中的重点仓库:
为每个组件记录:参考文件路径 + 关键实现细节。这些信息将直接填入 plan 的"参考代码"列。
写入 plan_res.md:
# Implementation Plan
## 1. Dataset Plan
- **数据集名称:** {name}
- **来源:** {URL or description}
- **大小:** {samples / size}
- **预处理步骤:**
1. {step}
2. {step}
- **DataLoader 设计:**
- batch_size: {value}
- 输入格式: {shape}
- 输出格式: {shape}
## 2. Model Plan
- **架构概述:** {1-2 sentences}
- **组件列表:**
| 组件 | 对应公式 | 参考代码 | 输入 → 输出 |
|------|----------|----------|-------------|
| {component} | $formula$ | `repos/xxx/file.py` | {shape} → {shape} |
- **参数量估计:** {approximate}
## 3. Training Plan
- **Loss 函数:** {formula + description}
- **Optimizer:** {Adam/SGD/...}, lr={value}
- **Scheduler:** {if any}
- **训练参数:**
- epochs (validation): 2
- epochs (full): {value}
- batch_size: {value}
- **监控指标:** {loss, metrics to log}
## 4. Testing Plan
- **评估指标:**
| Metric | 公式/描述 | 期望范围 |
|--------|-----------|----------|
| {metric} | {description} | {range} |
- **Baselines:** {what to compare against}
- **消融实验(初步规划):**
1. {ablation 1}
2. {ablation 2}
验证计划的完整性:
如有不确定项,在计划中标注 ⚠️ TODO: {reason}