# Acode Plugin CLI
Quickly create Acode plugins from official templates (JavaScript or TypeScript) using a simple CLI.
---
## Installation
### With Cargo
If you have Rust installed:
```bash
cargo install acode-plugin-cli
```
---
## Usage
Run the tool in your terminal:
```bash
acode-plugin-cli
```
It will launch an interactive wizard to:
* Choose plugin name, ID, version, description
* Enter author info
* Pick license & keywords
* Select JavaScript or TypeScript template
Then it will create your plugin folder, ready to use.
---
Next:
```bash
cd your-plugin-folder
npm install
```
And start building your plugin for Acode!