Metadata-Version: 2.4
Name: plugin-kit-ai-runtime
Version: 1.0.6
Summary: Official Python runtime helpers for plugin-kit-ai executable plugins
Author: plugin-kit-ai
License-Expression: MIT
Project-URL: Homepage, https://github.com/777genius/plugin-kit-ai
Project-URL: Repository, https://github.com/777genius/plugin-kit-ai
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# plugin-kit-ai-runtime (PyPI authoring helper)

Official Python helper package for launcher-based `plugin-kit-ai` plugins.

Use it when you want the supported handler-oriented API in a shared dependency instead of copying a local helper file into every repo.

Install:

```bash
pip install plugin-kit-ai-runtime
```

Example:

```python
from plugin_kit_ai_runtime import CodexApp, continue_

app = CodexApp()


@app.on_notify
def on_notify(event):
    _ = event
    return continue_()


raise SystemExit(app.run())
```

Notes:

- Go is still the recommended path when you want the most self-contained delivery model.
- Python authoring remains a stable supported lane, but the machine running the plugin still needs Python `3.10+`.
- The helper API mirrors the generated `src/plugin_runtime.py` scaffold surface.
