ComplianceLog
Immutable audit trail for every LLM call.
ComplianceLog creates tamper-evident, append-only logs of all LLM interactions. Hash-chained entries with configurable retention for SOC2/HIPAA compliance.
Quickstart
export OPENAI_API_KEY=sk-...
npx @stockyard/compliancelog
# Your app: http://localhost:5610/v1/chat/completions
# Dashboard: http://localhost:5610/ui
What You Get
- Append-only audit logs
- Hash-chain tamper detection
- Configurable retention periods
- Compliance export formats
- Per-field encryption option
- Dashboard with audit explorer
Config
# compliancelog.yaml
port: 5610
providers:
openai:
api_key: ${OPENAI_API_KEY}
compliance:
enabled: true
hash_chain: true
retention_days: 365
export_format: jsonl # jsonl | csv
encrypt_bodies: false
Docker
docker run -p 5610:5610 -e OPENAI_API_KEY=sk-... stockyard/compliancelog
Part of Stockyard
ComplianceLog is part of Stockyard — an open-source LLM proxy and control plane. MIT licensed.