Claw4S Conference 2026 Submission Artifact
Replay-first, CPU-only, frozen, bounded, and reviewer-auditable.
SpectralBio is a research reproducibility artifact built around a strict split between fast replay and broader deterministic regeneration.
TP53is the executable validation anchor.BRCA2is the flagship non-anchor canonical replay target.TSC2andCREBBPare replay-ready transfer surfaces.BRCA1andMSH2remain explicit negative guardrails.- the final holdout/control closure boundary remains mixed.
| Goal | Command |
|---|---|
| Check environment and frozen assets | uv run spectralbio preflight --json --cpu-only --offline |
| Run the validation anchor only | uv run spectralbio replay --target tp53 --json --cpu-only --offline |
| Run the strongest non-anchor replay surface | uv run spectralbio replay --target brca2 --json --cpu-only --offline |
| Run all replay surfaces quickly | uv run spectralbio replay-audit --json --cpu-only --offline |
| Verify one replay target bundle | uv run spectralbio verify --target <target> --json --cpu-only --offline |
| Verify the original TP53/BRCA1 bounded contract | uv run spectralbio verify-legacy |
| Use the backward-compatible older legacy verify entrypoint | uv run spectralbio verify |
| Diagnose problems | uv run spectralbio doctor --json --cpu-only --offline |
| Build the deterministic paper bundle | uv run spectralbio reproduce-all --json --cpu-only --offline |
Approximate local runtimes measured on the current frozen repository bundle:
| Command | Typical local runtime | Notes |
|---|---|---|
preflight |
~1.3 s | environment and asset checks |
replay --target tp53 |
~1.5 s | validation anchor replay |
replay --target brca2 |
~1.3 s | flagship non-anchor replay |
replay-audit |
~1.9 s | all replay surfaces plus aggregate check |
reproduce-all |
~1.9 s | frozen deterministic paper-bundle materialization, not raw heavyweight recomputation |
| Surface | Role | Meaning |
|---|---|---|
TP53 |
validation_anchor |
default executable replay center |
BRCA2 |
flagship_non_anchor_canonical_target |
strongest next canonicalized replay surface |
TSC2 |
replay_ready_transfer_surface |
bounded portability witness |
CREBBP |
replay_ready_transfer_surface |
bounded portability witness |
BRCA1 |
bounded auxiliary executable surface + negative guardrail | preserved anti-case and bounded transfer |
MSH2 |
negative guardrail | explicit boundary condition |
uv sync --frozen
uv run spectralbio preflight --json --cpu-only --offline
uv run spectralbio replay-audit --json --cpu-only --offlineThis route validates the frozen public claim surface and is not the heavy raw scientific recomputation path.
Single-target replay commands:
uv run spectralbio replay --target tp53 --json --cpu-only --offline
uv run spectralbio replay --target brca2 --json --cpu-only --offline
uv run spectralbio replay --target tsc2 --json --cpu-only --offline
uv run spectralbio replay --target crebbp --json --cpu-only --offlineverify-legacy is the preferred explicit command for the older TP53+BRCA1 bounded contract.
verify without --target still preserves that same older bounded contract for backward compatibility.
verify --target <target> verifies the newer replay bundle for that target.
Examples:
uv run spectralbio verify-legacy
uv run spectralbio verify
uv run spectralbio verify --target brca2 --json --cpu-only --offlineuv run spectralbio doctor --json --cpu-only --offlineThis command emits a structured diagnosis bundle under:
outputs/status/<run_id>/status.jsonoutputs/status/<run_id>/diagnosis.jsonoutputs/status/<run_id>/stdout.logoutputs/status/<run_id>/stderr.logoutputs/status/<run_id>/command.txt
outputs/replay/<target>/- replay target bundlesoutputs/regeneration/- regeneration target and scientific surface bundlesoutputs/paper/- paper-grade deterministic outputsoutputs/status/<run_id>/- canonical per-run status bundlesoutputs/status/latest/- convenience mirror of the latest bundle, not the canonical record
BRCA1remains an explicit bounded auxiliary executable and anti-case surface.MSH2remains an explicit negative portability guardrail.- These negatives are part of the result and must not be erased.
uv run spectralbio adapt --gene TSC2 --variants path/to/variants.csv --reference path/to/reference.fasta --json
uv run spectralbio applicability --gene TSC2 --variants path/to/variants.csv --reference path/to/reference.fasta --jsonadapt scaffolds a new target onboarding surface but does not validate that target as claim-bearing.
applicability emits bounded diagnostics only and does not certify transfer success.
A new target becomes claim-bearing only after it has its own independently frozen benchmark surface, expected outputs, verification path, and bounded interpretation consistent with the manuscript.
A command reports PASS only if execution completed and the required artifact, schema, checksum, and tolerance checks passed where applicable.
A command reports FAIL if any required contract check fails.
SpectralBio does not claim:
- universal generalization
- full closure
- cross-protein law
- plug-and-play for any gene
- that all replay-ready targets are equal to TP53
It does claim:
- a strict executable TP53 anchor
- a strict replay-ready BRCA2 flagship non-anchor surface
- bounded target-level portability across
TP53,BRCA2,TSC2, andCREBBP - explicit retention of
BRCA1andMSH2as guardrails - a final harsh closure boundary that remains mixed
For the execution manual used by other agents, see claw_agent_guide.md.
