HALMAI sits above your agent framework and execution targets — the framework-agnostic AI Governance Kernel that fits into any AI infrastructure
Framework-agnostic enforcement — works with any agent architecture
Provider-agnostic governance layer
Export governance events to your stack
Deploy where you need governance
Programmatic access to the enforcement kernel
Evaluate proposals against active rules
Bind authorization to execution
Real-time governance events
Hash-linked decision logs
Snapshot and replay capability
Emergency halt API
import { HALMClient } from '@halm/kernel-sdk';
const halm = new HALMClient({
baseUrl: 'https://your-tenant.halmai.ai',
apiKey: process.env.HALM_API_KEY!,
});
// Authorize a financial action
const decision = await halm.authorize({
type: 'ledger:write',
payload: { amount: 5000, recipient: 'vendor-42' },
context: { confidenceScore: 0.94, agentId: 'agent-123' },
});
if (decision.status === 'ALLOW') {
const result = await halm.execute({
proposalId: decision.proposalId,
});
console.log('Executed:', result.executionId);
}Technical documentation for your specific integration requirements.