Skip to content
Development
Skill

/devkit-create-addon

Create a new AIWG addon with AI-guided setup

From plugin
aiwg
176200 skills199 agents23 commands
Install
$ npx -y skills add jmagly/aiwg --skill devkit-create-addon --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/devkit-create-addon

Context preview

The summary Claude sees to decide when to auto-load this skill.

Create a new AIWG addon with AI-guided setup

SKILL.md

devkit-create-addon.SKILL.md
namespace: aiwg
name: devkit-create-addon
platforms: [all]
description: Create a new AIWG addon with AI-guided setup

Create AIWG Addon

Create a new standalone addon with AI assistance.

Usage

/devkit-create-addon <name> [--interactive]

Arguments

| Argument | Required | Description | |----------|----------|-------------| | name | Yes | Addon name (kebab-case recommended) |

Options

| Option | Description | |--------|-------------| | --interactive | Enable interactive mode with guided questions |

What This Creates

agentic/code/addons/<name>/
├── manifest.json      # Addon configuration
├── README.md          # Documentation
├── agents/            # Agent definitions
├── commands/          # Slash commands
└── skills/            # Auto-triggered skills

Interactive Mode

When `--interactive` is specified, I will ask:

1. **Purpose**: What is the primary purpose of this addon? 2. **Capabilities**: What specific capabilities should it provide? 3. **Initial agents**: Should I create any starter agents? 4. **Initial commands**: Should I create any starter commands? 5. **Core status**: Should this be a core addon (auto-installed)?

Examples

# Quick creation
/devkit-create-addon security-scanner

# Interactive guided creation
/devkit-create-addon code-metrics --interactive

Execution

1. **Validate name**: Ensure name follows kebab-case convention 2. **Check existence**: Verify addon doesn't already exist 3. **Gather info**: In interactive mode, ask clarifying questions 4. **Generate manifest**: Create manifest.json with appropriate fields 5. **Create structure**: Build directory structure 6. **Generate README**: Create documentation with usage instructions 7. **Optionally create components**: If interactive, offer to create initial agents/commands 8. **Report success**: Show created files and next steps

CLI Equivalent

For non-interactive creation, you can also use:

aiwg scaffold-addon <name> --description "..." --author "..."

Related Commands

  • `/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

References

  • @$AIWG_ROOT/agentic/code/addons/aiwg-dev/README.md — aiwg-dev addon overview
  • @$AIWG_ROOT/docs/extensions/overview.md — Extension system architecture
  • @$AIWG_ROOT/docs/extensions/creating-extensions.md — Guide to building custom extensions
  • @$AIWG_ROOT/docs/cli-reference.md — CLI reference including scaffold-addon command
  • @$AIWG_ROOT/agentic/code/addons/aiwg-utils/rules/god-session.md — Scope rules for addon design
Read more
Ships withaiwg

Multi-agent AI framework for Claude Code, Copilot, Cursor, Warp, and 6 more platforms 200+ agents, 109+ CLI commands, 400+ deployable agent/skill/command/rule artifacts, 8 core frameworks, 32 addons, and a 40-plugin Claude Code marketplace.

Get the whole plugin