@agentium/cli
v2.6.0
Published
Command-line tool for scaffolding and managing Agentium projects
Readme
@agentium/cli
Command-line tool for scaffolding and managing Agentium projects.
Install
npm install -g @agentium/cliOr run on demand without installing:
npx @agentium/cli init my-appCommands
agentium init <name>
Scaffold a new Agentium project. Aliases: new, create.
agentium init my-app --template basic
agentium init voice-app --template voice
agentium init rag-app --template rag
agentium init browser-app --template browserTemplates:
| Template | What you get |
|----------|--------------|
| basic | Minimal Agent + Express server |
| rag | Knowledge base with hybrid search wired up |
| voice | Voice agent with WebSocket gateway |
| browser| BrowserAgent with Playwright |
agentium dev
Run an Agentium app in dev mode with hot reload.
agentium dev --entry ./src/index.tsagentium skills install <source>
Install a skill (pre-packaged tool bundle + instructions) from a git URL, npm package, or local path. Skills are persisted under .agentium/skills/ and auto-attached the next time the agent starts.
agentium skills install github:agentiumOS/skill-gmail
agentium skills install @some-org/skill-pagerduty
agentium skills install ./local-skillagentium publish
Convenience wrapper around npm publish --access public — useful inside an Agentium monorepo where you want one command to run from any package directory.
Documentation
Full docs at docs.agentium.in
Community
Join the conversation on Discord.
License
MIT
