Create a new AIWG addon with AI-guided setup
Generate a new AIWG addon scaffold with AI-guided interactive setup. Use this when starting a new addon project to create the proper directory structure and manifest.
/plugin marketplace add jmagly/ai-writing-guide/plugin install jmagly-utils-plugins-utils@jmagly/ai-writing-guideCreate a new standalone addon with AI assistance.
/devkit-create-addon <name> [--interactive]
| Argument | Required | Description |
|---|---|---|
| name | Yes | Addon name (kebab-case recommended) |
| Option | Description |
|---|---|
| --interactive | Enable interactive mode with guided questions |
agentic/code/addons/<name>/
├── manifest.json # Addon configuration
├── README.md # Documentation
├── agents/ # Agent definitions
├── commands/ # Slash commands
└── skills/ # Auto-triggered skills
When --interactive is specified, I will ask:
# Quick creation
/devkit-create-addon security-scanner
# Interactive guided creation
/devkit-create-addon code-metrics --interactive
For non-interactive creation, you can also use:
aiwg scaffold-addon <name> --description "..." --author "..."
/devkit-create-agent - Add agent to addon/devkit-create-command - Add command to addon/devkit-create-skill - Add skill to addon/devkit-validate - Validate addon structure