Domain Constraints Kit
Hard constraints that agents must never violate within a domain.
Configuration
Constraint Validation
0/5 validatedNo PII in logshard
Block any output containing personally identifiable informationAuth requiredhard
Require valid auth token for all data access operationsRate limithard
Max 100 requests per minute per clientData residencyhard
Data must not leave EU regionEncryption at resthard
All stored data must use AES-256Integration Code
import { createDomainConstraints } from 'agent-tools-kit/domain'
const constraints = createDomainConstraints({ enforcement: 'hard-block' })
agent.use(constraints.middleware())