Cross-validate physics claims using multiple independent methods
Cross-validates physics claims using symbolic, numerical, and experimental methods.
/plugin marketplace add slapglif/theory2-physics-plugin/plugin install theory2-physics@theory2-physics-plugin<claim> [--methods=symbolic,numerical,experimental]Verify physics claims by comparing results from multiple independent methods.
# Verify fine-structure constant
/home/mikeb/theory2/.venv/bin/theory --json verify cross-check \
--claim="alpha_inv=137" \
--methods="symbolic,numerical,experimental" \
--tolerance=0.001
# Verify molecular energy
/home/mikeb/theory2/.venv/bin/theory --json verify cross-check \
--claim="H2_bond_length=0.74" \
--methods="symbolic,numerical"
# Strict tolerance
/home/mikeb/theory2/.venv/bin/theory --json verify cross-check \
--claim="pi=3.14159" \
--methods="symbolic,numerical" \
--tolerance=1e-6
Claims use name=value format:
alpha_inv=137.036 - Fine-structure constant inverseH2_energy=-1.174 - H2 ground state energy (Hartree)e_charge=1.602e-19 - Electron chargeThe verification returns:
{
"status": "verified" | "discrepancy" | "partial",
"results": {
"symbolic": {...},
"numerical": {...},
"experimental": {...}
},
"agreement": {
"all_agree": true/false,
"max_discrepancy": 0.001,
"within_tolerance": true/false
}
}
Always use --json for structured output.
/verifySmart verification command - run quality checks and final verification
/verifyFinal verification - run all Pest tests, validate Playwright UI flows, and check production checklist