runline
Code mode for agents — turn any API or command into a callable action
Package details
Security note
Pi packages can execute code and influence agent behavior. Review the source before installing third-party packages.
README
runline
The runline library and CLI. Published on npm as runline. See the monorepo README for the full story, quickstart, and plugin catalog.
What lives here
src/— the library source (SDK, engine, plugin API, loader, CLI commands)scripts/— tooling (e.g.generate-plugin-table.jsfor the root README)dist/plugins/— populated at build time by copyingpackages/runline-plugins/dist
Scripts
bun run dev -- exec 'return 1 + 2' # run the CLI from source
bun run build # compile + bundle built-in plugins
bun run test # bun test src/tests
bun run check # biome check
build does two things: compiles src/ with tsc, then invokes bun --filter runline-plugins build and copies the output into dist/plugins/ so the published package ships with every built-in plugin.