Metadata-Version: 2.4
Name: intentframe-runtime
Version: 0.1.0
Summary: IntentFrame runtime — the three-process substrate (policy-registry, executor, server) the supervisor spawns
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,intentframe,runtime,security
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Security
Requires-Python: >=3.14
Requires-Dist: intentframe-executor==0.1.0
Requires-Dist: intentframe-policy-registry==0.1.0
Requires-Dist: intentframe-server==0.1.0
Description-Content-Type: text/markdown

# intentframe-runtime

The IntentFrame runtime substrate: a dependency-only meta-package that pulls in
the three services the supervisor spawns —
[`intentframe-policy-registry`](https://github.com/intentframe/intentframe),
[`intentframe-executor`](https://github.com/intentframe/intentframe), and
[`intentframe-server`](https://github.com/intentframe/intentframe).

Installing it makes `policy_registry.server:app`, `executor.server:app`, and
`intentframe_server.server:app` importable in one environment, so the supervisor
can launch the default three-process service graph. Each dependency carries its
own transitive deps (`intentframe-core`, `intentframe-components`,
`intentframe-prompt-library`, the SDKs, and `intentframe-executor-client`), so
this is the complete runnable substrate.

This package contains no source code. The resource-registry / native-kit
"flavour" is **not** part of the runtime — that lives at the supervisor layer
(e.g. `intentframe-supervisor[native]`).

```bash
pip install intentframe-runtime
```
