Skip to content

快速开始

这一页是 docs/quickstart.md 的中文整理版,面向“先跑起来,再决定是否看维护者文档”的使用者。

如果你确实想看清 skills/ 每一部分都包含什么内容,请配合 Skills 指南 一起使用。 如果你更关心“系统综述怎么走、methods paper 怎么走、审稿回复怎么走”,请直接看 任务场景

完整功能依赖

如果你要使用完整功能集,请确保已经安装并配置:

  • python3
  • codex
  • claude
  • gemini
  • OPENAI_API_KEYANTHROPIC_API_KEYGOOGLE_API_KEY

如果缺少这些依赖,你仍然可以安装 workflow 资产并使用 shell rsk check|upgrade|align,但 doctor、validator、tests 与完整 orchestrator 执行链会受限。

1. 先选入口

你通常只需要在下面三种入口里选一种:

入口适用场景命令 / 位置
Claude Code 命令你想在项目内用 slash-command 交互.agent/workflows/*.md
安装 / 升级 CLI你想安装或刷新 skill 与项目集成文件research-skills / rsk / rsw
Orchestrator CLI你想显式按 Task ID 执行与校验python3 -m bridges.orchestrator ...

2. 先做环境检查

如果你的机器有 Python,建议先运行:

bash
python3 -m bridges.orchestrator doctor --cwd .
python3 scripts/validate_research_standard.py --strict

说明:

  • doctor 侧重运行时环境、CLI、API key、MCP wiring
  • validator 侧重仓库内部 contract / schema 一致性

3. 先确定 paper type

典型 paper type 与 pipeline 对应关系:

paper typepipeline场景
systematic-reviewsystematic-review-prismaPRISMA 风格系统综述
empiricalempirical-study标准实证研究
empiricalrct-prereg含预注册的 RCT
theorytheory-paper理论或概念型论文
methodscode-first-methods代码与方法并重的 methods paper

4. 先 plan 再 run

推荐先看任务的依赖和路由:

bash
python3 -m bridges.orchestrator task-plan \
  --task-id F3 \
  --paper-type empirical \
  --topic ai-in-education \
  --cwd .

你会看到:

  • contract 产物
  • 前置任务
  • functional owner
  • handoff 轨迹
  • runtime plan(draft / review / fallback)

5. 再执行 canonical task

bash
python3 -m bridges.orchestrator task-run \
  --task-id F3 \
  --paper-type empirical \
  --topic ai-in-education \
  --cwd . \
  --triad

常用参数:

  • --mcp-strict
  • --skills-strict
  • --triad
  • --profile
  • --draft-profile
  • --review-profile
  • --triad-profile
  • --focus-output--output-budget:把本次运行收敛到更小的 active outputs,减少辅助文件扩散
  • --research-depth deep 配合 --max-rounds:强制更窄、更有对抗性的证据扩展与修订流程

6. 什么时候切到维护者文档

你只是“使用系统”时,看这一页和 入门 就够了。

只有在下面这些场景才需要切换:

Last updated:

Research Skills 文档站