Compliance-as-a-Query for AI Agents
Your AI agent is about to act. Is it compliant? Get real-time verdicts with full explainability through a single API call.
{
"verdict": "BLOCK",
"confidence": 0.94,
"risk_flags": ["policy_violation", "threshold_exceeded"],
"reasoning_chain": [
{
"step": 1,
"check": "Policy threshold check",
"result": "PASS",
"logic": "Value $9,850 < $10,000 threshold"
},
{
"step": 2,
"check": "Pattern analysis",
"result": "FAIL",
"logic": "3 similar actions in 24h match violation pattern",
"policy_ref": "POLICY_RULE_4.2.1"
}
],
"recommended_action": "ESCALATE_TO_REVIEW",
"explainability_text": "Action blocked: Pattern matches policy violation criteria.",
"audit_trail_id": "eval_8x7k2m9p"
}One API Call. Compliant Agents.
DecisionLens evaluates your agent's proposed actions against compliance policies and returns an explainable verdict your agent can act on.
REST API
Works with any language or framework. Call it before your agent acts.
Agent Skill
Available as a skill for Claude Code and Anthropic Agent SDK.
Explainable
Every verdict includes reasoning chain and policy citations for audit.
Built for Claude Code & Agent SDK
DecisionLens is packaged as an agent skill. Your Claude-powered agents can query compliance policies naturally as part of their workflow.
- Drop-in skill for Claude Code projects
- Works with Anthropic Agent SDK
- Agents can reason about compliance verdicts
# In your CLAUDE.md or agent configuration:
skills:
- name: decisionlens-compliance
description: Query compliance policies before taking actions
# Your agent can now use the skill:
"Before processing this transaction, let me check compliance..."
[Agent calls DecisionLens skill]
"The compliance check returned APPROVE with 0.97 confidence.
Proceeding with the transaction."Compliance Across Industries
Define policies for any regulatory framework. DecisionLens adapts to your compliance requirements.
Financial Services
Transaction monitoring, AML checks, KYC verification, and fair lending compliance.
Healthcare
HIPAA compliance checks, patient data access controls, and treatment authorization.
Enterprise
Data governance, access control policies, and internal compliance workflows.
Education
FERPA compliance, student data protection, and academic integrity policies.
Get Started in Minutes
No complex integrations. No training data required. Just call the API before your agent acts.
Get Your API Key
Sign up and get your API key. Free tier available to get started.
Define Your Policies
Use our policy templates or define custom compliance rules for your domain.
Integrate the API
One POST request before your agent acts. Call it synchronously or as a skill.
Ship With Confidence
Every decision is explainable and audit-ready. Full reasoning chain included.
curl -X POST https://api.decisionlens.dev/v1/evaluate \
-H "Authorization: Bearer dl_live_xxx" \
-H "Content-Type: application/json" \
-d '{
"policy_context": "compliance_standard_v1",
"decision_type": "action_approval",
"case": {
"action_type": "data_access",
"user_role": "analyst",
"data_classification": "sensitive",
"request_context": {
"purpose": "quarterly_report",
"scope": "department"
}
},
"proposed_action": "APPROVE"
}'Built for Production
Everything you need to ship compliant AI agents.
Low Latency
Fast enough to run synchronously before every agent action.
Full Explainability
Every verdict includes a reasoning chain and policy citations.
Policy Flexibility
Use pre-built templates or define custom compliance policies.
Audit-Ready
Complete audit trail for every decision. Built for regulatory review.