Installation#

Package Install#

pip install design-research-experiments

Editable Install#

git clone https://github.com/cmudrc/design-research-experiments.git
cd design-research-experiments
python -m venv .venv
source .venv/bin/activate
python -m pip install --upgrade pip
pip install -e ".[dev]"

Maintainer Shortcut#

make dev

Notes#

The experiments package keeps runtime dependencies deliberately small and delegates optional sibling interoperability to design_research_problems.integration, design_research_agents.integration, and the top-level design_research_analysis artifact API. The package itself remains the orchestration surface; there is intentionally no separate design_research_experiments.integration module. See Dependencies and Extras for development extras and release-check guidance.