Auggyv0.5.0
PublishedDocs / Reference

CLI reference

Common Auggy CLI commands for creating, extending, and operating agents.

Commands

CommandUse
auggy create <name>Create a standalone agent project.
auggy runRun the local agent server.
auggy augment listList available built-in and custom augments.
auggy augment add <name>Add an augment config, dependencies, and bundled skill when available.
auggy augment create <name>Create a custom augment scaffold.
auggy skill create <name>Create a skill folder.
auggy skill add <name>Refresh a bundled starter or augment skill folder, including auggy and layeredMemory.
auggy skill listList skills installed in the current agent.
auggy deployDeploy the current agent to Railway.
auggy logsStream logs for the saved Railway target.

A machine-readable version of the CLI and factory API surface, with signatures and per-symbol release status, is served at /api-reference.json.

Common flows

Create, extend, inspect, deploybash
auggy create my-agent
cd my-agent
auggy augment add knowledge layeredMemory
auggy augment create support
auggy doctor
auggy deploy

Advanced preview commands

Optional app integration

These commands inspect and generate artifacts for preview augment routes. A normal tool-focused agent does not need them.

CommandUse
auggy routes [name]Inspect optional deterministic augment routes.
auggy routes [name] --jsonEmit route manifest JSON.
auggy routes [name] --openapiEmit an OpenAPI 3.1 document for the agent's routes.
auggy routes [name] --client tsGenerate a TypeScript route client.

Related