@ariaflowagents/builder
v0.7.0
Published
CLI tool to convert .ariaflow/ configurations into deployable projects
Downloads
742
Readme
@ariaflowagents/builder
CLI tool to convert .ariaflow/ configuration folders into deployable projects.
Quick Start
npm install -g @ariaflowagents/builder
# Build a pack
ariaflow build-pack <input-dir> [output-dir] --runtime hono|cf|dockerRuntimes
Hono (Node)
- Uses Node-compatible runtime with filesystem access.
- Good for local dev and container deployments.
Cloudflare Workers (cf)
- Bundles tools, prompts, skills, and flows at build time (no runtime filesystem reads).
- Supports tool types:
module,http, andskill-loader. - Generates
src/runtime/tools.tsto build the tool registry and hydrate flow tools. - Output includes
worker.tsandwrangler.jsoncfor deployment. - Durable Object class/binding is fixed to
Chat, so the WS path is always/agents/chat/:sessionId.- Changing this resets DO storage (new class name).
Docker
- Produces a Node server suitable for container deployments.
Documentation
See guide/README.md for complete documentation.
Publishing
npm run build
npm version patch|minor|major
npm publish --access public