@axpo/cli
v1.0.4
Published
CLI & build tool for Acode plugin development
Maintainers
Readme
CLI and build tooling for Acode plugin development. Part of the Axpo ecosystem.
Create your first plugin
npx @axpo/cli initCommands
Inside a plugin project
npm run dev # Start dev server with hot reload
npm run build # Build + zip for production
npm run clean # Clean build output
npm run publish # Publish to Acode registryAxpo CLI
axpo init [name] # Create a new plugin project
axpo dev # Start development server
axpo build # Build plugin (creates zip by default)
axpo build --no-zip # Build only, skip zip
axpo zip # Create zip from existing build
axpo publish # Publish plugin to Acode registry
axpo logout # Clear saved Acode credentials
axpo clean # Remove build folder and zip filesaxpo init options
| Flag | Description |
|------|-------------|
| [name] | Project folder name |
| . | Initialize in current directory |
| -y, --yes | Skip prompts, use defaults |
axpo build options
| Flag | Description |
|------|-------------|
| --no-zip | Skip zip creation |
| -o, --output <file> | Custom zip filename |
axpo publish options
| Flag | Description |
|------|-------------|
| -z, --zip <file> | Zip file to publish (default: Plugin.zip) |
| -f, --force | Skip confirmation prompt |
Links
- Core SDK: @axpo/sdk
- GitHub: github.com/MatrixCoder0101/axpo
- Acode Docs: docs.acode.app
