Domain Knowledge Layer for Physics | Generated by AI
skills.py is the domain knowledge layer that the FSM/Tree of Thoughts engine calls during reasoning.
Why it exists
The FSM handles search control (expanding nodes, scoring, pruning) but knows nothing about physics. skills.py fills that gap:
Key call sites:
fsm/builder.py:1050— callstot_hard_rule_checkduring the calculation stage; if equations violate physics rules, that node is vetoedfsm/backend.py:111— loads the domain plugin bundlefsm/backend.py:130— fetches the prompt contract for the current reasoning stage
In short: the FSM is the search framework; skills.py is the physics “rule judge + calculator.” Together they enable constrained, physics-aware reasoning.
