BillyChen123/qdd
项目介绍Project Overview
QDD 是面向生物医学研究的 DSH 插件,以问题驱动的方式编排长周期科研流程。它将公共数据、单细胞与空间组学等 34 项本地技能按角色和任务按需注入,生成可审计的证据与工件,并记录问题的精炼、确认、转向或终结。适用于需要人机协作、持续推进多步骤研究的状态管理。注:Auto Mode 当前仅支持 Anthropic 兼容协议,且该仓库为 v0.1.0-rc1 提交候选线,新架构在独立分支开发。
QDD is a DSH plugin that turns long-horizon biomedical research into an auditable loop of questions, evidence, artifacts, and next-study decisions. It orchestrates a question-driven workflow, routes 34 local skills by role and task instead of dumping them into every prompt, and treats public datasets like CELLxGENE, GEO, PubMed, CellMarker, and ligand-receptor references as reusable local evidence. Use it when multi-step human-agent research needs shared state, question evolution, and reproducible domain execution. Caveat: Auto Mode currently speaks only the Anthropic protocol and the repo is the v0.1.0-rc1 submission-candidate line, so new research architectures live elsewhere.
请帮我了解并安装插件:【qdd】【https://github.com/BillyChen123/qdd】
把上面这条消息直接发给当前会话里的 DSH,让它帮你了解并安装。安装命令不一定准确,发给 DSH 更稳。Send this message to DSH in your current session. CLI install commands may not be accurate across systems — DSH will figure it out for you.
或使用命令行安装(适合开发者)Or use CLI install (for developers)
命令行安装CLI Install
dsh plugin --profile web add github:BillyChen123/qdd
把 BillyChen123/qdd 加入你的 DSH 配置(web profile)即可启用。
READMEREADME
Question-driven orchestration for AI-assisted biomedical discovery.
Turn long-horizon research into an auditable loop of questions, evidence, artifacts, and next-study decisions.
Language
简体中文 · English
Quick Links
Release status: QDD
v0.1.0-rc.1is the public submission-candidate line. This repository accepts reproducibility fixes, bug fixes, documentation improvements, and changes required by manuscript review. New research architectures are developed separately so this line remains a stable reference for the paper.
Quick Start
Requirements:
- Node
>=20.19.0 - An Anthropic-compatible model configuration for Auto Mode
Install locally:
npm install
npm run build
npm install -g .
Initialize a research project:
mkdir my-qdd-project
cd my-qdd-project
qdd init .
Then either run the six human workflows through your agent, or start Auto Mode for the core research loop:
qdd auto --max-turns unlimited
More installation details are in docs/04-installation-guide.md.
What QDD Gives You
| Question governance Every study records how the research question changed: refinement, confirmation, pivot, or dissolution. |
Agent-ready memory Contracts, study files, task records, artifacts, and evolution history stay readable to both humans and agents. |
| Domain skill injection 34 local skills are routed by role and task instead of being dumped into every prompt. |
Public-data grounding CELLxGENE, GEO, PubMed, CellMarker, and ligand-receptor references become auditable local artifacts. |
Why QDD
Modern AI agents can write code, search public databases, and run analyses. The hard part is no longer only execution. The hard part is keeping a multi-step scientific project coherent after every partial result, failed hypothesis, dataset limitation, or promising signal.
QDD is built for that gap:
| Without QDD | With QDD |
|---|---|
| Scattered chats, scripts, notebooks, and folders | One readable research state shared by humans and agents |
| Agents optimize the next task only | Agents optimize the next question |
| Negative results become dead ends | Negative results become pivots, validations, or robustness studies |
| Public-data searches are hard to audit | Dataset and reference choices are recorded as reusable evidence |
| Domain knowledge must be re-explained every turn | Domain skills are injected into the right role at the right time |
The Six Human Workflows
QDD is intentionally small. The human-facing model is five research-loop workflows plus a project-level conclude workflow. Auto Mode covers the research loop only.
1. Start
Establish the project contract: research theme, scope, data assumptions, runtime environment, durable resources, and mode. This is the stable "why are we doing this?" layer.
2. Propose
Turn the current frontier into one bounded study. A good study has a judgeable question, a falsifiable expectation, a small task graph, and explicit resource fit.
3. Explore
Stress-test a proposed study before execution. This is where the agent and user refine boundaries, decide whether public data is needed, and avoid over-broad or under-powered plans.
4. Apply
Execute the study tasks. QDD injects task-local domain skills, runs code inside the project, preserves scripts and outputs, and keeps final artifacts under a canonical study output surface.
5. Close
Synthesize evidence and update the research frontier. A close event can refine, confirm, pivot, or dissolve a question. QDD records what changed, what remains open, which artifacts are reusable, and what next candidates are worth pursuing.
6. Conclude
Use $qdd-conclude in Codex or the corresponding qdd-conclude entry in Claude Code when the project is synthesis-ready. The general-purpose agent writes a cross-study research synthesis, aligns the manuscript narrative with the user, writes and revises the complete story.md, and renders TeX only after the user accepts that story. Conclude is human-only and is not an Auto Mode phase.
Auto Mode
Auto Mode runs the whole loop through an Anthropic-compatible SDK session:
Start -> Propose -> Apply -> Close -> Propose -> ...
It is designed for long-running research automation, not a single prompt. The runtime decides the next phase from persisted QDD state, while the thesis-manager role decides whether the project should continue, stop, validate, pivot, or search for better data.
Minimal launch:
qdd auto --max-turns unlimited
Auto Mode currently speaks the Anthropic protocol. Install dependencies and configure an Anthropic-compatible model before running it. If you use DeepSeek as the default backend, route it through an Anthropic-compatible gateway or internal proxy:
export ANTHROPIC_AUTH_TOKEN="your-api-key"
export ANTHROPIC_BASE_URL="https://<your-anthropic-compatible-deepseek-gateway>"
export ANTHROPIC_MODEL="deepseek-reasoner"
qdd auto --max-turns unlimited
You can also pass the model explicitly:
qdd auto --model deepseek-reasoner --max-turns unlimited
Domain Skill Injection
QDD ships with 34 local skills that are routed by role and task instead of dumped into every prompt.
| Skill layer | Current coverage |
|---|---|
| Thesis planning | project-frontier planning and continue/stop/pivot decisions |
| Study brain | single-cell, spatial, and public-data planning |
| scRNA-seq | QC, integration, clustering, annotation, DE, group stats, module scoring, enrichment, communication, trajectory |
| scATAC-seq | LSI preprocessing, latent integration, gene-activity annotation, DAR |
| Spatial transcriptomics | QC, integration, clustering, annotation, group stats, DE, neighborhood, niche composition, structure quantification |
| Public data and reference | CELLxGENE, GEO, PubMed, CellMarker, ligand-receptor resources |
The point is not just more tools. The point is role-aware injection:
- thesis-manager gets frontier-planning skills
- study-brain gets planning skills
- executor gets only the task-local domain skills it needs
- public-data skills are separated from downstream analysis skills
This keeps prompts smaller, analysis more reproducible, and agent behavior easier to audit.
Public Data As First-Class Research Context
QDD treats external data and references as evidence, not hidden prompt memory.
Supported public-data/reference surfaces currently include:
- CELLxGENE dataset discovery
- GEO candidate capture
- PubMed evidence capture
- CellMarker marker reference capture
- ligand-receptor database capture
Dataset acquisition and downstream analysis are deliberately decoupled:
external source -> fetch/capture skill -> local artifact -> domain executor -> study output
That means an agent can first find or validate a dataset, then hand a normalized local artifact to a single-cell or spatial workflow without mixing search logic into analysis code.
What QDD Is Not
- It is not a clinical decision system.
- It is not a black-box cloud notebook.
- It is not a replacement for domain judgment.
- It is not a rigid workflow engine where every branch is pre-scripted.
QDD is a protocol layer for human-agent research: local files, explicit evidence, reusable artifacts, and question evolution.
nexu-io/open-design
ruvnet/ruflo
amruthpillai/reactive-resume
esengine/DeepSeek-Reasonix
volcengine/OpenViking
Molunerfinn/PicGo
titanwings/distilly
titanwings/colleague-skill