Active Research Workspace

CRITICAL RULE: docs/active/experiments/ must be EMPTY after experiment completion.

This directory is for experiments currently in progress. An empty workspace = clear research state.

Experiment Lifecycle

1. Start Experiment

Create experiments/[name]-experiment.md with hypothesis:

# [Name] Experiment

## Hypothesis

[What you expect to find]

## Motivation

[Why this matters]

## Approach

[How you'll test it]

## Success Criteria

[How you'll know if it worked]

2. Implement

3. Iterate with Quick Benchmarks

deno task bench:update  # Quick feedback (~2 min)

4. Run Full Statistical Analysis (Before Completing)

deno task bench:analyze 5 docs/analyses/benchmark-statistics.md  # ~30 min

CRITICAL: Always outputs to benchmark-statistics.md (OVERWRITES, don't create experiment-specific files).

The data is generic (win rates, CV%, scenarios) - same structure for all experiments.

5. Document Findings

Create docs/analyses/[name]-analysis.md:

# [Name] Analysis

**Finding**: [Key result]

**Impact**: [What changed]

---

## Hypothesis

[What you expected]

## Methodology

[How you tested]

## Results

[Data table]

## Conclusion

[What this means]

6. Update Status

Mark experiment doc with:

7. Resolution

✅ VALIDATED:

❌ REJECTED (moving on):

❌ REJECTED (might revisit):

8. Clean Workspace

CRITICAL: DELETE completed experiments from docs/active/experiments/

Before ending any experiment, verify:

File Naming Convention

Prevents confusion:

Example Workflow

# WRONG - Completed experiments still in active/
docs/active/experiments/
├── experiment-1.md (COMPLETED) ❌
├── experiment-1-results.md ❌
├── experiment-2.md (IN PROGRESS)

# CORRECT - Only active work
docs/active/experiments/
└── experiment-2.md (IN PROGRESS)# Completed work properly archived
docs/analyses/experiment-1-analysis.md ✅
archive/docs/experiments/failed-experiment-1.md ✅

Why Keep It Empty?

An empty active/experiments/ directory means:

Mental model: docs/active/ is your scratch pad (work in progress), everything else is permanent record.

New experiments will be added when:

See Also