You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With all structural components (Capability Lattice, State Lattice, Cognitive Lattice) built, it is time to hook them into the core runtime of AgentWatch.
Tasks
Open agentwatch/core/safety.py.
Update the primary execution interceptor to route proposed actions through the new pipeline sequentially:
CapabilityLattice.evaluate(action)
StateLattice.simulate_and_check(action)
CognitiveLattice.evaluate_health(session)
Ensure that a failure at ANY level returns an immediate LatticeVerdict.BLOCKED or equivalent, with strict ~0.1ms latency budget.
Phase 5: Integration & Migration
The Context
With all structural components (Capability Lattice, State Lattice, Cognitive Lattice) built, it is time to hook them into the core runtime of AgentWatch.
Tasks
agentwatch/core/safety.py.CapabilityLattice.evaluate(action)StateLattice.simulate_and_check(action)CognitiveLattice.evaluate_health(session)LatticeVerdict.BLOCKEDor equivalent, with strict ~0.1ms latency budget.Part of Epic #651