/** * signals/domain — pure signal contracts. * * Value types, graph-state shapes, validation-failure enumerations, and * domain constants that define the signals capability's domain language. * No LLM calls, no LangGraph edges, no host-adapter imports. */ export { type VerifiedIntent, type IntentValidationFailureCategory, type IntentValidationFailure, type ExecutionResult, IntentGraphState, } from "./intent.state.js"; export { DEFAULT_SPECIFICITY_WARNING } from "./signal.specificity.js";