Skip to content

Quick Start Guide

This guide focuses on stable user-facing entrypoints. You do not need to understand skills/, roles/, or pipelines/ to start using the system.

If you do want a detailed map of what each internal skill section contains, see Skills Guide. If you want scenario-driven routes such as literature review, empirical design, code-first methods, or rebuttal prep, see Task Recipes.

Full Functionality Requirement

If you want the full system, install and configure all of the following:

  • python3
  • codex
  • claude
  • gemini
  • OPENAI_API_KEY, ANTHROPIC_API_KEY, GOOGLE_API_KEY

Without them, you can still install workflow assets and use shell rsk check|upgrade|align, but doctor, validators, tests, and full orchestrator execution will be limited.

1. Pick an Entry Mode

Use one of these stable entrypoints:

Entry modeUse whenEntry
Claude Code commandsYou want slash-command UX inside a project.agent/workflows/*.md commands such as /paper, /lit-review, /paper-write
Orchestrator CLIYou want explicit task routing and validation`python3 -m bridges.orchestrator task-plan
Portable skill packageYou want the cross-client installable entry skillresearch-paper-workflow/

2. Validate Local Readiness

From the repo root:

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

Use doctor to check runtime CLIs, API keys, and MCP command wiring. Use the validator to confirm the repo standards are internally consistent.

3. Choose a Paper Type

The canonical paper-type pipelines are:

Paper typePipelineTypical use
systematic-reviewsystematic-review-prismaPRISMA-style evidence review
empiricalempirical-studyStandard empirical research paper
empiricalrct-preregRCT with preregistration and reporting checks
theorytheory-paperConceptual or theory-building paper
methodscode-first-methodsMethods paper where code is a first-class deliverable

4. Plan Before You Run

Inspect prerequisites and routing before execution:

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

task-plan shows:

  • contract outputs
  • prerequisite tasks
  • functional owner
  • functional handoff trace
  • runtime plan (draft / review / fallback)

5. Run a Canonical Task

Execute one task with routing, MCP evidence collection, and review:

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

Common options:

  • --mcp-strict: block if required MCP providers are unavailable
  • --skills-strict: block if required internal skill specs are missing
  • --triad: request a third independent audit when available
  • --profile, --draft-profile, --review-profile, --triad-profile: select execution profiles
  • --focus-output and --output-budget: reduce auxiliary artifact spread for this run by keeping only a smaller active output set
  • --research-depth deep plus --max-rounds: force a narrower, more adversarial evidence-expansion and revision process

6. Use Claude Code Commands When You Want UX

If you prefer command entrypoints instead of explicit Task IDs, use the Claude workflow commands after installation into your project:

text
/paper
/lit-review
/paper-read
/find-gap
/study-design
/paper-write
/submission-prep

These commands are entry UX only. The canonical task and artifact truth still lives in standards/.

7. Know When to Switch to Maintainer Docs

Use this guide for operation. Switch to maintainer docs only when you are changing the system itself:

Last updated:

Research Skills documentation