Stats
Links
Categories
Mathematical physics tooling suite for Claude Code
npx claudepluginhub slapglif/theory2-physics-pluginMathematical physics tooling suite - symbolic math, numerical physics, ML, theorem proving, verification, bioinformatics, and discrete mathematics
A comprehensive mathematical physics tooling plugin that provides access to symbolic math, numerical physics, physics ML, theorem proving, and scientific verification through the Theory2 CLI.
/home/mikeb/theory2# Clone or copy to Claude plugins directory
cp -r theory2-plugin ~/.claude/plugins/
# Or use with --plugin-dir
claude --plugin-dir /path/to/theory2-plugin
/theory2-physics:symbolic compute-e7-alpha --verify
/theory2-physics:numerical quantum-chemistry --molecule="H2O" --method=dft
/theory2-physics:ml solve-pde --pde-type=heat --iterations=10000
/theory2-physics:prove lean --statement="2 + 2 = 4" --tactic=norm_num
/theory2-physics:verify cross-check --claim="alpha_inv=137"
The plugin provides rich MCP tools with detailed descriptions:
theory2_symbolic_compute_e7_alpha - E7 Lie algebra → fine-structure constanttheory2_symbolic_lie_algebra - Query Lie algebra propertiestheory2_symbolic_eval/simplify/solve/diff/integrate - SymPy operationstheory2_numerical_quantum_chemistry - HF/DFT/CCSD calculationstheory2_numerical_quantum_circuit - Quantum circuit simulationtheory2_ml_train_fno/train_e3nn/solve_pde - Physics ML modelstheory2_prove_lean/search - Lean 4 theorem provingtheory2_verify_cross_check - Multi-method verificationThe plugin implements a rigorous validation workflow:
theory2-plugin/
├── .claude-plugin/
│ └── plugin.json # Plugin manifest
├── commands/ # Slash commands
│ ├── symbolic.md
│ ├── numerical.md
│ ├── ml.md
│ ├── prove.md
│ └── verify.md
├── agents/ # Autonomous agents
│ ├── physics-solver.md
│ └── physics-verifier.md
├── skills/
│ └── theory2-physics/
│ └── SKILL.md # Usage skill
├── hooks/
│ └── hooks.json # Event hooks
├── mcp/
│ └── theory2_server.py # MCP server
└── .mcp.json # MCP configuration
MIT