aiwg 2024.12.2 โ 2024.12.3
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 +1 -0
- package/README.md +38 -66
- package/agentic/code/frameworks/sdlc-complete/agents/README.md +0 -2
- package/agentic/code/frameworks/sdlc-complete/agents/security-architect.md +10 -0
- package/agentic/code/frameworks/sdlc-complete/agents/test-engineer.md +9 -0
- package/agentic/code/frameworks/sdlc-complete/templates/governance/adr-template.md +8 -0
- package/agentic/code/frameworks/sdlc-complete/templates/requirements/use-case-spec-template.md +5 -1
- package/agentic/code/frameworks/sdlc-complete/templates/test/master-test-plan-template.md +11 -0
- package/bin/postinstall.mjs +61 -0
- package/docs/CLI_USAGE.md +145 -45
- package/docs/_config.yml +5 -0
- package/docs/index.md +106 -0
- package/docs/quickstart.md +8 -0
- package/package.json +17 -12
- package/src/agents/agent-deployer.ts +8 -0
- package/src/cli/index.mjs +16 -0
- package/src/cli/watch-service.ts +2 -1
- package/src/cli/workflow-orchestrator.ts +9 -0
- package/src/intake/git-history-analyzer.ts +5 -0
- package/src/mcp/server.mjs +38 -4
- package/src/plugin/plugin-installer.ts +7 -0
- package/src/plugin/registry-validator.ts +7 -2
- package/src/testing/generators/test-case-generator.ts +6 -0
- package/src/writing/validation-engine.ts +8 -0
- package/tools/cli/demo.mjs +204 -0
- package/tools/cli/doctor.mjs +155 -0
- package/tools/contrib/start-contribution.mjs +2 -2
- package/agentic/code/addons/voice-framework/skills/voice-apply/scripts/__pycache__/voice_loader.cpython-312.pyc +0 -0
package/CLAUDE.md
CHANGED
package/README.md
CHANGED
|
@@ -1,58 +1,63 @@
|
|
|
1
1
|
<div align="center">
|
|
2
2
|
|
|
3
|
-
#
|
|
3
|
+
# AIWG โ Agentic AI Workflow Guide
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
Modular toolkit for AI-powered SDLC, marketing, and content workflows.
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
```bash
|
|
8
|
+
npm i -g aiwg # install globally
|
|
9
|
+
aiwg demo # try it in < 2 minutes
|
|
10
|
+
```
|
|
8
11
|
|
|
12
|
+
[](https://www.npmjs.com/package/aiwg)
|
|
13
|
+
[](https://www.npmjs.com/package/aiwg)
|
|
9
14
|
[](LICENSE)
|
|
10
|
-
[](https://nodejs.org)
|
|
11
15
|
[](https://github.com/jmagly/ai-writing-guide/stargazers)
|
|
12
16
|
|
|
13
|
-
[**Get Started**](#-quick-start) ยท [**
|
|
17
|
+
[**Get Started**](#-quick-start) ยท [**Documentation**](#-documentation) ยท [**Examples**](examples/) ยท [**Contributing**](#-contributing) ยท [**Community**](#-community--support)
|
|
14
18
|
|
|
15
19
|
[](https://discord.gg/BuAusFMxdA)
|
|
16
20
|
[](https://t.me/+oJg9w2lE6A5lOGFh)
|
|
17
21
|
|
|
22
|
+
๐ **Live demo & docs:** [https://jmagly.github.io/ai-writing-guide](https://jmagly.github.io/ai-writing-guide)
|
|
23
|
+
|
|
18
24
|
</div>
|
|
19
25
|
|
|
20
26
|
---
|
|
21
27
|
|
|
22
28
|
## ๐ Quick Start
|
|
23
29
|
|
|
24
|
-
>
|
|
25
|
-
|
|
26
|
-
### Option 1: npm (Recommended)
|
|
30
|
+
> **Prerequisites:** Node.js โฅ18.0.0 and an AI platform (Claude Code, Warp Terminal, or Factory AI)
|
|
27
31
|
|
|
28
32
|
```bash
|
|
33
|
+
# Install
|
|
29
34
|
npm install -g aiwg
|
|
30
|
-
```
|
|
31
35
|
|
|
32
|
-
|
|
36
|
+
# Try the demo (creates ~/aiwg-demo with everything set up)
|
|
37
|
+
aiwg demo
|
|
33
38
|
|
|
34
|
-
|
|
35
|
-
|
|
39
|
+
# Or activate on your existing project
|
|
40
|
+
cd your-project
|
|
41
|
+
aiwg use sdlc
|
|
36
42
|
```
|
|
37
43
|
|
|
38
44
|
<details>
|
|
39
|
-
<summary><strong>
|
|
40
|
-
|
|
41
|
-
After installing via npm, you can switch to bleeding edge (latest from main branch):
|
|
45
|
+
<summary><strong>More installation options</strong></summary>
|
|
42
46
|
|
|
47
|
+
**Bash Script (Legacy):**
|
|
43
48
|
```bash
|
|
44
|
-
|
|
45
|
-
aiwg --use-main
|
|
46
|
-
|
|
47
|
-
# Switch back to stable (npm releases)
|
|
48
|
-
aiwg --use-stable
|
|
49
|
+
curl -fsSL https://raw.githubusercontent.com/jmagly/ai-writing-guide/main/tools/install/install.sh | bash
|
|
49
50
|
```
|
|
50
51
|
|
|
51
|
-
Edge
|
|
52
|
+
**Bleeding Edge Mode:**
|
|
53
|
+
```bash
|
|
54
|
+
aiwg --use-main # Track main branch
|
|
55
|
+
aiwg --use-stable # Back to npm releases
|
|
56
|
+
```
|
|
52
57
|
|
|
53
58
|
</details>
|
|
54
59
|
|
|
55
|
-
**
|
|
60
|
+
**Choose your framework:**
|
|
56
61
|
|
|
57
62
|
```bash
|
|
58
63
|
cd your-project
|
|
@@ -137,9 +142,9 @@ cd my-awesome-project
|
|
|
137
142
|
</tr>
|
|
138
143
|
</table>
|
|
139
144
|
|
|
140
|
-
### ๐ง **
|
|
145
|
+
### ๐ง **Reliability Patterns**
|
|
141
146
|
|
|
142
|
-
**Research-backed patterns for
|
|
147
|
+
**Research-backed patterns for robust AI workflows.**
|
|
143
148
|
|
|
144
149
|
<table>
|
|
145
150
|
<tr>
|
|
@@ -153,7 +158,7 @@ cd my-awesome-project
|
|
|
153
158
|
<td width="50%">
|
|
154
159
|
|
|
155
160
|
- โ
**Failure Mode Mitigations** โ Address 4 LLM failure archetypes
|
|
156
|
-
- โ
**Deploy Generators** โ
|
|
161
|
+
- โ
**Deploy Generators** โ Docker/K8s config generation
|
|
157
162
|
- โ
**Evals Framework** โ Automated agent behavior testing
|
|
158
163
|
|
|
159
164
|
</td>
|
|
@@ -1172,50 +1177,17 @@ Closes #123
|
|
|
1172
1177
|
|
|
1173
1178
|
---
|
|
1174
1179
|
|
|
1175
|
-
##
|
|
1176
|
-
|
|
1177
|
-
**IMPORTANT:** This framework generates extensive AI interactions. Understand your costs before deploying.
|
|
1178
|
-
|
|
1179
|
-
### Usage Characteristics
|
|
1180
|
-
|
|
1181
|
-
**Document Generation Volume:**
|
|
1182
|
-
- Single workflow: 5,000-15,000 words (intake, SAD, reviews, synthesis)
|
|
1183
|
-
- Multi-agent pattern: 3-5x token multiplier (parallel reviews)
|
|
1184
|
-
- Full Inception phase: ~50,000-100,000 words total output
|
|
1185
|
-
- Iteration cycles: 10,000-30,000 words per iteration
|
|
1186
|
-
|
|
1187
|
-
**Typical Monthly Usage** (varies widely):
|
|
1188
|
-
- **Light** (1-2 workflows/week): 40,000-120,000 words โ ~$10-20/month
|
|
1189
|
-
- **Moderate** (10-20 workflows/month): 150,000-300,000 words โ **$20-50/month**
|
|
1190
|
-
- **Heavy** (daily workflows, full SDLC): 500,000+ words โ **$50-150+/month**
|
|
1191
|
-
|
|
1192
|
-
### Account Requirements
|
|
1193
|
-
|
|
1194
|
-
| Account Type | Suitability | Notes |
|
|
1195
|
-
|--------------|-------------|-------|
|
|
1196
|
-
| **Claude Free** | โ Not Suitable | Daily message limits hit quickly (5-10 messages) |
|
|
1197
|
-
| **Claude Pro** | โ
**Recommended** | Higher limits, suitable for moderate usage |
|
|
1198
|
-
| **Claude Team/Enterprise** | โ
Best | Highest limits, team collaboration, no rate throttling |
|
|
1199
|
-
| **API Pay-as-you-go** | โ ๏ธ Use with Caution | Can be expensive without cost controls ($50-200+/month) |
|
|
1200
|
-
|
|
1201
|
-
### Cost Mitigation Strategies
|
|
1202
|
-
|
|
1203
|
-
1. **Start Small:** Test with 1-2 use cases before full deployment
|
|
1204
|
-
2. **Use Selectively:** Not every project needs full SDLC artifacts
|
|
1205
|
-
3. **Manual Review:** Edit generated drafts instead of regenerating
|
|
1206
|
-
4. **Monitor Usage:** Track costs weekly, set budget alerts if using API
|
|
1207
|
-
5. **Skip Optional Workflows:** Only run required artifacts for your profile
|
|
1180
|
+
## ๐ก Usage Notes
|
|
1208
1181
|
|
|
1209
|
-
|
|
1182
|
+
AIWG is optimized for token efficiency through modular context loading and path-scoped rules. Most users on **Claude Pro** or similar plans will have no issues with normal usage.
|
|
1210
1183
|
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
-
|
|
1215
|
-
|
|
1216
|
-
- Whether you hit rate limits (retry costs)
|
|
1184
|
+
| Account Type | Suitability |
|
|
1185
|
+
|--------------|-------------|
|
|
1186
|
+
| **Claude Pro / Team** | โ
Recommended |
|
|
1187
|
+
| **API Pay-as-you-go** | โ
Works well with cost monitoring |
|
|
1188
|
+
| **Free tiers** | โ ๏ธ May hit rate limits on heavy workflows |
|
|
1217
1189
|
|
|
1218
|
-
**
|
|
1190
|
+
**Tips:** Start with individual workflows before running full SDLC phases. Use `--interactive` mode to control generation scope.
|
|
1219
1191
|
|
|
1220
1192
|
---
|
|
1221
1193
|
|
|
@@ -40,3 +40,13 @@ implementation controls, and enforce release gates.
|
|
|
40
40
|
- [ ] Zero open critical findings; highs triaged with owner/date
|
|
41
41
|
- [ ] SBOM updated; dependency risk addressed or accepted
|
|
42
42
|
- [ ] Secrets policy verified; no hardcoded secrets
|
|
43
|
+
|
|
44
|
+
## References
|
|
45
|
+
|
|
46
|
+
- @.aiwg/requirements/use-cases/UC-011-validate-plugin-security.md - Security validation use case
|
|
47
|
+
- @src/plugin/registry-validator.ts - Plugin security validation implementation
|
|
48
|
+
- @.aiwg/requirements/nfr-modules/security.md - Security requirements
|
|
49
|
+
- @.aiwg/architecture/software-architecture-doc.md - Architecture baseline (Section 4.6 Security View)
|
|
50
|
+
- @.claude/commands/security-gate.md - Security gate command
|
|
51
|
+
- @.claude/commands/flow-security-review-cycle.md - Security review workflow
|
|
52
|
+
- @.claude/commands/security-audit.md - Comprehensive security audit
|
|
@@ -500,3 +500,12 @@ const fixtures = {
|
|
|
500
500
|
- Coverage percentage trends
|
|
501
501
|
- False positive rate
|
|
502
502
|
- Test maintenance effort
|
|
503
|
+
|
|
504
|
+
## References
|
|
505
|
+
|
|
506
|
+
- @.aiwg/requirements/use-cases/UC-009-generate-test-artifacts.md - Use case
|
|
507
|
+
- @src/testing/generators/test-case-generator.ts - Test case generator implementation
|
|
508
|
+
- @.aiwg/requirements/nfr-modules/performance.md - Performance requirements (NFR-TEST-01)
|
|
509
|
+
- @.aiwg/architecture/software-architecture-doc.md - Architecture baseline
|
|
510
|
+
- @.claude/commands/generate-tests.md - Related slash command
|
|
511
|
+
- @.claude/commands/flow-test-strategy-execution.md - Test strategy workflow
|
|
@@ -23,3 +23,11 @@ Positive, negative, and trade-offs. Operational impacts.
|
|
|
23
23
|
## Alternatives Considered
|
|
24
24
|
|
|
25
25
|
Other options and why not chosen.
|
|
26
|
+
|
|
27
|
+
## References
|
|
28
|
+
|
|
29
|
+
Wire @-mentions for traceability:
|
|
30
|
+
|
|
31
|
+
- @.aiwg/requirements/use-cases/UC-XXX.md - Driving requirement
|
|
32
|
+
- @.aiwg/architecture/software-architecture-doc.md - Architecture context
|
|
33
|
+
- @src/path/to/implementation.ts - Implementation (when applicable)
|
package/agentic/code/frameworks/sdlc-complete/templates/requirements/use-case-spec-template.md
CHANGED
|
@@ -49,7 +49,11 @@ design, testing, and traceability matrices.
|
|
|
49
49
|
14. **Open Issues and TODOs**
|
|
50
50
|
- Track unresolved questions, decisions, or dependencies.
|
|
51
51
|
15. **References**
|
|
52
|
-
-
|
|
52
|
+
- Wire @-mentions for traceability:
|
|
53
|
+
- @.aiwg/architecture/software-architecture-doc.md - Architecture context
|
|
54
|
+
- @src/path/to/implementation.ts - Implementation
|
|
55
|
+
- @test/path/to/test.ts - Test coverage
|
|
56
|
+
- @.aiwg/requirements/nfr-modules/XXX.md - Related NFRs
|
|
53
57
|
|
|
54
58
|
## Agent Notes
|
|
55
59
|
|
|
@@ -48,9 +48,20 @@ Establish the overarching testing strategy, scope, resources, and schedule acros
|
|
|
48
48
|
14. **Approvals**
|
|
49
49
|
- Capture sign-off requirements and responsible parties.
|
|
50
50
|
|
|
51
|
+
## References
|
|
52
|
+
|
|
53
|
+
Wire @-mentions for traceability:
|
|
54
|
+
|
|
55
|
+
- @.aiwg/requirements/use-cases/ - Use cases covered
|
|
56
|
+
- @.aiwg/architecture/software-architecture-doc.md - Architecture under test
|
|
57
|
+
- @.aiwg/requirements/nfr-modules/performance.md - Performance requirements
|
|
58
|
+
- @test/ - Test implementation directory
|
|
59
|
+
- @src/ - Source code under test
|
|
60
|
+
|
|
51
61
|
## Agent Notes
|
|
52
62
|
|
|
53
63
|
- Keep terminology aligned with the Supplementary Specification and Risk List.
|
|
54
64
|
- Link to iteration-level plans and evaluation summaries for traceability.
|
|
55
65
|
- Update schedule and risks after each iteration assessment.
|
|
56
66
|
- Verify the Automation Outputs entry is satisfied before signaling completion.
|
|
67
|
+
- **Wire @-mentions** in References section when generating this document.
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
/**
|
|
3
|
+
* AIWG Post-install Script
|
|
4
|
+
* Checks if aiwg is accessible in PATH and provides helpful guidance
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import { execSync } from 'child_process';
|
|
8
|
+
|
|
9
|
+
const GREEN = '\x1b[32m';
|
|
10
|
+
const YELLOW = '\x1b[33m';
|
|
11
|
+
const CYAN = '\x1b[36m';
|
|
12
|
+
const RESET = '\x1b[0m';
|
|
13
|
+
const BOLD = '\x1b[1m';
|
|
14
|
+
|
|
15
|
+
function checkPath() {
|
|
16
|
+
try {
|
|
17
|
+
// Try to run aiwg --version
|
|
18
|
+
execSync('aiwg --version', { stdio: 'ignore' });
|
|
19
|
+
|
|
20
|
+
// Success - aiwg is in PATH
|
|
21
|
+
console.log('');
|
|
22
|
+
console.log(`${GREEN}โ${RESET} aiwg installed successfully!`);
|
|
23
|
+
console.log('');
|
|
24
|
+
console.log(` ${CYAN}aiwg demo${RESET} Create a demo project to try it out`);
|
|
25
|
+
console.log(` ${CYAN}aiwg doctor${RESET} Check installation health`);
|
|
26
|
+
console.log(` ${CYAN}aiwg -help${RESET} Show all commands`);
|
|
27
|
+
console.log('');
|
|
28
|
+
} catch {
|
|
29
|
+
// aiwg not in PATH
|
|
30
|
+
console.log('');
|
|
31
|
+
console.log(`${YELLOW}โ ${RESET} aiwg installed but may not be in your PATH`);
|
|
32
|
+
console.log('');
|
|
33
|
+
console.log(' If you get "command not found", add npm global bin to PATH:');
|
|
34
|
+
console.log('');
|
|
35
|
+
|
|
36
|
+
// Detect shell and provide appropriate instructions
|
|
37
|
+
const shell = process.env.SHELL || '';
|
|
38
|
+
|
|
39
|
+
if (shell.includes('zsh')) {
|
|
40
|
+
console.log(` ${CYAN}echo 'export PATH="$(npm config get prefix)/bin:$PATH"' >> ~/.zshrc${RESET}`);
|
|
41
|
+
console.log(` ${CYAN}source ~/.zshrc${RESET}`);
|
|
42
|
+
} else if (shell.includes('bash')) {
|
|
43
|
+
console.log(` ${CYAN}echo 'export PATH="$(npm config get prefix)/bin:$PATH"' >> ~/.bashrc${RESET}`);
|
|
44
|
+
console.log(` ${CYAN}source ~/.bashrc${RESET}`);
|
|
45
|
+
} else {
|
|
46
|
+
console.log(` ${CYAN}npm config get prefix${RESET} # Find your npm global bin directory`);
|
|
47
|
+
console.log(` Add that path + /bin to your shell's PATH`);
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
console.log('');
|
|
51
|
+
console.log(' Or run directly with npx:');
|
|
52
|
+
console.log(` ${CYAN}npx aiwg demo${RESET}`);
|
|
53
|
+
console.log('');
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
// Only run check if this is a global install
|
|
58
|
+
// Local installs (devDependencies) don't need PATH
|
|
59
|
+
if (!process.env.npm_config_save_dev && !process.env.npm_config_save) {
|
|
60
|
+
checkPath();
|
|
61
|
+
}
|
package/docs/CLI_USAGE.md
CHANGED
|
@@ -3,90 +3,190 @@
|
|
|
3
3
|
## Installation
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
|
-
npm install -g
|
|
6
|
+
npm install -g aiwg
|
|
7
7
|
```
|
|
8
8
|
|
|
9
9
|
## Quick Start
|
|
10
10
|
|
|
11
|
-
|
|
11
|
+
```bash
|
|
12
|
+
# Try AIWG in under 2 minutes
|
|
13
|
+
aiwg demo
|
|
14
|
+
|
|
15
|
+
# Check installation health
|
|
16
|
+
aiwg doctor
|
|
17
|
+
|
|
18
|
+
# Deploy SDLC framework to your project
|
|
19
|
+
cd your-project
|
|
20
|
+
aiwg use sdlc
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Core Commands
|
|
24
|
+
|
|
25
|
+
### demo
|
|
26
|
+
|
|
27
|
+
Create a complete demo project to explore AIWG.
|
|
12
28
|
|
|
13
29
|
```bash
|
|
14
|
-
|
|
15
|
-
|
|
30
|
+
aiwg demo
|
|
31
|
+
```
|
|
16
32
|
|
|
17
|
-
|
|
18
|
-
aiwg
|
|
33
|
+
Creates `~/aiwg-demo/` with:
|
|
34
|
+
- Full `.aiwg/` directory structure
|
|
35
|
+
- Sample intake form and requirements
|
|
36
|
+
- All SDLC agents and commands deployed
|
|
37
|
+
- Ready for Claude Code or Cursor
|
|
19
38
|
|
|
20
|
-
|
|
21
|
-
aiwg validate README.md --threshold 80
|
|
39
|
+
### doctor
|
|
22
40
|
|
|
23
|
-
|
|
24
|
-
|
|
41
|
+
Check AIWG installation health and diagnose issues.
|
|
42
|
+
|
|
43
|
+
```bash
|
|
44
|
+
aiwg doctor
|
|
25
45
|
```
|
|
26
46
|
|
|
27
|
-
|
|
47
|
+
Checks:
|
|
48
|
+
- AIWG installation location
|
|
49
|
+
- Version info
|
|
50
|
+
- Project `.aiwg/` directory
|
|
51
|
+
- Deployed agents and commands
|
|
52
|
+
- Node.js version
|
|
53
|
+
- MCP server availability
|
|
54
|
+
- Skill Seekers (optional)
|
|
55
|
+
|
|
56
|
+
### use
|
|
57
|
+
|
|
58
|
+
Deploy a framework to your project.
|
|
28
59
|
|
|
29
60
|
```bash
|
|
30
|
-
#
|
|
31
|
-
aiwg
|
|
61
|
+
# SDLC framework (software development)
|
|
62
|
+
aiwg use sdlc
|
|
32
63
|
|
|
33
|
-
#
|
|
34
|
-
aiwg
|
|
64
|
+
# Marketing framework
|
|
65
|
+
aiwg use marketing
|
|
35
66
|
|
|
36
|
-
#
|
|
37
|
-
aiwg
|
|
67
|
+
# Writing addon (voice profiles)
|
|
68
|
+
aiwg use writing
|
|
69
|
+
|
|
70
|
+
# All frameworks
|
|
71
|
+
aiwg use all
|
|
38
72
|
```
|
|
39
73
|
|
|
40
|
-
|
|
74
|
+
**Options:**
|
|
75
|
+
- `--provider <name>`: Target platform (claude, factory, openai, warp)
|
|
76
|
+
- `--no-utils`: Skip aiwg-utils addon
|
|
77
|
+
- `--force`: Overwrite existing deployments
|
|
78
|
+
|
|
79
|
+
### -new
|
|
80
|
+
|
|
81
|
+
Create a new project with full SDLC scaffolding.
|
|
41
82
|
|
|
42
83
|
```bash
|
|
43
|
-
|
|
44
|
-
|
|
84
|
+
aiwg -new my-project
|
|
85
|
+
cd my-project
|
|
86
|
+
```
|
|
87
|
+
|
|
88
|
+
### -status
|
|
45
89
|
|
|
46
|
-
|
|
47
|
-
aiwg workflow docs/*.md --auto-fix
|
|
90
|
+
Show workspace health and installed frameworks.
|
|
48
91
|
|
|
49
|
-
|
|
50
|
-
aiwg
|
|
92
|
+
```bash
|
|
93
|
+
aiwg -status
|
|
51
94
|
```
|
|
52
95
|
|
|
53
|
-
###
|
|
96
|
+
### list
|
|
97
|
+
|
|
98
|
+
List installed frameworks and addons.
|
|
54
99
|
|
|
55
100
|
```bash
|
|
56
|
-
|
|
57
|
-
|
|
101
|
+
aiwg list
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
### remove
|
|
58
105
|
|
|
59
|
-
|
|
60
|
-
aiwg watch "**/*.md" "**/*.txt" --debounce 1000
|
|
106
|
+
Remove a framework or addon.
|
|
61
107
|
|
|
62
|
-
|
|
63
|
-
aiwg
|
|
108
|
+
```bash
|
|
109
|
+
aiwg remove <id>
|
|
64
110
|
```
|
|
65
111
|
|
|
66
|
-
|
|
112
|
+
## MCP Server
|
|
113
|
+
|
|
114
|
+
### mcp serve
|
|
115
|
+
|
|
116
|
+
Start the AIWG MCP server.
|
|
67
117
|
|
|
68
118
|
```bash
|
|
69
|
-
|
|
70
|
-
|
|
119
|
+
aiwg mcp serve
|
|
120
|
+
```
|
|
71
121
|
|
|
72
|
-
|
|
73
|
-
|
|
122
|
+
### mcp install
|
|
123
|
+
|
|
124
|
+
Generate MCP client configuration.
|
|
125
|
+
|
|
126
|
+
```bash
|
|
127
|
+
# For Claude Desktop
|
|
128
|
+
aiwg mcp install claude
|
|
129
|
+
|
|
130
|
+
# For Cursor IDE
|
|
131
|
+
aiwg mcp install cursor
|
|
132
|
+
|
|
133
|
+
# For Factory AI
|
|
134
|
+
aiwg mcp install factory
|
|
135
|
+
|
|
136
|
+
# Preview without writing
|
|
137
|
+
aiwg mcp install claude --dry-run
|
|
74
138
|
```
|
|
75
139
|
|
|
76
|
-
###
|
|
140
|
+
### mcp info
|
|
141
|
+
|
|
142
|
+
Show MCP server capabilities.
|
|
77
143
|
|
|
78
144
|
```bash
|
|
79
|
-
|
|
80
|
-
|
|
145
|
+
aiwg mcp info
|
|
146
|
+
```
|
|
81
147
|
|
|
82
|
-
|
|
83
|
-
aiwg install-hooks --pre-commit --pre-push
|
|
148
|
+
## Channel Management
|
|
84
149
|
|
|
85
|
-
|
|
86
|
-
aiwg install-hooks --force
|
|
150
|
+
### --use-main
|
|
87
151
|
|
|
88
|
-
|
|
89
|
-
|
|
152
|
+
Switch to bleeding edge (tracks main branch).
|
|
153
|
+
|
|
154
|
+
```bash
|
|
155
|
+
aiwg --use-main
|
|
156
|
+
```
|
|
157
|
+
|
|
158
|
+
### --use-stable
|
|
159
|
+
|
|
160
|
+
Switch back to stable (npm releases).
|
|
161
|
+
|
|
162
|
+
```bash
|
|
163
|
+
aiwg --use-stable
|
|
164
|
+
```
|
|
165
|
+
|
|
166
|
+
## Maintenance
|
|
167
|
+
|
|
168
|
+
### -version
|
|
169
|
+
|
|
170
|
+
Show version and channel info.
|
|
171
|
+
|
|
172
|
+
```bash
|
|
173
|
+
aiwg -version
|
|
174
|
+
```
|
|
175
|
+
|
|
176
|
+
### -update
|
|
177
|
+
|
|
178
|
+
Check for and apply updates.
|
|
179
|
+
|
|
180
|
+
```bash
|
|
181
|
+
aiwg -update
|
|
182
|
+
```
|
|
183
|
+
|
|
184
|
+
### -help
|
|
185
|
+
|
|
186
|
+
Show all available commands.
|
|
187
|
+
|
|
188
|
+
```bash
|
|
189
|
+
aiwg -help
|
|
90
190
|
```
|
|
91
191
|
|
|
92
192
|
## Commands
|
package/docs/_config.yml
ADDED
package/docs/index.md
ADDED
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
---
|
|
2
|
+
layout: default
|
|
3
|
+
title: AIWG - Agentic AI Workflow Guide
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# AIWG โ Agentic AI Workflow Guide
|
|
7
|
+
|
|
8
|
+
Modular toolkit for AI-powered SDLC, marketing, and content workflows.
|
|
9
|
+
|
|
10
|
+
## Quick Install
|
|
11
|
+
|
|
12
|
+
```bash
|
|
13
|
+
npm i -g aiwg # install globally
|
|
14
|
+
aiwg demo # try it in < 2 minutes
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
[](https://www.npmjs.com/package/aiwg)
|
|
18
|
+
[](https://www.npmjs.com/package/aiwg)
|
|
19
|
+
[](https://github.com/jmagly/ai-writing-guide/blob/main/LICENSE)
|
|
20
|
+
|
|
21
|
+
## What is AIWG?
|
|
22
|
+
|
|
23
|
+
AIWG is a modular framework toolkit that provides:
|
|
24
|
+
|
|
25
|
+
- **93 Specialized AI Agents** - For SDLC, marketing, and content workflows
|
|
26
|
+
- **76 Workflow Commands** - Phase transitions, reviews, deployments
|
|
27
|
+
- **MCP Server** - Model Context Protocol integration
|
|
28
|
+
- **Multi-Platform Support** - Claude Code, Warp Terminal, Factory AI, Cursor
|
|
29
|
+
|
|
30
|
+
## Getting Started
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
# Install globally
|
|
34
|
+
npm install -g aiwg
|
|
35
|
+
|
|
36
|
+
# Create a demo project (recommended first step)
|
|
37
|
+
aiwg demo
|
|
38
|
+
cd ~/aiwg-demo
|
|
39
|
+
|
|
40
|
+
# Or use on your existing project
|
|
41
|
+
cd your-project
|
|
42
|
+
aiwg use sdlc # Deploy SDLC framework (54 agents, 48 commands)
|
|
43
|
+
aiwg use marketing # Deploy Marketing framework (37 agents, 23 commands)
|
|
44
|
+
aiwg use all # Deploy everything
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
## Features
|
|
48
|
+
|
|
49
|
+
### SDLC Complete Framework
|
|
50
|
+
|
|
51
|
+
**Manage projects like an enterprise. Scale like a startup.**
|
|
52
|
+
|
|
53
|
+
- 53 SDLC agents โ Requirements, architecture, testing, security, deployment
|
|
54
|
+
- 48 workflow commands โ Intake, phase gates, risk management, compliance
|
|
55
|
+
- 156 templates โ Every artifact from concept to production
|
|
56
|
+
- Multi-agent orchestration โ Parallel reviews, synthesis, automated quality gates
|
|
57
|
+
|
|
58
|
+
### Media/Marketing Kit (MMK)
|
|
59
|
+
|
|
60
|
+
**Run campaigns like an agency. Ship content faster.**
|
|
61
|
+
|
|
62
|
+
- 37 marketing agents โ Strategy, content, creative, analytics, compliance
|
|
63
|
+
- 23 workflow commands โ Campaign kickoff, content planning, brand review
|
|
64
|
+
- 88 templates โ 15 categories from intake to analytics
|
|
65
|
+
- 5-phase lifecycle โ Strategy โ Creation โ Review โ Publication โ Analysis
|
|
66
|
+
|
|
67
|
+
### Writing Quality Addon
|
|
68
|
+
|
|
69
|
+
**Control your voice. Write naturally.**
|
|
70
|
+
|
|
71
|
+
- Voice Framework โ 4 built-in voice profiles (technical, friendly, executive, casual)
|
|
72
|
+
- 4 voice skills โ Apply, create, blend, analyze voices
|
|
73
|
+
- 3 specialized agents โ Validate, optimize, diversify content
|
|
74
|
+
|
|
75
|
+
## Platform Support
|
|
76
|
+
|
|
77
|
+
| Platform | Status | Notes |
|
|
78
|
+
|----------|--------|-------|
|
|
79
|
+
| **Claude Code** | โ
Tested | Multi-agent orchestration |
|
|
80
|
+
| **Warp Terminal** | โ
Tested | Terminal-native workflows |
|
|
81
|
+
| **Factory AI** | โ
Tested | Native droid format |
|
|
82
|
+
| **OpenAI/Codex** | ๐ก Experimental | Functional |
|
|
83
|
+
| **Cursor** | ๐ก Experimental | Claude-compatible |
|
|
84
|
+
|
|
85
|
+
## Documentation
|
|
86
|
+
|
|
87
|
+
- [**Quick Start Guide**](https://github.com/jmagly/ai-writing-guide/blob/main/USAGE_GUIDE.md)
|
|
88
|
+
- [**SDLC Framework**](https://github.com/jmagly/ai-writing-guide/tree/main/agentic/code/frameworks/sdlc-complete)
|
|
89
|
+
- [**Marketing Framework**](https://github.com/jmagly/ai-writing-guide/tree/main/agentic/code/frameworks/media-marketing-kit)
|
|
90
|
+
- [**Voice Framework**](https://github.com/jmagly/ai-writing-guide/tree/main/agentic/code/addons/voice-framework)
|
|
91
|
+
- [**CLI Reference**](https://github.com/jmagly/ai-writing-guide/blob/main/docs/CLI_USAGE.md)
|
|
92
|
+
|
|
93
|
+
## Community
|
|
94
|
+
|
|
95
|
+
- **Discord**: [Join Server](https://discord.gg/BuAusFMxdA)
|
|
96
|
+
- **Telegram**: [Join Group](https://t.me/+oJg9w2lE6A5lOGFh)
|
|
97
|
+
- **GitHub**: [Repository](https://github.com/jmagly/ai-writing-guide)
|
|
98
|
+
- **Issues**: [Report Bugs](https://github.com/jmagly/ai-writing-guide/issues)
|
|
99
|
+
|
|
100
|
+
## License
|
|
101
|
+
|
|
102
|
+
MIT License - Free to use, modify, and distribute.
|
|
103
|
+
|
|
104
|
+
---
|
|
105
|
+
|
|
106
|
+
**Full README and source code**: [github.com/jmagly/ai-writing-guide](https://github.com/jmagly/ai-writing-guide)
|
package/docs/quickstart.md
CHANGED
|
@@ -168,3 +168,11 @@ aiwg use writing # Add voice profiles to SDLC project
|
|
|
168
168
|
1. Pick your framework: [SDLC](quickstart-sdlc.md) or [MMK](quickstart-mmk.md)
|
|
169
169
|
2. Pick your platform: [Claude Code](integrations/claude-code-quickstart.md), [Factory](integrations/factory-quickstart.md), or [Warp](integrations/warp-terminal-quickstart.md)
|
|
170
170
|
3. Start with intake - the framework guides you from there
|
|
171
|
+
|
|
172
|
+
## References
|
|
173
|
+
|
|
174
|
+
- @docs/CLI_USAGE.md - Full CLI command reference
|
|
175
|
+
- @agentic/code/frameworks/sdlc-complete/README.md - SDLC Framework details
|
|
176
|
+
- @agentic/code/frameworks/media-marketing-kit/README.md - Marketing Framework details
|
|
177
|
+
- @agentic/code/addons/voice-framework/README.md - Voice Framework addon
|
|
178
|
+
- @.aiwg/architecture/software-architecture-doc.md - System architecture
|