aiwg 2026.2.7 → 2026.2.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CLAUDE.md CHANGED
@@ -23,7 +23,9 @@ aiwg use sdlc
23
23
  agentic/code/
24
24
  ├── frameworks/
25
25
  │ ├── sdlc-complete/ # Complete SDLC coverage
26
- └── media-marketing-kit/ # Full marketing operations
26
+ ├── media-marketing-kit/ # Full marketing operations
27
+ │ ├── media-curator/ # Media archive management
28
+ │ └── research-complete/ # Research workflow automation
27
29
  ├── addons/
28
30
  │ └── voice-framework/ # Voice profiles
29
31
  └── agents/ # Writing quality agents
@@ -260,6 +262,8 @@ aiwg reproducibility-validate # Validate workflow reproducibility
260
262
  | **Creating Extensions** | `@docs/extensions/creating-extensions.md` |
261
263
  | **Extension Types** | `@docs/extensions/extension-types.md` |
262
264
  | **SDLC Framework** | `@agentic/code/frameworks/sdlc-complete/README.md` |
265
+ | **Media Curator** | `@agentic/code/frameworks/media-curator/README.md` |
266
+ | **Research Complete** | `@agentic/code/frameworks/research-complete/README.md` |
263
267
  | **RLM Addon** | `@agentic/code/addons/rlm/README.md` |
264
268
  | **Daemon Mode** | `@docs/daemon-guide.md` |
265
269
  | **Messaging Integration** | `@docs/messaging-guide.md` |
package/README.md CHANGED
@@ -95,6 +95,7 @@ npm install -g aiwg
95
95
  cd your-project
96
96
  aiwg use sdlc # Full SDLC framework
97
97
  aiwg use marketing # Marketing framework
98
+ aiwg use media-curator # Media archive management
98
99
  aiwg use rlm # RLM addon (recursive context decomposition)
99
100
  aiwg use all # All frameworks
100
101
 
@@ -119,8 +120,10 @@ aiwg new my-project
119
120
 
120
121
  | Framework | What it does |
121
122
  |-----------|--------------|
122
- | **[SDLC Complete](agentic/code/frameworks/sdlc-complete/)** | Full software development lifecycle with agents, commands, templates, and multi-agent orchestration |
123
+ | **[SDLC Complete](agentic/code/frameworks/sdlc-complete/)** | Full software development lifecycle with 70+ agents, commands, templates, and multi-agent orchestration |
123
124
  | **[Media/Marketing Kit](agentic/code/frameworks/media-marketing-kit/)** | Complete marketing campaign management from strategy to analytics |
125
+ | **[Media Curator](agentic/code/frameworks/media-curator/)** | Intelligent media archive management — discography analysis, acquisition, quality filtering, metadata curation, and multi-platform export |
126
+ | **[Research Complete](agentic/code/frameworks/research-complete/)** | Academic research workflow — discovery, acquisition, RAG-based documentation, and citation management |
124
127
 
125
128
  ### Addons
126
129
 
@@ -228,6 +231,8 @@ See [Platform Integration Guides](docs/integrations/) for setup instructions.
228
231
 
229
232
  - **[SDLC Framework](agentic/code/frameworks/sdlc-complete/README.md)** — Agents, commands, templates, flows
230
233
  - **[Marketing Kit](agentic/code/frameworks/media-marketing-kit/README.md)** — Campaign lifecycle guide
234
+ - **[Media Curator](agentic/code/frameworks/media-curator/README.md)** — Media archive management
235
+ - **[Research Complete](agentic/code/frameworks/research-complete/README.md)** — Research workflows
231
236
  - **[Voice Framework](agentic/code/addons/voice-framework/)** — Voice profiles and skills
232
237
 
233
238
  ### Extension System
@@ -239,7 +244,7 @@ AIWG's unified extension system enables dynamic discovery, semantic search, and
239
244
  - **[Extension Types Reference](docs/extensions/extension-types.md)** — Complete type definitions
240
245
 
241
246
  **Extension types:**
242
- - **Agents** (35+): Specialized AI personas (API Designer, Test Engineer, Security Auditor)
247
+ - **Agents** (70+): Specialized AI personas (API Designer, Test Engineer, Security Auditor)
243
248
  - **Commands** (31): CLI and slash commands (`aiwg use sdlc`, `/mention-wire`)
244
249
  - **Skills**: Natural language workflows (project awareness, voice application)
245
250
  - **Hooks**: Lifecycle event handlers (pre-session, post-write)
package/USAGE_GUIDE.md CHANGED
@@ -11,7 +11,7 @@ Native Claude Code integration via the plugin marketplace:
11
11
  /plugin marketplace add jmagly/ai-writing-guide
12
12
 
13
13
  # Install plugins
14
- /plugin install sdlc@aiwg # 58 SDLC agents
14
+ /plugin install sdlc@aiwg # 70+ SDLC agents
15
15
  /plugin install marketing@aiwg # 37 marketing agents
16
16
  /plugin install utils@aiwg # Core utilities
17
17
  /plugin install voice@aiwg # Voice profiles
@@ -359,11 +359,11 @@ For complex writing tasks, leverage specialized agents:
359
359
  **Quick Start**:
360
360
 
361
361
  ```bash
362
- # Deploy general-purpose writing agents to your project
363
- aiwg -deploy-agents --mode general
362
+ # Deploy SDLC framework to your project
363
+ aiwg use sdlc
364
364
 
365
- # Or deploy all agents (general + SDLC)
366
- aiwg -deploy-agents --mode both
365
+ # Or deploy all frameworks
366
+ aiwg use all
367
367
  ```
368
368
 
369
369
  **Agent Invocation**:
@@ -389,7 +389,7 @@ aiwg -deploy-agents --mode both
389
389
 
390
390
  #### SDLC Framework Agents (`/agentic/code/frameworks/sdlc-complete/agents/`)
391
391
 
392
- 51 specialized agents covering all development lifecycle phases:
392
+ 70+ specialized agents covering all development lifecycle phases:
393
393
 
394
394
  - **Development**: code-reviewer, test-engineer, architecture-designer, debugger, performance-engineer
395
395
  - **Requirements**: requirements-analyst, requirements-reviewer, business-process-analyst
@@ -0,0 +1,24 @@
1
+ {
2
+ "id": "research-complete",
3
+ "type": "framework",
4
+ "name": "Research Complete",
5
+ "version": "1.0.0",
6
+ "description": "Research workflow framework for discovery, acquisition, synthesis, citation, quality, and archival operations.",
7
+ "modeAliases": [
8
+ "research"
9
+ ],
10
+ "entry": {
11
+ "agents": "agents",
12
+ "commands": "commands",
13
+ "skills": "skills",
14
+ "templates": "templates"
15
+ },
16
+ "workspace": {
17
+ "subdirs": [
18
+ "repo",
19
+ "corpus",
20
+ "working",
21
+ "archive"
22
+ ]
23
+ }
24
+ }
@@ -4,13 +4,13 @@
4
4
 
5
5
  The SDLC Complete framework provides a comprehensive Plan → Act lifecycle for software delivery using AI agents. This specialized framework includes agents, commands, templates, and flows for managing the entire software development lifecycle.
6
6
 
7
- **Supported Platforms:** Claude Code, Warp Terminal, Factory AI, OpenAI/Codex (experimental)
7
+ **Supported Platforms:** Claude Code, Warp Terminal, Factory AI, GitHub Copilot, Cursor, OpenCode, OpenAI/Codex, Windsurf
8
8
 
9
9
  ## Framework Structure
10
10
 
11
11
  ### Content
12
12
 
13
- - `agents/` — 50+ specialized SDLC role agents (architecture-designer, requirements-analyst, security-gatekeeper, etc.)
13
+ - `agents/` — 70+ specialized SDLC role agents (architecture-designer, requirements-analyst, security-gatekeeper, etc.)
14
14
  - `commands/` — SDLC-specific slash commands (intake-start, orchestrate-project, security-gate, etc.)
15
15
  - `templates/` — Markdown templates for all SDLC artifacts
16
16
  - `flows/` — Phase-based workflows (Inception → Elaboration → Construction → Transition)
@@ -55,15 +55,20 @@ Use the AIWG CLI to deploy this framework:
55
55
 
56
56
  ```bash
57
57
  # Install CLI
58
- curl -fsSL https://raw.githubusercontent.com/jmagly/ai-writing-guide/refs/heads/main/tools/install/install.sh | bash
59
-
60
- # Deploy agents to project (choose your platform)
61
- aiwg -deploy-agents --mode sdlc # Claude Code
62
- aiwg -deploy-agents --platform warp --mode sdlc # Warp Terminal
63
- aiwg -deploy-agents --provider factory --mode sdlc --deploy-commands # Factory AI
58
+ npm install -g aiwg
59
+
60
+ # Deploy to project (choose your platform)
61
+ aiwg use sdlc # Claude Code (default)
62
+ aiwg use sdlc --provider warp # Warp Terminal
63
+ aiwg use sdlc --provider factory # Factory AI
64
+ aiwg use sdlc --provider copilot # GitHub Copilot
65
+ aiwg use sdlc --provider cursor # Cursor
66
+ aiwg use sdlc --provider codex # OpenAI/Codex
67
+ aiwg use sdlc --provider opencode # OpenCode
68
+ aiwg use sdlc --provider windsurf # Windsurf
64
69
 
65
70
  # Scaffold new project with SDLC templates
66
- aiwg -new
71
+ aiwg new my-project
67
72
  ```
68
73
 
69
74
  ## Usage
@@ -57,6 +57,18 @@
57
57
  "references/REF-002-llm-failure-modes-agentic",
58
58
  "references/REF-003-mcp-specification-2025",
59
59
  "releases",
60
+ "releases/v2026.2.9-announcement",
61
+ "releases/v2026.2.8-announcement",
62
+ "releases/v2026.2.7-announcement",
63
+ "releases/v2026.2.5-announcement",
64
+ "releases/v2026.2.4-announcement",
65
+ "releases/v2026.2.3-announcement",
66
+ "releases/v2026.2.0-announcement",
67
+ "releases/v2026.1.7-announcement",
68
+ "releases/v2026.1.6-announcement",
69
+ "releases/v2026.1.5-announcement",
70
+ "releases/v2026.1.4-announcement",
71
+ "releases/v2026.1.3-announcement",
60
72
  "releases/v2024.12.5-announcement",
61
73
  "releases/v2024.12.4-announcement",
62
74
  "releases/v2024.12.3-announcement",
@@ -441,10 +453,94 @@
441
453
  "summary": "Release notes",
442
454
  "collapsed": true
443
455
  },
456
+ {
457
+ "id": "releases/v2026.2.9-announcement",
458
+ "title": "v2026.2.9",
459
+ "summary": "Latest release",
460
+ "file": "releases/v2026.2.9-announcement.md",
461
+ "parent": "releases"
462
+ },
463
+ {
464
+ "id": "releases/v2026.2.8-announcement",
465
+ "title": "v2026.2.8",
466
+ "summary": "Previous release",
467
+ "file": "releases/v2026.2.8-announcement.md",
468
+ "parent": "releases"
469
+ },
470
+ {
471
+ "id": "releases/v2026.2.7-announcement",
472
+ "title": "v2026.2.7",
473
+ "summary": "Previous release",
474
+ "file": "releases/v2026.2.7-announcement.md",
475
+ "parent": "releases"
476
+ },
477
+ {
478
+ "id": "releases/v2026.2.5-announcement",
479
+ "title": "v2026.2.5",
480
+ "summary": "Previous release",
481
+ "file": "releases/v2026.2.5-announcement.md",
482
+ "parent": "releases"
483
+ },
484
+ {
485
+ "id": "releases/v2026.2.4-announcement",
486
+ "title": "v2026.2.4",
487
+ "summary": "Previous release",
488
+ "file": "releases/v2026.2.4-announcement.md",
489
+ "parent": "releases"
490
+ },
491
+ {
492
+ "id": "releases/v2026.2.3-announcement",
493
+ "title": "v2026.2.3",
494
+ "summary": "Previous release",
495
+ "file": "releases/v2026.2.3-announcement.md",
496
+ "parent": "releases"
497
+ },
498
+ {
499
+ "id": "releases/v2026.2.0-announcement",
500
+ "title": "v2026.2.0",
501
+ "summary": "Previous release",
502
+ "file": "releases/v2026.2.0-announcement.md",
503
+ "parent": "releases"
504
+ },
505
+ {
506
+ "id": "releases/v2026.1.7-announcement",
507
+ "title": "v2026.1.7",
508
+ "summary": "Previous release",
509
+ "file": "releases/v2026.1.7-announcement.md",
510
+ "parent": "releases"
511
+ },
512
+ {
513
+ "id": "releases/v2026.1.6-announcement",
514
+ "title": "v2026.1.6",
515
+ "summary": "Previous release",
516
+ "file": "releases/v2026.1.6-announcement.md",
517
+ "parent": "releases"
518
+ },
519
+ {
520
+ "id": "releases/v2026.1.5-announcement",
521
+ "title": "v2026.1.5",
522
+ "summary": "Previous release",
523
+ "file": "releases/v2026.1.5-announcement.md",
524
+ "parent": "releases"
525
+ },
526
+ {
527
+ "id": "releases/v2026.1.4-announcement",
528
+ "title": "v2026.1.4",
529
+ "summary": "Previous release",
530
+ "file": "releases/v2026.1.4-announcement.md",
531
+ "parent": "releases"
532
+ },
533
+ {
534
+ "id": "releases/v2026.1.3-announcement",
535
+ "title": "v2026.1.3",
536
+ "summary": "Previous release",
537
+ "file": "releases/v2026.1.3-announcement.md",
538
+ "parent": "releases"
539
+ },
444
540
  {
445
541
  "id": "releases/v2024.12.5-announcement",
446
542
  "title": "v2024.12.5",
447
- "summary": "Latest release",
543
+ "summary": "Previous release",
448
544
  "file": "releases/v2024.12.5-announcement.md",
449
545
  "parent": "releases"
450
546
  },
@@ -21,7 +21,7 @@ If you create a schema file but no agent references it, it does nothing. If you
21
21
 
22
22
  | Tier | Scale | Standalone | Source Location | Example |
23
23
  |------|-------|------------|-----------------|---------|
24
- | **Framework** | Large (50+ agents) | Yes | `agentic/code/frameworks/` | sdlc-complete, media-marketing-kit |
24
+ | **Framework** | Large (50+ agents) | Yes | `agentic/code/frameworks/` | sdlc-complete, media-marketing-kit, media-curator, research-complete |
25
25
  | **Extension** | Medium (5-20 agents) | No (requires parent framework) | `frameworks/{id}/extensions/` | gdpr, hipaa, sox |
26
26
  | **Addon** | Small (1-10 agents) | Yes | `agentic/code/addons/` | aiwg-utils, voice-framework |
27
27
 
@@ -21,7 +21,7 @@ Extensions are the building blocks of AIWG frameworks and addons. They include:
21
21
  | **hook** | Lifecycle event handlers | Pre-session setup, post-write validation |
22
22
  | **tool** | External utilities | git, jq, npm |
23
23
  | **mcp-server** | MCP protocol servers | AIWG MCP server |
24
- | **framework** | Complete workflows | SDLC Complete, Marketing Kit |
24
+ | **framework** | Complete workflows | SDLC Complete, Marketing Kit, Media Curator, Research Complete |
25
25
  | **addon** | Feature bundles | Voice Framework, Testing Quality |
26
26
  | **template** | Document templates | Use case template, ADR template |
27
27
  | **prompt** | Reusable prompts | Code review, security audit |
@@ -3,6 +3,18 @@
3
3
  "summary": "Release notes",
4
4
  "collapsed": true,
5
5
  "order": [
6
+ "v2026.2.9-announcement",
7
+ "v2026.2.8-announcement",
8
+ "v2026.2.7-announcement",
9
+ "v2026.2.5-announcement",
10
+ "v2026.2.4-announcement",
11
+ "v2026.2.3-announcement",
12
+ "v2026.2.0-announcement",
13
+ "v2026.1.7-announcement",
14
+ "v2026.1.6-announcement",
15
+ "v2026.1.5-announcement",
16
+ "v2026.1.4-announcement",
17
+ "v2026.1.3-announcement",
6
18
  "v2024.12.5-announcement",
7
19
  "v2024.12.4-announcement",
8
20
  "v2024.12.3-announcement",
@@ -0,0 +1,82 @@
1
+ # AIWG v2026.2.8 — "Full Catalog" Release
2
+
3
+ **Released**: 2026-02-14
4
+
5
+ This release makes all four AIWG frameworks individually deployable via the CLI and completes a comprehensive documentation audit to ensure everything reflects the current project state.
6
+
7
+ ## Highlights
8
+
9
+ | What changed | Why you care |
10
+ |--------------|--------------|
11
+ | `aiwg use media-curator` | Deploy the Media Curator framework standalone — no need for `aiwg use all` |
12
+ | `aiwg use research` | Deploy the Research Complete framework standalone |
13
+ | Complete provider help | All 8 providers visible in `aiwg help` output |
14
+ | Documentation audit | Stale counts, deprecated syntax, and missing references cleaned up |
15
+
16
+ ## New Framework Deployment Targets
17
+
18
+ Previously, the Media Curator and Research Complete frameworks could only be deployed via `aiwg use all`. Now they're first-class CLI targets:
19
+
20
+ ```bash
21
+ # Deploy individually
22
+ aiwg use media-curator # 6 agents, 9 commands, 9 skills
23
+ aiwg use research # 8 agents, 10 commands
24
+
25
+ # Deploy to any provider
26
+ aiwg use media-curator --provider cursor
27
+ aiwg use research --provider copilot
28
+
29
+ # Still works — deploys everything
30
+ aiwg use all
31
+ ```
32
+
33
+ ### All Four Frameworks
34
+
35
+ | Framework | Command | Agents | Commands | Skills |
36
+ |-----------|---------|--------|----------|--------|
37
+ | SDLC Complete | `aiwg use sdlc` | 70+ | 50+ | 10+ |
38
+ | Media Marketing Kit | `aiwg use marketing` | 37 | 20+ | 8 |
39
+ | Media Curator | `aiwg use media-curator` | 6 | 9 | 9 |
40
+ | Research Complete | `aiwg use research` | 8 | 10 | — |
41
+
42
+ ## Complete Provider Support
43
+
44
+ The help text now shows all 8 supported providers:
45
+
46
+ ```
47
+ Platform Options (--provider):
48
+ claude Claude Code (default)
49
+ copilot GitHub Copilot
50
+ factory Factory AI
51
+ codex / openai OpenAI Codex
52
+ cursor Cursor IDE
53
+ opencode OpenCode
54
+ warp Warp Terminal
55
+ windsurf Windsurf
56
+ ```
57
+
58
+ All 8 providers received deployment blocks for the new frameworks — 32 provider-framework combinations now supported.
59
+
60
+ ## Documentation Audit
61
+
62
+ A comprehensive audit of ~384 documentation files identified and fixed:
63
+
64
+ - **Agent counts**: "50+" and "58" → "70+" across README, USAGE_GUIDE, sdlc-complete/README
65
+ - **Deprecated CLI syntax**: `aiwg -deploy-agents --mode sdlc` → `aiwg use sdlc`
66
+ - **Missing frameworks**: media-curator and research-complete added to CLAUDE.md, README, development guide, extension overview
67
+ - **Platform count**: 4 → 8 in sdlc-complete/README
68
+ - **CalVer violation**: Renamed `v2026.01.3-announcement.md` to `v2026.1.3-announcement.md`
69
+ - **Planning archive**: 20 completed planning documents moved to `.aiwg/planning/archive/`
70
+
71
+ ## Install / Update
72
+
73
+ ```bash
74
+ npm install -g aiwg@2026.2.8
75
+
76
+ # Or update existing installation
77
+ aiwg update
78
+ ```
79
+
80
+ ## Full Changelog
81
+
82
+ See [CHANGELOG.md](../../CHANGELOG.md) for complete details.
@@ -0,0 +1,60 @@
1
+ # AIWG v2026.2.9 — "Manifest Native" Release
2
+
3
+ **Released**: 2026-02-15
4
+
5
+ This release completes provider normalization around manifest-driven discovery so framework/addon deployment no longer depends on scattered provider-specific curation. Codex now receives the same research and media-curator deployment coverage as the other providers.
6
+
7
+ ## Highlights
8
+
9
+ | What changed | Why you care |
10
+ |--------------|--------------|
11
+ | Manifest-native provider deployment | Framework artifacts are discovered from manifests/shared utilities instead of hardcoded per-provider lists |
12
+ | Codex framework parity | Research and Media Curator components are now included through the same mode-aware discovery path |
13
+ | Lower maintenance overhead | Adding new frameworks/components is significantly more automatic once manifests are present |
14
+ | Test coverage updates | Integration and smoke tests now assert normalized provider behavior for framework deployment |
15
+
16
+ ## Provider Normalization
17
+
18
+ All 8 providers now align on shared discovery behavior:
19
+
20
+ - Claude
21
+ - Codex (OpenAI)
22
+ - Copilot
23
+ - Cursor
24
+ - Factory
25
+ - OpenCode
26
+ - Warp
27
+ - Windsurf
28
+
29
+ Instead of each provider manually curating framework directories, deployment now uses centralized manifest-aware helpers to resolve frameworks and artifacts by mode.
30
+
31
+ ## Codex: Research + Media Curator Coverage
32
+
33
+ Codex deployment scripts now use framework discovery for command and skill selection, which closes gaps where newly added frameworks could be missed in Codex-specific install paths.
34
+
35
+ ### What this enables
36
+
37
+ ```bash
38
+ # These now deploy consistently for Codex via the normalized discovery path
39
+ aiwg use research --provider codex
40
+ aiwg use media-curator --provider codex
41
+ ```
42
+
43
+ ## Manifest-Driven Extensibility
44
+
45
+ A framework with a valid `manifest.json` and standard component layout is now discoverable by provider deployment without requiring one-off changes in each provider module.
46
+
47
+ This release also adds explicit manifest metadata for `research-complete` to support that flow.
48
+
49
+ ## Install / Update
50
+
51
+ ```bash
52
+ npm install -g aiwg@2026.2.9
53
+
54
+ # Or update existing installation
55
+ aiwg update
56
+ ```
57
+
58
+ ## Full Changelog
59
+
60
+ See [CHANGELOG.md](../../CHANGELOG.md) for complete details.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aiwg",
3
- "version": "2026.2.7",
3
+ "version": "2026.2.9",
4
4
  "description": "Cognitive architecture for AI-augmented software development with structured memory, ensemble validation, and closed-loop correction. FAIR-aligned artifacts, 84% cost reduction via human-in-the-loop, standards adopted by 100+ organizations.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -17,10 +17,11 @@
17
17
  "package-plugins": "node tools/plugin/package-plugins.mjs --all",
18
18
  "package-plugins:clean": "node tools/plugin/package-plugins.mjs --all --clean",
19
19
  "build": "tsc",
20
- "test": "vitest",
20
+ "test": "vitest run",
21
+ "test:ci": "vitest run --exclude \"test/integration/**\" --exclude \"test/characterization/**\" --exclude \"test/smoke/**\" --exclude \"test/unit/intake/git-history-analyzer.test.ts\" --exclude \"test/unit/ralph-external/snapshot-manager.test.ts\" --exclude \"test/unit/smiths/toolsmith/runtime-discovery.test.ts\"",
21
22
  "test:coverage": "vitest --coverage",
22
23
  "test:ui": "vitest --ui",
23
- "test:watch": "vitest --watch",
24
+ "test:watch": "vitest",
24
25
  "typecheck": "tsc --noEmit",
25
26
  "clean": "rm -rf dist coverage"
26
27
  },
@@ -36,8 +36,9 @@ AIWG CLI
36
36
  Usage: aiwg <command> [options]
37
37
 
38
38
  Framework Management:
39
- use <framework> Install and deploy framework (sdlc, marketing, writing, all)
40
- Options: --no-utils, --provider <claude|copilot|factory|openai|windsurf>, --force
39
+ use <framework> Install and deploy framework
40
+ Frameworks: sdlc, marketing, media-curator, research, writing, all
41
+ Options: --no-utils, --provider <provider>, --force
41
42
  list List installed frameworks and addons
42
43
  remove <id> Remove a framework or addon
43
44
 
@@ -97,11 +98,15 @@ Maintenance:
97
98
  -update Check for and apply updates
98
99
  -help Show this help message
99
100
 
100
- Platform Options:
101
- --provider copilot Deploy for GitHub Copilot
102
- --provider factory Deploy for Factory AI
103
- --provider openai Deploy for OpenAI/Codex
104
- --provider windsurf Deploy for Windsurf (EXPERIMENTAL)
101
+ Platform Options (--provider):
102
+ claude Claude Code (default)
103
+ copilot GitHub Copilot
104
+ factory Factory AI
105
+ codex / openai OpenAI Codex
106
+ cursor Cursor IDE
107
+ opencode OpenCode
108
+ warp Warp Terminal
109
+ windsurf Windsurf
105
110
 
106
111
  Model Selection (for 'use' command):
107
112
  --reasoning-model <name> Override model for reasoning tier (opus-level agents)
@@ -122,6 +127,8 @@ Ralph Loop (Iterative Execution):
122
127
 
123
128
  Examples:
124
129
  aiwg use sdlc Install SDLC framework
130
+ aiwg use media-curator Install Media Curator framework
131
+ aiwg use research Install Research framework
125
132
  aiwg use all --provider factory Install all frameworks for Factory AI
126
133
  aiwg use sdlc --reasoning-model opus-4-2 Deploy with custom reasoning model
127
134
  aiwg use sdlc --coding-model sonnet-5 --save Deploy with custom model and save
@@ -20,7 +20,7 @@ import { registerDeployedExtensions } from '../../extensions/deployment-registra
20
20
  /**
21
21
  * Valid framework identifiers
22
22
  */
23
- const VALID_FRAMEWORKS = ['sdlc', 'marketing', 'writing', 'general', 'all'] as const;
23
+ const VALID_FRAMEWORKS = ['sdlc', 'marketing', 'media-curator', 'research', 'writing', 'general', 'all'] as const;
24
24
  type Framework = typeof VALID_FRAMEWORKS[number];
25
25
 
26
26
  /**
@@ -29,6 +29,8 @@ type Framework = typeof VALID_FRAMEWORKS[number];
29
29
  const MODE_MAP: Record<Framework, string> = {
30
30
  sdlc: 'sdlc',
31
31
  marketing: 'marketing',
32
+ 'media-curator': 'media-curator',
33
+ research: 'research',
32
34
  writing: 'general',
33
35
  general: 'general',
34
36
  all: 'all',
@@ -122,7 +124,7 @@ export class UseHandler implements CommandHandler {
122
124
  if (!framework) {
123
125
  return {
124
126
  exitCode: 1,
125
- message: 'Error: Framework or addon name required\nFrameworks: sdlc, marketing, writing, all\nAddons: rlm',
127
+ message: 'Error: Framework or addon name required\nFrameworks: sdlc, marketing, media-curator, research, writing, all\nAddons: rlm',
126
128
  };
127
129
  }
128
130
 
@@ -85,11 +85,15 @@ export function generateHelp(registry: ExtensionRegistry): string {
85
85
  }
86
86
 
87
87
  // Platform options
88
- lines.push('Platform Options:');
89
- lines.push(' --provider copilot Deploy for GitHub Copilot');
90
- lines.push(' --provider factory Deploy for Factory AI');
91
- lines.push(' --provider openai Deploy for OpenAI/Codex');
92
- lines.push(' --provider windsurf Deploy for Windsurf (EXPERIMENTAL)');
88
+ lines.push('Platform Options (--provider):');
89
+ lines.push(' claude Claude Code (default)');
90
+ lines.push(' copilot GitHub Copilot');
91
+ lines.push(' factory Factory AI');
92
+ lines.push(' codex / openai OpenAI Codex');
93
+ lines.push(' cursor Cursor IDE');
94
+ lines.push(' opencode OpenCode');
95
+ lines.push(' warp Warp Terminal');
96
+ lines.push(' windsurf Windsurf');
93
97
  lines.push('');
94
98
 
95
99
  // Examples
@@ -11,7 +11,7 @@
11
11
  * Options:
12
12
  * --source <path> Source directory (defaults to repo root)
13
13
  * --target <path> Target directory (defaults to cwd)
14
- * --mode <type> Deployment mode: general, sdlc, marketing, both, or all (default)
14
+ * --mode <type> Deployment mode: general, sdlc, marketing (alias: mmk), media-curator, research, both, or all (default)
15
15
  * --deploy-commands Deploy commands in addition to agents
16
16
  * --deploy-skills Deploy skills in addition to agents
17
17
  * --deploy-rules Deploy rules in addition to agents
@@ -28,12 +28,14 @@
28
28
  * --create-agents-md Create/update AGENTS.md template (Factory/Codex/OpenCode/Cursor)
29
29
  *
30
30
  * Modes:
31
- * general - Deploy only writing-quality addon agents and commands (alias: writing)
32
- * writing - Deploy only writing-quality addon agents (alias for general)
33
- * sdlc - Deploy only SDLC Complete framework agents and commands
34
- * marketing - Deploy only Media/Marketing Kit framework agents and commands
35
- * both - Deploy writing + SDLC (legacy compatibility)
36
- * all - Deploy all frameworks + addons (default)
31
+ * general - Deploy only writing-quality addon agents and commands (alias: writing)
32
+ * writing - Deploy only writing-quality addon agents (alias for general)
33
+ * sdlc - Deploy only SDLC Complete framework agents and commands
34
+ * marketing - Deploy only Media/Marketing Kit framework agents and commands (alias: mmk)
35
+ * media-curator - Deploy only Media Curator framework agents and commands
36
+ * research - Deploy only Research Complete framework agents and commands
37
+ * both - Deploy writing + SDLC (legacy compatibility)
38
+ * all - Deploy all frameworks + addons (default)
37
39
  *
38
40
  * Providers:
39
41
  * claude - Claude Code (default) - .claude/agents/, .claude/commands/, .claude/skills/, .claude/rules/
@@ -76,7 +78,7 @@ function parseArgs() {
76
78
  const cfg = {
77
79
  source: null,
78
80
  target: process.cwd(),
79
- mode: 'all', // 'general', 'sdlc', 'marketing', 'both' (legacy), or 'all'
81
+ mode: 'all', // 'general', 'sdlc', 'marketing', 'media-curator', 'research', 'both' (legacy), or 'all'
80
82
  dryRun: false,
81
83
  force: false,
82
84
  provider: 'claude',
@@ -138,7 +140,7 @@ Usage:
138
140
  Options:
139
141
  --source <path> Source directory (defaults to repo root)
140
142
  --target <path> Target directory (defaults to cwd)
141
- --mode <type> Deployment mode: general, sdlc, marketing, both, or all (default)
143
+ --mode <type> Deployment mode: general, sdlc, marketing (alias: mmk), media-curator, research, both, or all (default)
142
144
  --deploy-commands Deploy commands in addition to agents
143
145
  --deploy-skills Deploy skills in addition to agents
144
146
  --deploy-rules Deploy rules in addition to agents
@@ -177,11 +179,13 @@ Providers (all deploy agents, commands, skills, and rules):
177
179
  Paths: .windsurf/agents/, .windsurf/workflows/, .windsurf/skills/, .windsurf/rules/
178
180
 
179
181
  Modes:
180
- general - Writing-quality addon agents and commands (alias: writing)
181
- sdlc - SDLC Complete framework agents and commands
182
- marketing - Media/Marketing Kit framework agents and commands
183
- both - writing + SDLC (legacy compatibility)
184
- all - All frameworks + addons (default)
182
+ general - Writing-quality addon agents and commands (alias: writing)
183
+ sdlc - SDLC Complete framework agents and commands
184
+ marketing - Media/Marketing Kit framework agents and commands (alias: mmk)
185
+ media-curator - Media Curator framework agents and commands
186
+ research - Research Complete framework agents and commands
187
+ both - writing + SDLC (legacy compatibility)
188
+ all - All frameworks + addons (default)
185
189
 
186
190
  Examples:
187
191
  # Deploy SDLC framework to Claude Code
@@ -338,6 +342,7 @@ function deepMerge(target, source) {
338
342
 
339
343
  // Normalize mode aliases
340
344
  if (cfg.mode === 'writing') cfg.mode = 'general';
345
+ if (cfg.mode === 'mmk') cfg.mode = 'marketing';
341
346
 
342
347
  console.log(`\n=== AIWG Agent Deployment ===`);
343
348
  console.log(`Provider: ${cfg.provider}`);