Dr. Claw: An AI Scientist Workspace for Vibe Research

Dingjie Song, Hanrong Zhang, Dawei Liu, Yixin Liu, Zongxia Li, Zhengqing Yuan, Siqi Zhang, Henry Peng Zou, Zhiling Yan, Yuxuan Zhang, Yanfang Ye, Philip S. Yu, Lichao Sun

Dr. Claw unifies AI research into a controllable, auditable workspace by wrapping existing coding agents in a persistent task-graph orchestration layer.

How can we unify the fragmented research workflow—problem definition, experimentation, and writing—into a single, state-aware AI workspace?

Research agents can execute code, but they lack the structure to manage long-horizon projects, leaving researchers to manually track progress across fragmented tools and lost decision histories. Dr. Claw wraps these agents in a persistent orchestration layer that maps high-level goals into a structured task graph, maintaining an auditable log of every decision, artifact, and execution step. In open-ended research tasks, this integration improves completeness by reliably enforcing research hygiene—such as limitations sections and literature citations—that bare agents frequently omit.

Paper Primer

Dr. Claw models research as a state-transition loop where the system manages four persistent objects: a Task Graph, Artifact Store, Decision Log, and Execution Trace. It functions as a wrapper: it delegates high-throughput execution to existing command-line coding agents while the orchestration layer handles task decomposition, skill-based tool selection, and human-in-the-loop checkpoints.

Dr. Claw increases research completeness in open-ended tasks by enforcing best-practice hygiene.

In a three-task medical research pilot, Dr. Claw achieved a pooled completeness score of 0.952 compared to 0.873 for the bare agent, specifically closing gaps in subgroup analysis and literature citations.

The system provides a reusable library of 171 skills mapped to five research stages, allowing users to trigger specific capabilities (e.g., "reference audit" or "subgroup analysis") that the underlying agent might otherwise ignore. Because the orchestration layer persists the entire project state, users can recover from failures by revising or retrying specific tasks without wiping the existing artifact trail.

Why wrap an existing agent instead of building a new, specialized research executor?

The authors argue that the bottleneck in AI research is not isolated execution capability, but process orchestration and context maintenance. By wrapping existing agents, Dr. Claw reuses proven coding performance while adding the auditability and human-control affordances that bare executors lack.

Does this system automate the research process entirely?

No; Dr. Claw is designed for "Vibe Research," a human-in-the-loop paradigm where the AI handles templatable execution while the human retains ownership of research direction, evaluation criteria, and final acceptance.

The Research Fragmentation Problem

We expose why fragmented tools hinder reproducible research and introduce a unified workflow.

Current research pipelines are split among disparate tools—chat interfaces, IDEs, terminals, and document editors—so the plan, intermediate decisions, and artifacts become scattered and hard to audit.

When a researcher hops between separate applications, each step lives in its own silo, making the overall workflow opaque and error‑prone.

The shift from tool‑switching to continuous research workflows eliminates hidden hand‑offs and preserves a complete, auditable process.

Existing Research Automation

We position Dr. Claw among prior agents, highlighting its CLI integration, persistent state, and full‑workflow control.

Prior work splits into three strands: end‑to‑end automation, low‑code authoring, and intervenable agents. Dr. Claw unifies these strands by wrapping a CLI coding agent, persisting four research‑state objects, and enabling continuous human takeover.

A CLI coding agent is a program that receives textual commands on a terminal and emits source‑code files as its response.

We evaluate Dr. Claw’s impact on workflow efficiency, quality, and usability rather than on raw model performance.

The Dr. Claw Architecture

Dr. Claw turns research into a single, continuously orchestrated workflow.

Researchers currently hop between separate tools for framing a problem, running experiments, and writing papers. Dr. Claw’s answer is to keep the entire process inside a single, state‑aware loop, so every decision and artifact is visible and revisitable.

The four objects form the immutable backbone of a research project, recording what to do, what has been produced, what decisions were made, and how the system progressed.

Step 1: User adds a constraint to T1, creating a new node in the Task Graph.

Step 2: AI executes T1, producing artifact v1; the Artifact Store records $v1$ and links it to T1.

Step 3: The Execution Trace logs “T1 completed, success=true”.

Step 4: Decision Log records the human’s acceptance of $v1$ and schedules T2.

Step 5: State $S_{t+1}$ now reflects the updated Task Graph, Artifact Store (v1), Decision Log (acceptance), and Execution Trace (completion).

Even this two‑task toy shows how every modification flows through the four objects, making the whole workflow reversible and inspectable.

Interaction layer: the researcher writes a high‑level goal and uploads initial artifacts.

Orchestration layer: the goal is parsed into a Task Graph node, a suitable skill is attached, and the Decision Log records the intent.

Execution layer: the attached skill runs, updates the Artifact Store with new results, and appends an entry to the Execution Trace.

Orchestration checks the safety policy; if the action is disallowed, the system pauses and prompts the user.

After verification, the Decision Log records acceptance, and the Interaction layer presents the updated state to the researcher.

Permission check before any external call.

**Figure 1.** Control split in Dr. Claw: the Human-Controlled side sets goals, constraints, and acceptance decisions; the AI-Execution side runs the five core AI operations (Plan $arrow$ Execute), connected through four state objects and checkpoint feedback (Verify/Revise/Retry/Handoff).

**Figure 2.** **Overall system view of Dr. Claw.** Top: four state objects (Task Graph, Artifact Store, Decision Log, Execution Trace). Middle: three system layers (Interaction, Orchestration, Execution). Bottom: iterative workflow steps (Plan–Execute–Verify–Write-back). Lowest: safety policy constraint ($Action_t \in \mathcal{A}(Policy_t)$).

The four state objects serve as the single source of truth for research continuity, ensuring that every artifact, decision, and execution step is persistently recorded and instantly accessible.

How does Dr. Claw’s state‑object model differ from a simple relational database that stores tasks and results?

A relational database is passive storage; Dr. Claw’s objects are active participants in a feedback loop. The transition function $f$ continuously rewrites the objects based on actions and observations, enabling reversible, versioned, and policy‑aware updates rather than static rows.

Human-in-the-Loop Research Workflow

Illustrates how Dr. Claw turns a high‑level research intent into a controllable, auditable workflow.

Research tasks often stall because high‑level intent cannot be reliably turned into concrete, repeatable steps. The core trick is to keep the entire process inside a persistent, state‑aware workflow so that every decision is visible and reversible.

Human oversight is kept at the decision points while the system automates decomposition, execution, and bookkeeping.

Dr. Claw parses the prompt and creates a Task Graph with two nodes: (1) literature review, (2) experiment setup.

The human reviews the generated brief and approves node 1.

Node 1 is dispatched to a literature‑search executor; results are written to the Artifact Store.

The Decision Log records the approval and the executor’s output.

Node 2 is then presented; the human tweaks the hyper‑parameter range before confirming.

Execution proceeds, the final model artefact is stored, and the Execution Trace logs the full run.

This concrete loop shows how the system preserves human control while automating the heavy lifting, and how every artefact is traceable for later recovery.

Generate a structured brief from the high‑level research prompt.

Construct a dependency‑aware Task Graph and schedule tasks.

Execute each task (Plan → Execute) on heterogeneous backends.

Verify outputs against the acceptance criteria.

Write results into the Artifact Store and update the Task Graph.

Record every human decision and system event in the Decision Log and Execution Trace.

The centre panel of Figure 3 is the primary orchestration view. A single unified research prompt drives the whole process, while the user (research lead) confirms goals and key decisions. Dr. Claw handles decomposition, dispatch, and state feedback, and the four state objects stay synchronized throughout.

**Figure 3.** Three-view scenario diagram. Left: Skills Dashboard for capability discovery and filtering. Center: main orchestration interface for planning, execution feedback, and human approval. Right: Task List for progress tracking and next-step selection.

The left panel demonstrates capability management. Users browse the Skills Dashboard by research stage, filter by tags (e.g., Ideation, Experiment), and can manually add new skills to the current project for later invocation.

The right panel shows the Task List interface. It synchronises task status, displays a progress bar, and groups tasks by stage. Users can inspect progress, trace each task’s ID and linked skill tags, or trigger the next pending step directly.

The core trick is a single, persistent research prompt combined with unified state objects, which lets Dr. Claw swap backends, preserve audit trails, and keep the human in control.

Performance and Recovery Evaluation

Dr. Claw improves research completeness and auditability while preserving output quality.

Recall that Dr. Claw models research as a persistent, state‑aware workflow of four core objects. This section shows how that design impacts completeness and auditability.

Dr. Claw achieves higher pooled research completeness than the bare command‑line agent.

Across three medical tasks, Dr. Claw attained a pooled completion of 0.952 versus 0.873 for the bare agent.

**Figure 4.** Open-ended completion per task (fraction of 21 elements); dotted lines are pooled means.

**Figure 5.** Pooled pass rate on the three research-hygiene elements where the conditions diverge.

**Figure 6.** Whether a run persists a queryable process model (present/absent by design, not scored).

**Figure 7.** Captured failure and non-destructive recovery inside a project. Left: the induced wrong-path error, captured in the execution trace. Right: the in-place fix and recovered result, with all prior files retained.

Ethics and Limitations

We acknowledge funding sources and outline the ethical safeguards built into Dr. Claw.

We thank the National Science Foundation for partial support via grants CRII‑2246067, ATD‑2427915, POSE‑2346158, and POSE‑2449280.

Dr. Claw is designed to assist research under sustained human control and never operates autonomously. Every stage of generation passes through explicit human checkpoints, and the Decision Log and Execution Trace record all approvals, revisions, and rejections.

Critical content such as citations, experimental conclusions, and manuscript claims must be verified by a researcher before use. When handling sensitive data, users should apply least‑privilege permission settings; in our study the medical datasets remained on the authors’ server and no patient‑level data were released. For high‑risk domains like healthcare, system outputs must not be employed directly for real‑world clinical decisions, and the human study participants provided informed consent while AI‑based coding assistants were used in accordance with venue policy.

Human Study and Retrospective Analysis

Ablation results show that removing Dr. Claw’s components degrades time, performance, and experience across research stages.

Recall that Dr. Claw unifies fragmented research tools by modeling the workflow as a persistent, state‑aware process over four core objects.

Dr. Claw yields significantly shorter completion‑time bands than both No‑AI and Web/Desktop‑AI across all stages.

Friedman $\chi$²(2)=13.56, p=0.0011; pairwise Wilcoxon p = 0.0469 for both controls.

Stage‑output performance scores are highest for Dr. Claw, intermediate for Web/Desktop‑AI, and lowest for No‑AI.

Friedman $\chi$²(2)=9.25, p=0.0098; pairwise Wilcoxon p = 0.0469 (Dr. Claw vs No‑AI) and p = 0.0625 (Dr. Claw vs Web/Desktop‑AI).

Experience scores are strongest for Dr. Claw, with pairwise significance against both baselines.

Friedman $\chi$²(2)=12.29, p=0.0021; Holm‑corrected pairwise p = 0.0469 for all three stages.

**Figure c.** Mean performance (Perf) and experience (Exp); error bars: SE.

This heatmap displays the proportion of switch-count bands across three stages (Stage 1, Stage 2, Stage 3) for three different systems (N=No-AI, W=Web/Desktop-AI, D=Dr. Claw). The color intensity represents the proportion, ranging from 0% (white) to 100% (dark red).

**Figure a.** Time-band distributions (h/d/w/m: hour/day/week/month).

Questions & answers

What is Dr. Claw and what is its main contribution?

Dr. Claw is an AI scientist workspace that wraps existing command-line coding agents in a persistent orchestration layer, modeling research as a state-transition loop over four objects: a Task Graph, Artifact Store, Decision Log, and Execution Trace. Its main contribution is adding process orchestration, auditability, and human-in-the-loop checkpoints to agents that already have strong code-execution capabilities.

What problem does Dr. Claw address?

Dr. Claw addresses the fragmentation of research pipelines across disparate tools—chat interfaces, IDEs, terminals, and document editors—which causes plans, decisions, and artifacts to become scattered and difficult to audit. The authors argue the core bottleneck in AI-assisted research is not isolated execution capability but process orchestration and context maintenance.

What is 'Vibe Research' as defined in the paper?

Vibe Research is a human-in-the-loop paradigm in which the AI handles templatable execution tasks while the human retains ownership of research direction, evaluation criteria, and final acceptance. Dr. Claw is explicitly designed for this paradigm and does not automate the research process entirely.

What are the four persistent state objects in Dr. Claw?

The four persistent state objects are the Task Graph, Artifact Store, Decision Log, and Execution Trace. Together they serve as the single source of truth for research continuity, ensuring every artifact, decision, and execution step is persistently recorded and accessible.

How does Dr. Claw's state-object model differ from a relational database?

Unlike a relational database, which is passive storage, Dr. Claw's objects are active participants in a feedback loop. A transition function continuously rewrites the objects based on actions and observations, enabling reversible, versioned, and policy-aware updates rather than static rows.

Why does Dr. Claw wrap an existing agent rather than building a new specialized research executor?

The authors argue that the bottleneck is process orchestration and context maintenance, not execution capability, so wrapping an existing command-line coding agent reuses its proven coding performance while adding auditability and human-control affordances that bare executors lack.

What is the skill library in Dr. Claw and how large is it?

Dr. Claw provides a reusable library of 171 skills mapped to five research stages, allowing users to trigger specific capabilities—such as 'reference audit' or 'subgroup analysis'—that an underlying agent might otherwise omit. Users can browse skills by stage, filter by tags, and manually add new skills to a project.

What are the five research stages to which Dr. Claw's skills are mapped?

The paper mentions five research stages and lists example tags such as Ideation and Experiment, but does not enumerate all five stage names explicitly in the provided text.

How does Dr. Claw improve research completeness?

By enforcing research hygiene through its orchestration layer, Dr. Claw reliably ensures that elements such as limitations sections and literature citations are included—components that bare agents frequently omit in open-ended research tasks.

What are the key components of Dr. Claw's user interface?

The interface has three main panels: a central orchestration view driven by a unified research prompt where the user confirms goals and key decisions; a Skills Dashboard on the left for browsing and adding capabilities by research stage; and a Task List on the right that synchronizes task status, displays a progress bar, and groups tasks by stage.

What evaluation approach does the paper use?

The paper evaluates Dr. Claw's impact on workflow efficiency, quality, and usability rather than on raw model performance, using a human study and a retrospective analysis. The paper does not report specific quantitative benchmark scores in the provided text.

What are the stated limitations and ethical safeguards of Dr. Claw?

Dr. Claw is designed never to operate autonomously; every generation stage passes through explicit human checkpoints, and the Decision Log and Execution Trace record all approvals, revisions, and rejections. Critical content such as citations and experimental conclusions must be verified by a researcher, and outputs must not be used directly in high-risk domains like healthcare.

How does Dr. Claw handle sensitive or medical data?

The paper states that users should apply least-privilege permission settings when handling sensitive data, and that in the authors' own study medical datasets remained on the authors' server with no patient-level data released.

How does Dr. Claw compare to prior work in research automation?

The paper identifies three prior strands—end-to-end automation, low-code authoring, and intervenable agents—and positions Dr. Claw as unifying all three by wrapping a CLI coding agent, persisting four research-state objects, and enabling continuous human takeover at any point.

Can Dr. Claw recover from failures mid-project?

Yes; because the orchestration layer persists the entire project state, users can recover from failures by revising or retrying specific tasks without wiping existing artifacts, enabling fault-tolerant long-horizon research workflows.

Who funded Dr. Claw and where was it published?

The paper acknowledges partial support from the National Science Foundation via grants CRII-2246067, ATD-2427915, POSE-2346158, and POSE-2449280. The paper does not specify the publication venue or conference in the provided text, and the arXiv identifier is 2609.00365.

Key terms

Vibe Research
A human-in-the-loop research paradigm in which an AI system handles templatable execution tasks while the human researcher retains control over direction, evaluation, and final acceptance.
Task Graph
One of Dr. Claw's four persistent state objects; a structured representation that maps high-level research goals into a hierarchy of concrete, trackable subtasks.
Artifact Store
One of Dr. Claw's four persistent state objects; a repository that retains all outputs—such as datasets, figures, and manuscripts—produced during a research project.
Decision Log
One of Dr. Claw's four persistent state objects; an auditable record of every choice, approval, revision, and rejection made during the research workflow.
Execution Trace
One of Dr. Claw's four persistent state objects; a step-by-step record of every code execution and agent action taken during the project.
Orchestration layer
The component of Dr. Claw that sits above the underlying coding agent and manages task decomposition, skill selection, state persistence, and human-in-the-loop checkpoints.
Skill
A reusable, named capability in Dr. Claw's library (e.g., 'reference audit' or 'subgroup analysis') that can be explicitly invoked to perform a specific research sub-task.
Skills Dashboard
The Dr. Claw interface panel where users browse, filter by research stage or tag, and add skills to their current project for later invocation.
State-transition loop
Dr. Claw's core computational model in which a transition function continuously updates the four persistent state objects based on actions taken and observations received.
Research hygiene
A set of standard scholarly practices—such as including a limitations section and citing relevant literature—that Dr. Claw enforces through its orchestration layer.
CLI coding agent
A command-line interface agent capable of writing and executing code, which Dr. Claw wraps to handle high-throughput execution tasks within the broader research workflow.
Human-in-the-loop
A system design principle in which a human is required to review and approve key decisions at defined checkpoints rather than allowing the AI to proceed fully autonomously.
Least-privilege permission
A security practice in which a system or user is granted only the minimum data access rights necessary to complete a task, reducing the risk of unauthorized data exposure.

Read the original paper

Open the simplified reader on Paperglide

Browse all simplified papers