Dashboard
Real-time overview of your AI agent compliance posture
Hash Chain Integrity
Decisions by Compliance Framework
Recent Decisions
View all →Agent Status
Manage →Compliance Framework Coverage
LiveAudit Log
Immutable record of all AI agent decisions, tool calls, and outputs
Decision Detail
—
Compliance Reports
Generate regulatory-grade provenance documentation for auditors and regulators
Article 22
Automated decision-making & profiling. Subjects have right to human intervention, to express their point of view, and to contest decisions.
ECOA
Equal Credit Opportunity Act adverse action notices for AI-assisted credit decisions. Must identify specific reasons for denial.
Algorithmic Discrimination
Guidance on AI/AI in hiring and employment. Employers must audit disparate impact and maintain records of algorithmic decisions.
Article 12
Record-keeping obligations for high-risk AI systems. Technical documentation must be kept up-to-date and available for inspection.
Generated Reports
Agent Management
Register and manage AI agents instrumented with the Compliance Ledger SDK
SDK Integration
PythonInstall the AI Compliance Ledger SDK and instrument your AI agents in minutes.
pip install ai-compliance-ledger-sdk
from ai_compliance_ledger import ComplianceLedger
ledger = ComplianceLedger(
api_key="YOUR_API_KEY",
agent_id="YOUR_AGENT_ID",
endpoint="https://ai-compliance-ledger.pages.dev/api"
)
# Log a tool call
result = ledger.log_tool_call(
session_id="sess_abc123",
tool_name="approve_loan",
tool_input={"amount": 50000, "credit_score": 720},
tool_output={"approved": True, "limit": 48000},
compliance_tags=["cfpb", "gdpr"]
)
print(f"Decision logged: {result['id']}")
print(f"Hash: {result['hash']}")
Settings
Configure your Compliance Ledger deployment
API Configuration
Hash Chain Configuration
Data Retention
Alerting & Monitoring
Danger Zone
Download a complete backup of all decisions and reports in JSON format.
Re-run integrity verification on all historical decisions. Takes several minutes.