Metadata-Version: 2.5
Name: maigp-semantic-kernel
Version: 1.0.1
Summary: AIGP governance adapter for semantic-kernel
Requires-Python: >=3.11
Requires-Dist: maigp-agent-core>=1.0.0
Description-Content-Type: text/markdown

# maigp-semantic-kernel

AIGP governance filter for Microsoft Semantic Kernel.

Part of **MAIGP** — the Mediated AI Governance Protocol: a runtime consent / scope / evidence layer for AI systems. Every governed call is **CHECK**ed before it runs (policy, scope, jurisdiction, circuit-breaker) and **RECORD**ed + **TRACE**d as tamper-evident evidence after.

> **Deprecation notice:** the underlying framework is converging into the Microsoft Agent Framework. New projects should prefer [`maigp-microsoft-agent-framework`](https://pypi.org/project/maigp-microsoft-agent-framework/). This adapter is maintained for existing deployments.

## What it governs

Governs Semantic Kernel function invocations via a function-invocation filter.

## Governance model

This adapter maps the framework's lifecycle onto the AIGP agent-governance loop provided by [`maigp-agent-core`](https://pypi.org/project/maigp-agent-core/):

| Framework event | AIGP action |
|---|---|
| run / invocation start | **CHECK** (`pre_invoke`) — allowed? under what authority? |
| each model reply | token accounting (`on_model_call`) |
| each tool / function call | tool governance (`on_tool_call`) |
| run complete | **RECORD** + **TRACE** (`post_invoke`) |
| failure | `on_error` (recorded, then re-raised) |


## Install

```bash
pip install maigp-semantic-kernel
```

Pulls in [`maigp-agent-core`](https://pypi.org/project/maigp-agent-core/) (shared lifecycle) and, transitively, [`maigp-client`](https://pypi.org/project/maigp-client/).

## Quick start

```python
from semantic_kernel import Kernel
from aigp_semantic_kernel import AigpFilter

aigp_filter = AigpFilter(gov_url="https://gov.example.com",
                         app_id="my-sk-agent", hmac_secret="secret")
kernel.add_filter("function_invocation", aigp_filter)
```

## Links

- Protocol, specs & full adapter catalog: https://github.com/owner-spec/aigp-protocol
- Issues: https://github.com/owner-spec/aigp-protocol/issues

---

License: Proprietary. © Kanjani AI Research & Causum.
