Create a new slash command with AI-guided behavior definition
Create a new slash command with AI-guided behavior definition. Use this when you need to add custom commands to your AI workflow system with interactive question-based setup.
/plugin marketplace add jmagly/ai-writing-guide/plugin install jmagly-utils-plugins-utils@jmagly/ai-writing-guideCreate a new slash command with AI assistance to define arguments, behavior, and output.
/devkit-create-command <name> --to <target> [options]
| Argument | Required | Description |
|---|---|---|
| name | Yes | Command name (kebab-case recommended) |
| Option | Description |
|---|---|
| --to | Target addon or framework |
| Option | Description |
|---|---|
| --template | Command template: utility (default), transformation, orchestration |
| --interactive | Enable interactive mode with guided questions |
Simple operation, single action command.
/lint-check, /deploy-statusContent/code transformation pipeline with input/output handling.
/convert-format, /refactor-codeMulti-agent workflow coordination with phases and parallel execution.
/flow-deploy-to-production, /flow-security-reviewWhen --interactive is specified, I will ask:
# Simple utility command
/devkit-create-command lint-fix --to aiwg-utils
# Transformation pipeline
/devkit-create-command convert-docs --to sdlc-complete --template transformation
# Orchestration workflow
/devkit-create-command deploy-all --to sdlc-complete --template orchestration --interactive
<target>/commands/<name>.md
---
name: command-name
description: Command description
args: [arg1] [--option value]
---
# Command Title
[Description]
## Usage
[How to invoke]
## Arguments
[Input parameters]
## Options
[Configuration flags]
## Execution
[Step-by-step behavior]
## Output
[What to expect]
aiwg add-command <name> --to <target> --template <type>
/devkit-create-agent - Create an agent/devkit-create-skill - Create an auto-triggered skill/devkit-validate - Validate command structure