soma-sense
v0.2.0
Published
Soma sensorium — observer-side verification for AI agents. Thin re-export of soma-heart/sense.
Downloads
30
Maintainers
Readme
soma-sense
Observer-side verification for AI agents — the sensorium.
This package is a thin re-export of soma-heart/sense. Install it if you only need observation and don't want to interact with the heart directly.
import { withSomaSense } from "soma-sense";
const transport = withSomaSense(new StdioServerTransport(), {
onVerdict: (sessionId, verdict) => {
if (verdict.status === "RED") denyAccess(sessionId);
},
});All exports come from soma-heart/sense. See the soma-heart docs for full API reference.
