Create a new AIWG extension (framework expansion pack) with AI-guided setup
Create a new AIWG extension (framework expansion pack) with AI-guided setup. Use this to add domain-specific templates and checklists to existing frameworks like HIPAA compliance or fintech patterns.
/plugin marketplace add jmagly/ai-writing-guide/plugin install jmagly-utils-plugins-utils@jmagly/ai-writing-guideCreate a new extension (framework expansion pack) with AI assistance.
Extensions enhance a specific parent framework with additional templates, checklists, and domain-specific content. They cannot operate standalone.
/devkit-create-extension <name> --for <framework> [--interactive]
| Argument | Required | Description |
|---|---|---|
| name | Yes | Extension name (kebab-case recommended) |
| Option | Description |
|---|---|
| --for | Parent framework ID (e.g., sdlc-complete, media-marketing-kit) |
| Option | Description |
|---|---|
| --interactive | Enable interactive mode with guided questions |
agentic/code/frameworks/<framework>/extensions/<name>/
├── manifest.json # type: "extension", requires: ["<framework>"]
├── README.md # Documentation
├── templates/ # Domain-specific templates
└── checklists/ # Compliance/verification checklists
When --interactive is specified, I will ask:
# Quick creation
/devkit-create-extension hipaa --for sdlc-complete
# Interactive guided creation
/devkit-create-extension sox --for sdlc-complete --interactive
gdpr - EU data protectionhipaa - Healthcare (US)sox - Financial controls (US)pci-dss - Payment card securityftc - FTC advertising ruleshealthcare - Healthcare-specific templatesfintech - Financial technology patternsgovernment - Government/public sectorrequires field for parentFor non-interactive creation:
aiwg scaffold-extension <name> --for <framework> --description "..."
/devkit-create-addon - Create standalone addon/devkit-create-framework - Create full framework/devkit-validate - Validate extension structureaiwg add-template - Add template to extension