Views
No views yet
1pip install -r requirements.txt
2pip install -e .python scripts/validate_cases.py --data ../stateshiftbench_dataset/data/cases1python scripts/run_eval.py --data ../stateshiftbench_dataset/data/cases --strategy direct --limit 5 --output outputs/direct_smoke.jsonl
2python scripts/summarize_results.py --episodes outputs/direct_smoke.jsonl1python scripts/run_eval.py --data ../stateshiftbench_dataset/data/cases --strategy stact_reference --limit 5 --output outputs/stact_reference_smoke.jsonl
2python scripts/summarize_results.py --episodes outputs/stact_reference_smoke.jsonldirect: follows the direct-commit reference trace, representing an agent that acts on the first snapshot.stact_reference: follows the State-Track-Validate-Act reference trace when available, representing state-aware behavior.1stateshiftbench/
2 environment.py
3 metrics.py
4 runner.py
5 schemas.py
6 baselines/
7 reference.py
8scripts/
9 validate_cases.py
10 run_eval.py
11 summarize_results.py
12tests/
13 test_runner_smoke.py