experiment-domains

python scripts/setup_experiment.py \

Content Preview
# Experiment Domains Guide

## Domain: Engineering

### Code Speed Optimization

```bash
python scripts/setup_experiment.py \
  --domain engineering \
  --name api-speed \
  --target src/api/search.py \
  --eval "python -m pytest tests/bench_search.py --tb=no -q" \
  --metric p50_ms \
  --direction lower \
  --evaluator benchmark_speed
```

**What the agent optimizes:** Algorithm, data structures, caching, query patterns, I/O.
**Cost:** Free — just runs benchmarks.
**Speed:** ~5 min/experiment, 
How to Use

Recommended: Install to project (local)

mkdir -p .claude/skills
curl -o .claude/skills/experiment-domains.md \
  https://raw.githubusercontent.com/alirezarezvani/claude-skills/main/engineering/autoresearch-agent/references/experiment-domains.md

Skill is scoped to this project only. Add .claude/skills/ to your .gitignoreif you don't want to commit it.

Alternative: Clone full repo

git clone https://github.com/alirezarezvani/claude-skills

Then reference at engineering/autoresearch-agent/references/experiment-domains.md

Related Skills