AI governance plugins for building compliant, auditable AI systems with the Arelis platform
npx claudepluginhub arelis-ai/ai-governance-pluginGenerates and reviews code using the Arelis AI Governance SDK for TypeScript (@arelis-ai/ai-governance-sdk) and Python (ai-governance-sdk). Covers createArelis orchestration, governedInvoke, agents.run, governance gates, managed PII config, platform events, causal graphs, policy engines, audit sinks, MCP, RAG, memory, quotas, and compliance.
A Claude Code plugin that provides AI governance capabilities through the Arelis AI Governance SDK. Supports both TypeScript (@arelis-ai/ai-governance-sdk) and Python (ai-governance-sdk).
createArelis/create_arelis, governedInvoke/governed_invoke, agents.run, governance gates, PII management, policy engines, audit events, risk scoring, compliance proofs, and more.claude plugin install arelis-sdk@<marketplace-name>
claude --plugin-dir /path/to/ai-governance-plugin
Set your Arelis API key as an environment variable before launching Claude Code:
export ARELIS_API_KEY=ak_your_api_key_here
The plugin's MCP server reads ARELIS_API_KEY from the environment. The platform base URL defaults to https://api.arelis.digital.
Once installed, the plugin activates automatically when Claude detects:
@arelis-ai/ai-governance-sdk or from arelis import ...createArelis, create_arelis, governedInvoke, governed_invoke, withGovernanceGate, with_governance_gate, or GovernanceContextAll skills are namespaced under arelis-sdk:
/arelis-sdk:ai-governance-sdk
The Arelis MCP server provides tools for:
| Feature | TypeScript | Python |
|---|---|---|
createArelis / create_arelis | Yes | Yes |
governedInvoke / governed_invoke | Yes | Yes |
agents.run (governed agent loop) | Yes | Yes |
| Governance gates | Yes | Yes |
| PII scanning and managed config | Yes | Yes |
| Platform events and risk | Yes | Yes |
| Policy engine (local + platform) | Yes | Platform only |
| Causal graphs and proofs | Yes | Yes |
| MCP, RAG, memory, quotas | Yes | Yes |
ai-governance-plugin/
├── .claude-plugin/
│ └── plugin.json # Plugin manifest
├── skills/
│ └── ai-governance-sdk/
│ ├── SKILL.md # Skill definition
│ ├── references/ # SDK documentation
│ │ ├── typescript/ # TS patterns, API refs, examples
│ │ ├── python/ # Python patterns, API refs, examples
│ │ └── shared/ # Platform API, policies, concepts
│ └── scripts/ # Validation scripts
├── LICENSE
└── README.md
MIT — see LICENSE for details.