Metadata-Version: 2.4
Name: intentframe-executor
Version: 0.1.0
Summary: IntentFrame executor service — dispatches approved actions to capability adapters
Project-URL: Homepage, https://github.com/intentframe/intentframe
Project-URL: Repository, https://github.com/intentframe/intentframe
Project-URL: Issues, https://github.com/intentframe/intentframe/issues
Author: IntentFrame Contributors
License-Expression: AGPL-3.0-only
License-File: LICENSE
Keywords: agents,ai,executor,intentframe,security
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Security
Requires-Python: >=3.14
Requires-Dist: fastapi
Requires-Dist: intentframe-executor-sdk==0.1.0
Requires-Dist: pydantic>=2.12.5
Requires-Dist: pyyaml>=6.0.3
Requires-Dist: uvicorn[standard]
Description-Content-Type: text/markdown

# intentframe-executor

The executor service for [IntentFrame](https://github.com/intentframe/intentframe).
It receives approved actions from the runtime, dispatches them to capability
adapters via a worker pool, and enforces the credential/audit boundary. It runs
as a FastAPI app on a Unix domain socket (`executor.server:app`).

Capability adapters are loaded as executor packs through the
`intentframe.executor_packs` entry-point group, so deployments select packs
without modifying this service. Built on `intentframe-executor-sdk`.

```bash
pip install intentframe-executor
```
