devkit-create-command
FeaturedCreate a new slash command with AI-guided behavior definition
AI & Automation 201 stars
29 forks Updated today MIT
Install
Quality Score: 90/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
<!-- AIWG-SKILL-CALLOUT -->
> **Skill access pattern (post-kernel-pivot, 2026.5+)**
>
> Skill names referenced in this document are AIWG skills, **not slash commands**. Most are not kernel-listed and cannot be invoked as `/skill-name` by the platform. Reach them via:
>
> ```bash
> aiwg discover "<capability>"
> aiwg show skill <name>
> ```
>
> Only kernel-listed skills (`aiwg-doctor`, `aiwg-refresh`, `aiwg-status`, `aiwg-help`, `use`, `steward`) are directly invokable as slash commands. See [skill-discovery rule](../../../addons/aiwg-utils/rules/skill-discovery.md).
# Create AIWG Command
Create a new slash command with AI assistance to define arguments, behavior, and output.
## Usage
```
/devkit-create-command <name> --to <target> [options]
```
## Arguments
| Argument | Required | Description |
|----------|----------|-------------|
| name | Yes | Command name (kebab-case recommended) |
## Required Options
| Option | Description |
|--------|-------------|
| --to | Target addon or framework |
## Optional Options
| Option | Description |
|--------|-------------|
| --template | Command template: utility (default), transformation, orchestration |
| --interactive | Enable interactive mode with guided questions |
## Templates
### utility (default)
Simple operation, single action command.
- Best for: Quick tasks, file operations, status checks
- Example: `lint-check`, `deploy-status`
### transformation
Content/code transformation pipeline with input/output handling.
- B...
Details
- Author
- jmagly
- Repository
- jmagly/aiwg
- Created
- 1 years ago
- Last Updated
- today
- Language
- TypeScript
- License
- MIT
Integrates with
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Listed
add_command
Creates a new slash command (skill) that users can invoke with /name. Use when asked to add a command, automate a repeatable workflow step, or expose a task as a /name shortcut.
0 Updated today
VytCepas AI & Automation Listed
create-command
Use when you want to create a simple slash command (single markdown file). For complex needs, use /create-skill instead.
0 Updated 1 weeks ago
fxmartin AI & Automation Listed
create-command
Scaffolds a new slash command in an existing plugin. NOT for creating event-driven hooks (use `create-hook`) and NOT for standard skills (use `create-skill`).
5 Updated 4 days ago
richfrem