plugin-kit-ai-runtime
v1.2.2
Published
Official Node/TypeScript runtime helpers for plugin-kit-ai executable plugins
Maintainers
Readme
plugin-kit-ai-runtime npm package
Official Node/TypeScript 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:
npm i plugin-kit-ai-runtimeExample:
import { CodexApp, continue_ } from "plugin-kit-ai-runtime";
const app = new CodexApp().onNotify((event) => {
void event;
return continue_();
});
process.exit(app.run());Notes:
- Go is still the recommended path when you want the most self-contained delivery model.
- Node authoring remains a stable supported lane, but the machine running the plugin still needs Node.js
20+. - The helper API mirrors the generated
plugin/plugin-runtime.tsandplugin/plugin-runtime.mjsscaffold surface.
