Metadata-Version: 2.4
Name: aegis-agentguard-core
Version: 0.1.0b1
Summary: Stateless AgentGuard Core security decision engine
Author: AEGIS Team
License-Expression: MIT
Project-URL: Homepage, https://github.com/JToday666/agent-guard
Project-URL: Repository, https://github.com/JToday666/agent-guard
Project-URL: Issues, https://github.com/JToday666/agent-guard/issues
Keywords: agent,ai,security,prompt-injection,runtime-guard
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Security
Requires-Python: >=3.12
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pydantic>=2.9
Dynamic: license-file

# aegis-agentguard-core

AgentGuard Core 是无状态安全判定内核。PyPI 分发名为 `aegis-agentguard-core`，
Python import 保持为 `agentguard_core`。它负责规范化安全事件、执行检测器与策略，并返回可审计的
`GuardDecision`。

```bash
pip install --pre aegis-agentguard-core
```

```python
from agentguard_core import GuardEngine, GuardEvent, PolicyBundle

decision = GuardEngine().evaluate(event, PolicyBundle())
```

Core 不访问网络或数据库，也不管理审批状态。
