aiwg 2024.12.0 → 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 +87 -937
- package/README.md +99 -65
- package/agentic/code/addons/aiwg-evals/README.md +284 -0
- package/agentic/code/addons/aiwg-evals/commands/eval-agent.md +137 -0
- package/agentic/code/addons/aiwg-evals/manifest.json +42 -0
- package/agentic/code/addons/aiwg-evals/scenarios/distractor-test.yaml +117 -0
- package/agentic/code/addons/aiwg-evals/scenarios/grounding-test.yaml +92 -0
- package/agentic/code/addons/aiwg-evals/scenarios/recovery-test.yaml +118 -0
- package/agentic/code/addons/aiwg-hooks/README.md +142 -0
- package/agentic/code/addons/aiwg-hooks/hooks/aiwg-permissions.js +170 -0
- package/agentic/code/addons/aiwg-hooks/hooks/aiwg-session.js +236 -0
- package/agentic/code/addons/aiwg-hooks/hooks/aiwg-trace.js +154 -0
- package/agentic/code/addons/aiwg-hooks/manifest.json +38 -0
- package/agentic/code/addons/aiwg-hooks/scripts/trace-viewer.mjs +234 -0
- package/agentic/code/addons/aiwg-utils/README.md +157 -2
- package/agentic/code/addons/aiwg-utils/agents/aiwg-developer.md +207 -0
- package/agentic/code/addons/aiwg-utils/agents/consortium-coordinator.md +150 -0
- package/agentic/code/addons/aiwg-utils/agents/self-debug.md +232 -0
- package/agentic/code/addons/aiwg-utils/commands/commit-and-push.md +566 -0
- package/agentic/code/addons/aiwg-utils/commands/deploy-gen.md +165 -0
- package/agentic/code/addons/aiwg-utils/commands/devkit-create-addon.md +84 -0
- package/agentic/code/addons/aiwg-utils/commands/devkit-create-agent.md +168 -0
- package/agentic/code/addons/aiwg-utils/commands/devkit-create-command.md +131 -0
- package/agentic/code/addons/aiwg-utils/commands/devkit-create-extension.md +106 -0
- package/agentic/code/addons/aiwg-utils/commands/devkit-create-framework.md +145 -0
- package/agentic/code/addons/aiwg-utils/commands/devkit-create-skill.md +207 -0
- package/agentic/code/addons/aiwg-utils/commands/devkit-test.md +191 -0
- package/agentic/code/addons/aiwg-utils/commands/devkit-validate.md +153 -0
- package/agentic/code/addons/aiwg-utils/commands/mention-conventions.md +161 -0
- package/agentic/code/addons/aiwg-utils/commands/mention-lint.md +118 -0
- package/agentic/code/addons/aiwg-utils/commands/mention-report.md +115 -0
- package/agentic/code/addons/aiwg-utils/commands/mention-validate.md +75 -0
- package/agentic/code/addons/aiwg-utils/commands/mention-wire.md +135 -0
- package/agentic/code/addons/aiwg-utils/commands/parallel-dispatch.md +224 -0
- package/agentic/code/addons/aiwg-utils/commands/roko-voice.md +400 -0
- package/agentic/code/addons/aiwg-utils/commands/summarize-transcript.md +313 -0
- package/agentic/code/addons/aiwg-utils/commands/workspace-prune-working.md +360 -0
- package/agentic/code/addons/aiwg-utils/commands/workspace-realign.md +393 -0
- package/agentic/code/addons/aiwg-utils/commands/workspace-reset.md +338 -0
- package/agentic/code/addons/aiwg-utils/manifest.json +54 -6
- package/agentic/code/addons/aiwg-utils/prompts/README.md +85 -0
- package/agentic/code/addons/aiwg-utils/prompts/agents/design-rules.md +107 -0
- package/agentic/code/addons/aiwg-utils/prompts/core/consortium-pattern.md +284 -0
- package/agentic/code/addons/aiwg-utils/prompts/core/multi-agent-pattern.md +134 -0
- package/agentic/code/addons/aiwg-utils/prompts/core/orchestrator.md +151 -0
- package/agentic/code/addons/aiwg-utils/prompts/reliability/decomposition.md +237 -0
- package/agentic/code/addons/aiwg-utils/prompts/reliability/parallel-hints.md +221 -0
- package/agentic/code/addons/aiwg-utils/prompts/reliability/resilience.md +257 -0
- package/agentic/code/addons/aiwg-utils/skills/manifest.json +10 -0
- package/agentic/code/addons/aiwg-utils/skills/workspace-health/SKILL.md +148 -0
- package/agentic/code/addons/aiwg-utils/templates/devkit/addon-manifest.json +18 -0
- package/agentic/code/addons/aiwg-utils/templates/devkit/extension-manifest.json +15 -0
- package/agentic/code/addons/aiwg-utils/templates/devkit/framework-manifest.json +20 -0
- package/agentic/code/addons/context-curator/README.md +165 -0
- package/agentic/code/addons/context-curator/agents/context-curator.md +180 -0
- package/agentic/code/addons/context-curator/manifest.json +20 -0
- package/agentic/code/addons/context-curator/prompts/context-classification.md +82 -0
- package/agentic/code/addons/context-curator/prompts/scope-enforcement.md +107 -0
- package/agentic/code/addons/context-curator/rules/distractor-filter.md +71 -0
- package/agentic/code/addons/context-curator/rules/scoped-reasoning.md +102 -0
- package/agentic/code/addons/doc-intelligence/EVALUATION.md +243 -0
- package/agentic/code/addons/doc-intelligence/addon.json +37 -0
- package/agentic/code/addons/doc-intelligence/agents/doc-analyst.md +197 -0
- package/agentic/code/addons/doc-intelligence/skills/doc-scraper/SKILL.md +225 -0
- package/agentic/code/addons/doc-intelligence/skills/doc-splitter/SKILL.md +289 -0
- package/agentic/code/addons/doc-intelligence/skills/llms-txt-support/SKILL.md +239 -0
- package/agentic/code/addons/doc-intelligence/skills/pdf-extractor/SKILL.md +226 -0
- package/agentic/code/addons/doc-intelligence/skills/source-unifier/SKILL.md +257 -0
- package/agentic/code/addons/skill-factory/EVALUATION.md +255 -0
- package/agentic/code/addons/skill-factory/addon.json +36 -0
- package/agentic/code/addons/skill-factory/agents/skill-architect.md +213 -0
- package/agentic/code/addons/skill-factory/skills/quality-checker/SKILL.md +299 -0
- package/agentic/code/addons/skill-factory/skills/skill-builder/SKILL.md +257 -0
- package/agentic/code/addons/skill-factory/skills/skill-enhancer/SKILL.md +251 -0
- package/agentic/code/addons/skill-factory/skills/skill-packager/SKILL.md +261 -0
- package/agentic/code/agents/personas/aiwg-orchestrator.md +96 -0
- package/agentic/code/agents/personas/aiwg-reviewer.md +98 -0
- package/agentic/code/agents/personas/aiwg-security.md +118 -0
- package/agentic/code/agents/personas/aiwg-writer.md +129 -0
- package/agentic/code/config/registry.json +262 -0
- package/agentic/code/extensions/api-adapter/README.md +263 -0
- package/agentic/code/extensions/api-adapter/openapi.yaml +223 -0
- 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/extensions/EVALUATION.md +315 -0
- package/agentic/code/frameworks/sdlc-complete/extensions/github/agents/github-integration-lead.md +187 -0
- package/agentic/code/frameworks/sdlc-complete/extensions/github/extension.json +38 -0
- package/agentic/code/frameworks/sdlc-complete/extensions/github/skills/pr-reviewer/SKILL.md +201 -0
- package/agentic/code/frameworks/sdlc-complete/extensions/github/skills/repo-analyzer/SKILL.md +192 -0
- package/agentic/code/frameworks/sdlc-complete/extensions/javascript/agents/js-quality-lead.md +178 -0
- package/agentic/code/frameworks/sdlc-complete/extensions/javascript/extension.json +33 -0
- package/agentic/code/frameworks/sdlc-complete/extensions/javascript/skills/eslint-checker/SKILL.md +185 -0
- package/agentic/code/frameworks/sdlc-complete/extensions/javascript/skills/vitest-runner/SKILL.md +174 -0
- package/agentic/code/frameworks/sdlc-complete/extensions/python/agents/python-quality-lead.md +179 -0
- package/agentic/code/frameworks/sdlc-complete/extensions/python/extension.json +34 -0
- package/agentic/code/frameworks/sdlc-complete/extensions/python/skills/pytest-runner/SKILL.md +176 -0
- package/agentic/code/frameworks/sdlc-complete/extensions/python/skills/venv-manager/SKILL.md +161 -0
- package/agentic/code/frameworks/sdlc-complete/templates/flow-patterns/post-completion-template.md +74 -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/AGENT-DESIGN.md +525 -0
- package/docs/CLI_USAGE.md +299 -45
- package/docs/_config.yml +5 -0
- package/docs/commands/DEVELOPMENT_GUIDE.md +701 -0
- package/docs/commands/README.md +73 -0
- package/docs/commands/examples/README.md +7 -0
- package/docs/commands/examples/development-commands.md +724 -0
- package/docs/commands/examples/manifest.json +13 -0
- package/docs/commands/examples/manifest.md +9 -0
- package/docs/commands/subagents-README.md +7 -0
- package/docs/commands/subagents-and-commands-guide.md +515 -0
- package/docs/development/addon-creation-guide.md +262 -0
- package/docs/development/devkit-overview.md +208 -0
- package/docs/development/extension-creation-guide.md +308 -0
- package/docs/development/framework-creation-guide.md +368 -0
- package/docs/development/walkthrough-create-addon.md +274 -0
- package/docs/index.md +106 -0
- package/docs/integrations/factory-quickstart.md +140 -0
- package/docs/production-grade-guide.md +443 -0
- package/docs/quickstart.md +8 -0
- package/docs/reference/ORCHESTRATOR_GUIDE.md +247 -0
- package/docs/references/README.md +43 -0
- package/docs/references/REF-001-production-grade-agentic-workflows.md +479 -0
- package/docs/references/REF-002-llm-failure-modes-agentic.md +175 -0
- package/docs/references/REF-003-mcp-specification-2025.md +415 -0
- package/package.json +29 -14
- package/src/agents/agent-deployer.ts +8 -0
- package/src/cli/index.mjs +30 -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/cli.mjs +270 -0
- package/src/mcp/index.mjs +11 -0
- package/src/mcp/server.mjs +1013 -0
- package/src/mcp/test-simple.mjs +413 -0
- 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/agents/deploy-agents.mjs +166 -16
- package/tools/agents/deploy-skills.mjs +457 -0
- package/tools/cli/demo.mjs +204 -0
- package/tools/cli/doctor.mjs +155 -0
- package/tools/cli/workspace-reset.mjs +376 -0
- package/tools/cli/workspace-wipe-working.mjs +172 -0
- package/tools/commands/add-interactive-guidance.mjs +158 -0
- package/tools/commands/add-post-completion.mjs +127 -0
- package/tools/contrib/start-contribution.mjs +2 -2
- package/tools/install/install.sh +41 -1
- package/tools/install/new-project.mjs +9 -9
- package/tools/linters/agent-linter.mjs +594 -0
- package/tools/mentions/mention-lint.mjs +443 -0
- package/tools/scaffolding/add-agent.mjs +443 -0
- package/tools/scaffolding/add-command.mjs +453 -0
- package/tools/scaffolding/add-skill.mjs +267 -0
- package/tools/scaffolding/add-template.mjs +437 -0
- package/tools/scaffolding/scaffold-addon.mjs +237 -0
- package/tools/scaffolding/scaffold-extension.mjs +286 -0
- package/tools/scaffolding/scaffold-framework.mjs +580 -0
- package/tools/scaffolding/utils.mjs +367 -0
- package/tools/scaffolding/validate.mjs +527 -0
- package/agentic/code/addons/voice-framework/skills/voice-apply/scripts/__pycache__/voice_loader.cpython-312.pyc +0 -0
package/CLAUDE.md
CHANGED
|
@@ -1,987 +1,137 @@
|
|
|
1
|
-
#
|
|
1
|
+
# AI Writing Guide
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Framework for improving AI-generated content quality with voice profiles, validation tools, and specialized agents.
|
|
4
4
|
|
|
5
|
-
##
|
|
6
|
-
|
|
7
|
-
The AI Writing Guide is a comprehensive framework for improving AI-generated content quality. It provides voice profiles,
|
|
8
|
-
validation tools, and specialized agents to ensure AI outputs maintain authentic, professional writing
|
|
9
|
-
standards with consistent voice control.
|
|
10
|
-
|
|
11
|
-
## Multi-Platform Support
|
|
12
|
-
|
|
13
|
-
This repository supports multiple AI platforms with platform-specific deployment formats:
|
|
14
|
-
|
|
15
|
-
- **Claude Code** (`.claude/agents/*.md`, `.claude/commands/*.md`) - Multi-agent orchestration
|
|
16
|
-
- **Warp Terminal** (`WARP.md` symlinked to `CLAUDE.md`) - Terminal-native workflows
|
|
17
|
-
- **Factory AI** (`.factory/droids/*.md`, `.factory/commands/*.md`, `AGENTS.md`) - Custom droid format
|
|
18
|
-
- **OpenAI/Codex** (`.codex/agents/*.md` or `AGENTS.md`) - Experimental support
|
|
19
|
-
|
|
20
|
-
All platforms share the same agent logic and SDLC framework; only the deployment format differs.
|
|
21
|
-
|
|
22
|
-
## Critical Usage Instructions
|
|
23
|
-
|
|
24
|
-
### Context Selection Strategy
|
|
25
|
-
|
|
26
|
-
**IMPORTANT**: Do not include all documents from this repository in your context. The USAGE_GUIDE.md provides targeted
|
|
27
|
-
document combinations for specific needs.
|
|
28
|
-
|
|
29
|
-
**Always include**: `CLAUDE.md` (this file)
|
|
30
|
-
|
|
31
|
-
**Add situationally based on task**:
|
|
32
|
-
|
|
33
|
-
- For consistent voice: Voice Framework profiles (`technical-authority`, `friendly-explainer`, `executive-brief`, `casual-conversational`)
|
|
34
|
-
- For maintaining authority: `core/sophistication-guide.md`
|
|
35
|
-
- For technical writing: `examples/technical-writing.md`
|
|
36
|
-
- For quick validation: `context/quick-reference.md`
|
|
37
|
-
|
|
38
|
-
## High-Level Architecture
|
|
39
|
-
|
|
40
|
-
### Document Framework Structure
|
|
41
|
-
|
|
42
|
-
1. **Core Philosophy (`core/`)**: Fundamental writing principles that guide all content generation. These establish the
|
|
43
|
-
balance between voice consistency and maintaining sophisticated, authoritative writing.
|
|
44
|
-
|
|
45
|
-
2. **Voice Framework (`agentic/code/addons/voice-framework/`)**: Voice profiles that define consistent writing characteristics.
|
|
46
|
-
Replaces pattern-avoidance with positive voice definition.
|
|
47
|
-
|
|
48
|
-
3. **Context Documents (`context/`)**: Optimized, condensed versions of guidelines for efficient agent context usage.
|
|
49
|
-
These provide quick-reference materials without overwhelming the context window.
|
|
50
|
-
|
|
51
|
-
4. **Examples (`examples/`)**: Before/after demonstrations showing transformation to authentic
|
|
52
|
-
human voice while preserving technical depth.
|
|
53
|
-
|
|
54
|
-
5. **Agent Definitions (`.claude/agents/`)**: Pre-configured Claude Code subagents specialized for different aspects of
|
|
55
|
-
writing improvement and validation.
|
|
56
|
-
|
|
57
|
-
### Agent Ecosystem
|
|
58
|
-
|
|
59
|
-
The repository includes two categories of specialized agents:
|
|
60
|
-
|
|
61
|
-
**General-Purpose Writing Agents** (`/agents/`):
|
|
62
|
-
- **writing-validator**: Validates content for voice consistency and authenticity
|
|
63
|
-
- **prompt-optimizer**: Enhances prompts using AI Writing Guide principles
|
|
64
|
-
- **content-diversifier**: Generates varied examples and perspectives
|
|
65
|
-
|
|
66
|
-
**SDLC Framework Agents** (`/agentic/code/frameworks/sdlc-complete/agents/`):
|
|
67
|
-
- 53 specialized agents covering all SDLC phases (Inception → Transition)
|
|
68
|
-
- Including: code-reviewer, test-engineer, requirements-analyst, devops-engineer, architecture-designer, security-gatekeeper, incident-responder, and many more
|
|
69
|
-
- See `/agentic/code/frameworks/sdlc-complete/README.md` for complete list
|
|
70
|
-
|
|
71
|
-
**Media/Marketing Kit Agents** (`/agentic/code/frameworks/media-marketing-kit/agents/`):
|
|
72
|
-
- 37 marketing-focused agents covering campaign lifecycle (Strategy → Analysis)
|
|
73
|
-
- Including: campaign-strategist, copywriter, brand-guardian, seo-specialist, analytics, and more
|
|
74
|
-
- See `/agentic/code/frameworks/media-marketing-kit/README.md` for complete list
|
|
75
|
-
|
|
76
|
-
Agents can be deployed via:
|
|
77
|
-
- **Claude Code**: `aiwg -deploy-agents --mode general|sdlc|both`
|
|
78
|
-
- **Warp Terminal**: `aiwg -deploy-agents --platform warp --mode sdlc`
|
|
79
|
-
- **Factory AI**: `aiwg -deploy-agents --provider factory --mode sdlc --deploy-commands`
|
|
80
|
-
|
|
81
|
-
All agents work independently with isolated contexts regardless of platform.
|
|
82
|
-
|
|
83
|
-
## Common Development Tasks
|
|
84
|
-
|
|
85
|
-
### Using the Writing Guide
|
|
5
|
+
## Quick Start
|
|
86
6
|
|
|
87
7
|
```bash
|
|
88
8
|
# Validate content for voice consistency
|
|
89
9
|
/writing-validator "path/to/content.md"
|
|
90
10
|
|
|
91
|
-
#
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
/content-diversifier "base concept or topic"
|
|
96
|
-
```
|
|
97
|
-
|
|
98
|
-
### Working with Agents
|
|
99
|
-
|
|
100
|
-
```bash
|
|
101
|
-
# Launch multiple agents in parallel for comprehensive work:
|
|
102
|
-
# 1. Use Task tool with multiple invocations in single message
|
|
103
|
-
# 2. Each agent operates independently
|
|
104
|
-
# 3. Results returned upon completion
|
|
105
|
-
|
|
106
|
-
# For complex multi-step tasks, use general-purpose agent
|
|
107
|
-
# For specific validations, use specialized agents
|
|
108
|
-
```
|
|
109
|
-
|
|
110
|
-
### Key Commands
|
|
111
|
-
|
|
112
|
-
```bash
|
|
113
|
-
# Review available agents
|
|
114
|
-
ls .claude/agents/
|
|
115
|
-
|
|
116
|
-
# Check agent configurations
|
|
117
|
-
cat .claude/agents/[agent-name].md
|
|
118
|
-
|
|
119
|
-
# View usage guide for context selection
|
|
120
|
-
cat USAGE_GUIDE.md
|
|
121
|
-
```
|
|
122
|
-
|
|
123
|
-
## Writing Guide Principles
|
|
124
|
-
|
|
125
|
-
When generating or reviewing content:
|
|
126
|
-
|
|
127
|
-
1. **Apply appropriate voice**: Use Voice Framework profiles to match audience and context
|
|
128
|
-
2. **Maintain sophistication**: Don't dumb down technical content - preserve domain-appropriate vocabulary
|
|
129
|
-
3. **Include authenticity markers**: Add opinions, acknowledge trade-offs, reference real-world constraints
|
|
130
|
-
4. **Vary structure**: Mix sentence lengths, paragraph structures, and transition styles
|
|
131
|
-
5. **Be specific**: Replace vague claims with exact metrics and concrete examples
|
|
132
|
-
|
|
133
|
-
## Voice Framework
|
|
134
|
-
|
|
135
|
-
The Voice Framework addon provides voice profiles for consistent, authentic writing:
|
|
136
|
-
|
|
137
|
-
### Built-in Voice Profiles
|
|
138
|
-
|
|
139
|
-
Located in `agentic/code/addons/voice-framework/voices/templates/`:
|
|
140
|
-
|
|
141
|
-
- `technical-authority` - Direct, precise, confident (docs, architecture)
|
|
142
|
-
- `friendly-explainer` - Approachable, encouraging (tutorials, onboarding)
|
|
143
|
-
- `executive-brief` - Concise, outcome-focused (business cases)
|
|
144
|
-
- `casual-conversational` - Relaxed, personal (blogs, newsletters)
|
|
145
|
-
|
|
146
|
-
### Voice Profile Locations (Priority Order)
|
|
147
|
-
|
|
148
|
-
1. Project: `.aiwg/voices/` (project-specific)
|
|
149
|
-
2. User: `~/.config/aiwg/voices/` (user-wide)
|
|
150
|
-
3. Built-in: `voice-framework/voices/templates/` (AIWG defaults)
|
|
151
|
-
|
|
152
|
-
### Voice Skills
|
|
153
|
-
|
|
154
|
-
- `voice-apply` - Apply voice profile to content
|
|
155
|
-
- `voice-create` - Generate new voice profile from description
|
|
156
|
-
- `voice-blend` - Combine multiple profiles (e.g., 70% technical + 30% casual)
|
|
157
|
-
- `voice-analyze` - Analyze content's current voice characteristics
|
|
158
|
-
|
|
159
|
-
### Usage Examples
|
|
160
|
-
|
|
161
|
-
Natural language (skills auto-trigger):
|
|
162
|
-
|
|
163
|
-
- "Write this in technical-authority voice"
|
|
164
|
-
- "Make it more casual"
|
|
165
|
-
- "Create a voice for API docs - precise, no-nonsense"
|
|
166
|
-
- "Blend 70% technical with 30% friendly"
|
|
167
|
-
|
|
168
|
-
## Important Notes
|
|
169
|
-
|
|
170
|
-
### Content Generation
|
|
171
|
-
|
|
172
|
-
- The goal is removing performative language, not simplifying content
|
|
173
|
-
- Maintain the sophistication level appropriate to the audience and domain
|
|
174
|
-
- Academic, executive, and technical content require different voice calibrations
|
|
175
|
-
|
|
176
|
-
### Agent Usage
|
|
177
|
-
|
|
178
|
-
- Agents are stateless - provide complete context in prompts
|
|
179
|
-
- Parallel execution is preferred for independent tasks
|
|
180
|
-
- Use specialized agents for their defined purposes, not general tasks
|
|
181
|
-
|
|
182
|
-
### Context Optimization
|
|
183
|
-
|
|
184
|
-
- Start with minimal context (just CLAUDE.md)
|
|
185
|
-
- Add documents only when specific problems emerge
|
|
186
|
-
- Different writing contexts need different guideline combinations
|
|
187
|
-
|
|
188
|
-
## Configuration
|
|
189
|
-
|
|
190
|
-
The repository includes:
|
|
191
|
-
|
|
192
|
-
- `.claude/settings.local.json`: Permissions and tool access configuration
|
|
193
|
-
- `.claude/agents/`: Specialized agent definitions
|
|
194
|
-
- No build commands or test suites (documentation/guideline repository)
|
|
195
|
-
|
|
196
|
-
## Manifest System
|
|
197
|
-
|
|
198
|
-
The repository uses a manifest-based documentation structure:
|
|
199
|
-
|
|
200
|
-
- **Purpose**: Each directory contains `manifest.json` tracking files and metadata
|
|
201
|
-
- **Auto-generation**: `node tools/manifest/generate-manifest.mjs <dir> [--write-md]`
|
|
202
|
-
- **Enrichment**: `node tools/manifest/enrich-manifests.mjs --target . [--write]`
|
|
203
|
-
- **Sync check**: `node tools/manifest/sync-manifests.mjs --target . --fix --write-md`
|
|
204
|
-
|
|
205
|
-
When adding new files to documented directories, update manifests to maintain consistency.
|
|
206
|
-
|
|
207
|
-
## Markdown Linting
|
|
208
|
-
|
|
209
|
-
The repository enforces strict markdown formatting via custom fixers:
|
|
210
|
-
|
|
211
|
-
```bash
|
|
212
|
-
# Fix table spacing (MD058)
|
|
213
|
-
node tools/lint/fix-md58.mjs --target . --write
|
|
214
|
-
|
|
215
|
-
# Fix code fences (MD031/MD040)
|
|
216
|
-
node tools/lint/fix-md-codefences.mjs --target . --write
|
|
217
|
-
|
|
218
|
-
# Fix heading/list spacing (MD022/MD032)
|
|
219
|
-
node tools/lint/fix-md-heading-lists.mjs --target . --write
|
|
220
|
-
|
|
221
|
-
# Fix multiple blank lines (MD012)
|
|
222
|
-
node tools/lint/fix-md12.mjs --target . --write
|
|
223
|
-
|
|
224
|
-
# Fix list indentation (MD005/MD007)
|
|
225
|
-
node tools/lint/fix-md5-7-lists.mjs --target . --write
|
|
226
|
-
|
|
227
|
-
# Fix heading punctuation (MD026)
|
|
228
|
-
node tools/lint/fix-md26-headpunct.mjs --target . --write
|
|
229
|
-
|
|
230
|
-
# Fix first-line H1 (MD041)
|
|
231
|
-
node tools/lint/fix-md41-firsth1.mjs --target . --write
|
|
232
|
-
|
|
233
|
-
# Fix final newline (MD047)
|
|
234
|
-
node tools/lint/fix-md47-finalnewline.mjs --target . --write
|
|
235
|
-
|
|
236
|
-
# Fix code span spacing (MD038)
|
|
237
|
-
node tools/lint/fix-md38-codespace.mjs --target . --write
|
|
238
|
-
|
|
239
|
-
# Run all lint checks (CI drift check)
|
|
240
|
-
npm exec markdownlint-cli2 "**/*.md"
|
|
241
|
-
```
|
|
242
|
-
|
|
243
|
-
The `.github/workflows/lint-fixcheck.yml` workflow enforces these on all PRs.
|
|
244
|
-
|
|
245
|
-
## Installation & CLI
|
|
246
|
-
|
|
247
|
-
### One-Line Install
|
|
248
|
-
|
|
249
|
-
```bash
|
|
250
|
-
curl -fsSL https://raw.githubusercontent.com/jmagly/ai-writing-guide/refs/heads/main/tools/install/install.sh | bash
|
|
251
|
-
```
|
|
252
|
-
|
|
253
|
-
This installs to `~/.local/share/ai-writing-guide` and registers the `aiwg` CLI.
|
|
254
|
-
|
|
255
|
-
### Available Commands
|
|
256
|
-
|
|
257
|
-
```bash
|
|
258
|
-
# Show current installed version
|
|
259
|
-
aiwg -version
|
|
260
|
-
|
|
261
|
-
# Manually update aiwg installation (graceful)
|
|
262
|
-
aiwg -update
|
|
263
|
-
|
|
264
|
-
# Force fresh reinstall (removes and reclones)
|
|
265
|
-
aiwg -reinstall
|
|
266
|
-
|
|
267
|
-
# Deploy agents to current project
|
|
268
|
-
aiwg -deploy-agents [--mode general|sdlc|both] [--provider claude|openai] [--dry-run] [--force]
|
|
269
|
-
|
|
270
|
-
# Deploy commands to current project
|
|
271
|
-
aiwg -deploy-commands [--mode general|sdlc|both] [--provider claude|openai]
|
|
272
|
-
|
|
273
|
-
# Scaffold new project with SDLC templates
|
|
274
|
-
aiwg -new [--no-agents] [--provider claude|openai]
|
|
275
|
-
|
|
276
|
-
# Prefill card metadata from team profile
|
|
277
|
-
aiwg -prefill-cards --target agentic/code/frameworks/sdlc-complete/artifacts/<project> --team team-profile.yaml [--write]
|
|
278
|
-
|
|
279
|
-
# Show help
|
|
280
|
-
aiwg -help
|
|
281
|
-
```
|
|
282
|
-
|
|
283
|
-
**Note**: aiwg automatically updates on every command invocation to ensure you're always using the latest version. If you encounter corruption or installation issues, use `aiwg -reinstall` to force a clean reinstall.
|
|
284
|
-
|
|
285
|
-
### Direct Tool Usage (Without Install)
|
|
286
|
-
|
|
287
|
-
```bash
|
|
288
|
-
# Deploy agents (supports --mode general|sdlc|both)
|
|
289
|
-
node tools/agents/deploy-agents.mjs --target /path/to/project --mode both
|
|
290
|
-
|
|
291
|
-
# Deploy commands
|
|
292
|
-
node tools/agents/deploy-agents.mjs --target /path/to/project --deploy-commands
|
|
293
|
-
|
|
294
|
-
# Generate new project scaffold
|
|
295
|
-
node tools/install/new-project.mjs --name my-project
|
|
296
|
-
|
|
297
|
-
# Prefill SDLC card ownership
|
|
298
|
-
node tools/cards/prefill-cards.mjs --target agentic/code/frameworks/sdlc-complete/artifacts/my-project --team team.yaml --write
|
|
299
|
-
```
|
|
300
|
-
|
|
301
|
-
## Multi-Provider Support
|
|
11
|
+
# SDLC workflows (use natural language)
|
|
12
|
+
"transition to elaboration"
|
|
13
|
+
"run security review"
|
|
14
|
+
"where are we?"
|
|
302
15
|
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
```bash
|
|
306
|
-
# Deploy for Claude Code (default - creates .claude/agents/)
|
|
16
|
+
# Agent deployment
|
|
307
17
|
aiwg -deploy-agents --mode sdlc
|
|
308
|
-
|
|
309
|
-
# Deploy for Factory AI (creates .factory/droids/ + AGENTS.md)
|
|
310
|
-
aiwg -deploy-agents --provider factory --mode sdlc --deploy-commands --create-agents-md
|
|
311
|
-
|
|
312
|
-
# Deploy for OpenAI/Codex (creates .codex/agents/)
|
|
313
|
-
aiwg -deploy-agents --provider openai
|
|
314
|
-
|
|
315
|
-
# Deploy as single AGENTS.md file (OpenAI/Factory preference)
|
|
316
|
-
aiwg -deploy-agents --provider openai --as-agents-md
|
|
317
|
-
|
|
318
|
-
# Override model selections (all providers)
|
|
319
|
-
# Note: Default models are defined in agentic/code/frameworks/sdlc-complete/config/models.json
|
|
320
|
-
aiwg -deploy-agents --provider factory \
|
|
321
|
-
--reasoning-model <your-reasoning-model> \
|
|
322
|
-
--coding-model <your-coding-model> \
|
|
323
|
-
--efficiency-model <your-efficiency-model>
|
|
324
|
-
```
|
|
325
|
-
|
|
326
|
-
**Platform-Specific Guidance:**
|
|
327
|
-
- **Factory AI**: `agentic/code/frameworks/sdlc-complete/agents/factory-compat.md`
|
|
328
|
-
- **OpenAI/Codex**: `agentic/code/frameworks/sdlc-complete/agents/openai-compat.md`
|
|
329
|
-
|
|
330
|
-
## SDLC Complete Framework (PLAN → ACT)
|
|
331
|
-
|
|
332
|
-
This repository includes a comprehensive software development lifecycle framework at `/agentic/code/frameworks/sdlc-complete/`:
|
|
333
|
-
|
|
334
|
-
### Core Components
|
|
335
|
-
|
|
336
|
-
- **Agents** (`agentic/code/frameworks/sdlc-complete/agents/`): 53 specialized SDLC role agents (intake-coordinator, security-gatekeeper, architecture-designer, etc.)
|
|
337
|
-
- **Commands** (`agentic/code/frameworks/sdlc-complete/commands/`): 48 SDLC commands for project management, security, traceability
|
|
338
|
-
- **Templates** (`agentic/code/frameworks/sdlc-complete/templates/`): Intake, requirements, architecture, test, security, deployment
|
|
339
|
-
- **Flows** (`agentic/code/frameworks/sdlc-complete/flows/`): Phase-based workflows (Inception → Elaboration → Construction → Transition)
|
|
340
|
-
- **Add-ons** (`agentic/code/frameworks/sdlc-complete/add-ons/`): GDPR compliance, legal frameworks
|
|
341
|
-
- **Artifacts** (`agentic/code/frameworks/sdlc-complete/artifacts/`): Sample projects demonstrating complete lifecycle
|
|
342
|
-
- **Metrics** (`agentic/code/frameworks/sdlc-complete/metrics/`): Tracking catalogs and health indicators
|
|
343
|
-
|
|
344
|
-
### Using SDLC Framework
|
|
345
|
-
|
|
346
|
-
**For New Projects**:
|
|
347
|
-
|
|
348
|
-
1. Scaffold new project: `aiwg -new` (copies intake templates, CLAUDE.md with orchestration prompts)
|
|
349
|
-
2. Deploy SDLC agents: `aiwg -deploy-agents --mode sdlc`
|
|
350
|
-
3. Deploy SDLC commands: `aiwg -deploy-commands --mode sdlc`
|
|
351
|
-
4. Fill intake forms: `/intake-wizard "your project description"`
|
|
352
|
-
5. Follow phase workflows: Reference `agentic/code/frameworks/sdlc-complete/plan-act-sdlc.md` for milestone guidance
|
|
353
|
-
|
|
354
|
-
**For Existing Projects**:
|
|
355
|
-
|
|
356
|
-
1. Update project CLAUDE.md: `/aiwg-setup-project` (preserves existing content, adds AIWG orchestration section)
|
|
357
|
-
2. Deploy SDLC agents: `aiwg -deploy-agents --mode sdlc`
|
|
358
|
-
3. Deploy SDLC commands: `aiwg -deploy-commands --mode sdlc`
|
|
359
|
-
4. Start intake: `/intake-wizard "your project description"` or `/intake-from-codebase .`
|
|
360
|
-
|
|
361
|
-
**Natural Language Orchestration**:
|
|
362
|
-
|
|
363
|
-
Both new and existing projects configured with AIWG support natural language workflow triggering:
|
|
364
|
-
|
|
365
|
-
- "Let's transition to Elaboration" → Orchestrates `flow-inception-to-elaboration`
|
|
366
|
-
- "Run security review" → Orchestrates `flow-security-review-cycle`
|
|
367
|
-
- "Where are we?" → Checks project status
|
|
368
|
-
- "Create architecture baseline" → Generates SAD + ADRs
|
|
369
|
-
|
|
370
|
-
See `agentic/code/frameworks/sdlc-complete/docs/simple-language-translations.md` for 70+ supported phrases.
|
|
371
|
-
|
|
372
|
-
See `agentic/code/frameworks/sdlc-complete/actors-and-templates.md` for role-to-template mappings.
|
|
373
|
-
|
|
374
|
-
### Intake Commands with Guidance
|
|
375
|
-
|
|
376
|
-
All three intake commands now support an optional `--guidance` parameter to provide additional context:
|
|
377
|
-
|
|
378
|
-
**intake-wizard** - Generate or complete intake forms with guidance:
|
|
379
|
-
```bash
|
|
380
|
-
/intake-wizard "Build customer portal" --guidance "B2B SaaS for healthcare, HIPAA compliance critical, 50k users"
|
|
381
|
-
/intake-wizard --complete --interactive --guidance "Focus on security first, SOC2 audit in 3 months"
|
|
382
|
-
```
|
|
383
|
-
|
|
384
|
-
**intake-from-codebase** - Analyze existing codebase with guidance:
|
|
385
|
-
```bash
|
|
386
|
-
/intake-from-codebase . --guidance "Focus on security posture and compliance gaps for SOC2 audit"
|
|
387
|
-
/intake-from-codebase . --interactive --guidance "Fintech app, PCI-DSS required, preparing for Series A fundraising"
|
|
388
|
-
```
|
|
389
|
-
|
|
390
|
-
**intake-start** - Kick off Inception with guidance:
|
|
391
|
-
```bash
|
|
392
|
-
/intake-start .aiwg/intake/ --guidance "Focus on security architecture first, compliance is critical path"
|
|
393
|
-
/intake-start .aiwg/intake/ --guidance "Team has limited DevOps experience, need extra infrastructure support"
|
|
394
|
-
```
|
|
395
|
-
|
|
396
|
-
The `--guidance` parameter accepts free-form text to:
|
|
397
|
-
- Prioritize specific areas (security, compliance, scale, performance)
|
|
398
|
-
- Provide business context (domain, strategic drivers, constraints)
|
|
399
|
-
- Clarify requirements (timeline pressure, budget limits, team skills)
|
|
400
|
-
- Highlight unknowns or risks (technical uncertainties, integration challenges)
|
|
401
|
-
- Influence profile selection, priority weights, and agent assignments
|
|
402
|
-
|
|
403
|
-
## .aiwg/ - SDLC Artifacts Directory
|
|
404
|
-
|
|
405
|
-
All SDLC artifacts (requirements, architecture, planning, testing, etc.) are stored in the **`.aiwg/`** directory by default. This keeps user-facing code in the project root separate from process artifacts.
|
|
406
|
-
|
|
407
|
-
### Directory Structure
|
|
408
|
-
|
|
409
|
-
```
|
|
410
|
-
.aiwg/
|
|
411
|
-
├── intake/ # Project intake forms (default output)
|
|
412
|
-
├── requirements/ # User stories, use cases, NFRs
|
|
413
|
-
├── architecture/ # SAD, ADRs, diagrams, API contracts
|
|
414
|
-
├── planning/ # Phase and iteration plans
|
|
415
|
-
├── risks/ # Risk register and spikes
|
|
416
|
-
├── testing/ # Test strategy, plans, results
|
|
417
|
-
├── security/ # Threat models and security artifacts
|
|
418
|
-
├── quality/ # Code reviews, retrospectives, metrics
|
|
419
|
-
├── deployment/ # Deployment plans and runbooks
|
|
420
|
-
├── handoffs/ # Phase transition checklists
|
|
421
|
-
├── gates/ # Quality gate reports
|
|
422
|
-
├── decisions/ # Change requests, CCB meetings
|
|
423
|
-
├── team/ # Team profile and coordination
|
|
424
|
-
├── working/ # Temporary/scratch (safe to delete)
|
|
425
|
-
└── reports/ # Generated reports and indices
|
|
426
|
-
```
|
|
427
|
-
|
|
428
|
-
### Benefits
|
|
429
|
-
|
|
430
|
-
- **Clean separation**: User code stays in root, process artifacts in `.aiwg/`
|
|
431
|
-
- **Easy to ignore**: Single `.gitignore` entry ignores all SDLC artifacts
|
|
432
|
-
- **Optional sharing**: Teams choose to commit (full audit trail) or ignore (local use)
|
|
433
|
-
- **Discoverable**: Centralized location for all planning documents
|
|
434
|
-
- **Tooling-friendly**: Consistent paths for all SDLC commands
|
|
435
|
-
|
|
436
|
-
### Recommended .gitignore Strategy
|
|
437
|
-
|
|
438
|
-
**Option 1: Commit Everything** (Teams & Enterprise)
|
|
439
|
-
- Full audit trail for compliance
|
|
440
|
-
- Shared context for team coordination
|
|
441
|
-
- No .gitignore entries for `.aiwg/`
|
|
442
|
-
|
|
443
|
-
**Option 2: Commit Planning Only** (Balanced)
|
|
444
|
-
```gitignore
|
|
445
|
-
.aiwg/working/ # Ignore temporary files
|
|
446
|
-
.aiwg/reports/ # Ignore generated reports
|
|
447
18
|
```
|
|
448
19
|
|
|
449
|
-
|
|
450
|
-
```gitignore
|
|
451
|
-
.aiwg/ # Ignore all SDLC artifacts
|
|
452
|
-
!.aiwg/intake/ # Keep intake forms for context
|
|
453
|
-
!.aiwg/README.md
|
|
454
|
-
```
|
|
455
|
-
|
|
456
|
-
### Default Output Paths
|
|
457
|
-
|
|
458
|
-
| Command | Default Output |
|
|
459
|
-
|---------|---------------|
|
|
460
|
-
| intake-wizard | `.aiwg/intake/` |
|
|
461
|
-
| intake-from-codebase | `.aiwg/intake/` |
|
|
462
|
-
| flow-risk-management-cycle | `.aiwg/risks/` |
|
|
463
|
-
| flow-architecture-evolution | `.aiwg/architecture/` |
|
|
464
|
-
| flow-test-strategy-execution | `.aiwg/testing/` |
|
|
465
|
-
| flow-security-review-cycle | `.aiwg/security/` |
|
|
466
|
-
| flow-gate-check | `.aiwg/gates/` |
|
|
467
|
-
| flow-handoff-checklist | `.aiwg/handoffs/` |
|
|
468
|
-
| flow-change-control | `.aiwg/decisions/` |
|
|
469
|
-
| build-artifact-index | `.aiwg/reports/` |
|
|
470
|
-
| check-traceability | `.aiwg/reports/` |
|
|
471
|
-
| project-health-check | `.aiwg/reports/` |
|
|
472
|
-
|
|
473
|
-
All commands support custom output paths via arguments.
|
|
474
|
-
|
|
475
|
-
### Migration from intake/
|
|
476
|
-
|
|
477
|
-
If you have existing `intake/` artifacts:
|
|
478
|
-
```bash
|
|
479
|
-
mkdir -p .aiwg/intake
|
|
480
|
-
mv intake/* .aiwg/intake/
|
|
481
|
-
rmdir intake
|
|
482
|
-
```
|
|
483
|
-
|
|
484
|
-
Or specify custom path: `/intake-wizard --complete intake/`
|
|
485
|
-
|
|
486
|
-
## Important File References
|
|
487
|
-
|
|
488
|
-
When contributing or troubleshooting:
|
|
489
|
-
|
|
490
|
-
- **AGENTS.md**: Repository contribution guidelines and SDLC overview
|
|
491
|
-
- **USAGE_GUIDE.md**: Context selection strategy (critical for avoiding over-inclusion)
|
|
492
|
-
- **PROJECT_SUMMARY.md**: Expansion roadmap and value proposition
|
|
493
|
-
- **ROADMAP.md**: 12-month development plan
|
|
494
|
-
- **agentic/code/frameworks/sdlc-complete/README.md**: Complete SDLC framework documentation
|
|
495
|
-
- **agentic/code/frameworks/sdlc-complete/prompt-templates.md**: Copy-ready prompts for SDLC phases
|
|
496
|
-
- **agentic/code/frameworks/sdlc-complete/actors-and-templates.md**: Role and artifact mappings
|
|
497
|
-
- **commands/DEVELOPMENT_GUIDE.md**: Advanced slash command patterns
|
|
498
|
-
|
|
499
|
-
## Development Workflow
|
|
500
|
-
|
|
501
|
-
1. **Initial content creation**: Start with CLAUDE.md only
|
|
502
|
-
2. **Pattern detection**: If AI patterns appear, add validation documents
|
|
503
|
-
3. **Voice correction**: If lacking authenticity, add example documents
|
|
504
|
-
4. **Full remediation**: Use complete suite only for persistent issues
|
|
505
|
-
|
|
506
|
-
Remember: Authority comes from expertise (not formality), sophistication from precision (not complexity), and
|
|
507
|
-
authenticity from honesty (not casualness).
|
|
508
|
-
|
|
509
|
-
---
|
|
510
|
-
|
|
511
|
-
## AIWG (AI Writing Guide) SDLC Framework
|
|
512
|
-
|
|
513
|
-
This project uses the **AI Writing Guide SDLC framework** for software development lifecycle management.
|
|
514
|
-
|
|
515
|
-
### What is AIWG?
|
|
516
|
-
|
|
517
|
-
AIWG is a comprehensive SDLC framework providing:
|
|
518
|
-
|
|
519
|
-
- **58 specialized agents** covering all lifecycle phases (Inception → Elaboration → Construction → Transition → Production)
|
|
520
|
-
- **42+ commands** for project management, security, testing, deployment, and traceability
|
|
521
|
-
- **100+ templates** for requirements, architecture, testing, security, deployment artifacts
|
|
522
|
-
- **Phase-based workflows** with gate criteria and milestone tracking
|
|
523
|
-
- **Multi-agent orchestration** patterns for collaborative artifact generation
|
|
524
|
-
|
|
525
|
-
### Installation and Access
|
|
526
|
-
|
|
527
|
-
**AIWG Installation Path**: `~/.local/share/ai-writing-guide`
|
|
528
|
-
|
|
529
|
-
**Agent Access**: Claude Code agents have read access to AIWG templates and documentation via allowed-tools configuration.
|
|
530
|
-
|
|
531
|
-
**Verify Installation**:
|
|
532
|
-
|
|
533
|
-
```bash
|
|
534
|
-
# Check AIWG is accessible
|
|
535
|
-
ls ~/.local/share/ai-writing-guide/agentic/code/frameworks/sdlc-complete/
|
|
536
|
-
|
|
537
|
-
# Available resources:
|
|
538
|
-
# - agents/ → 58 SDLC role agents
|
|
539
|
-
# - commands/ → 42+ slash commands
|
|
540
|
-
# - templates/ → 100+ artifact templates
|
|
541
|
-
# - flows/ → Phase workflow documentation
|
|
542
|
-
```
|
|
543
|
-
|
|
544
|
-
### Project Artifacts Directory: .aiwg/
|
|
545
|
-
|
|
546
|
-
All SDLC artifacts (requirements, architecture, testing, etc.) are stored in **`.aiwg/`**:
|
|
547
|
-
|
|
548
|
-
```text
|
|
549
|
-
.aiwg/
|
|
550
|
-
├── intake/ # Project intake forms
|
|
551
|
-
├── requirements/ # User stories, use cases, NFRs
|
|
552
|
-
├── architecture/ # SAD, ADRs, diagrams
|
|
553
|
-
├── planning/ # Phase and iteration plans
|
|
554
|
-
├── risks/ # Risk register and mitigation
|
|
555
|
-
├── testing/ # Test strategy, plans, results
|
|
556
|
-
├── security/ # Threat models, security artifacts
|
|
557
|
-
├── quality/ # Code reviews, retrospectives
|
|
558
|
-
├── deployment/ # Deployment plans, runbooks
|
|
559
|
-
├── team/ # Team profile, agent assignments
|
|
560
|
-
├── working/ # Temporary scratch (safe to delete)
|
|
561
|
-
└── reports/ # Generated reports and indices
|
|
562
|
-
```
|
|
563
|
-
|
|
564
|
-
## Core Platform Orchestrator Role
|
|
565
|
-
|
|
566
|
-
**IMPORTANT**: You (Claude Code) are the **Core Orchestrator** for SDLC workflows, not a command executor.
|
|
567
|
-
|
|
568
|
-
### Your Orchestration Responsibilities
|
|
569
|
-
|
|
570
|
-
When users request SDLC workflows (natural language or commands):
|
|
571
|
-
|
|
572
|
-
#### 1. Interpret Natural Language
|
|
573
|
-
|
|
574
|
-
Map user requests to flow templates:
|
|
575
|
-
|
|
576
|
-
- "Let's transition to Elaboration" → `flow-inception-to-elaboration`
|
|
577
|
-
- "Start security review" → `flow-security-review-cycle`
|
|
578
|
-
- "Create architecture baseline" → Extract SAD generation from flow
|
|
579
|
-
- "Run iteration 5" → `flow-iteration-dual-track` with iteration=5
|
|
580
|
-
|
|
581
|
-
See full translation table in `~/.local/share/ai-writing-guide/docs/simple-language-translations.md`
|
|
582
|
-
|
|
583
|
-
#### 2. Read Flow Commands as Orchestration Templates
|
|
584
|
-
|
|
585
|
-
**NOT bash scripts to execute**, but orchestration guides containing:
|
|
586
|
-
|
|
587
|
-
- **Artifacts to generate**: What documents/deliverables
|
|
588
|
-
- **Agent assignments**: Who is Primary Author, who reviews
|
|
589
|
-
- **Quality criteria**: What makes a document "complete"
|
|
590
|
-
- **Multi-agent workflow**: Review cycles, consensus process
|
|
591
|
-
- **Archive instructions**: Where to save final artifacts
|
|
592
|
-
|
|
593
|
-
Flow commands are located in `.claude/commands/flow-*.md`
|
|
594
|
-
|
|
595
|
-
#### 3. Launch Multi-Agent Workflows via Task Tool
|
|
596
|
-
|
|
597
|
-
**Follow this pattern for every artifact**:
|
|
598
|
-
|
|
599
|
-
```text
|
|
600
|
-
Primary Author → Parallel Reviewers → Synthesizer → Archive
|
|
601
|
-
↓ ↓ ↓ ↓
|
|
602
|
-
Draft v0.1 Reviews (3-5) Final merge .aiwg/archive/
|
|
603
|
-
```
|
|
604
|
-
|
|
605
|
-
**CRITICAL**: Launch parallel reviewers in **single message** with multiple Task tool calls:
|
|
606
|
-
|
|
607
|
-
```python
|
|
608
|
-
# Pseudo-code example
|
|
609
|
-
# Step 1: Primary Author creates draft
|
|
610
|
-
Task(
|
|
611
|
-
subagent_type="architecture-designer",
|
|
612
|
-
description="Create Software Architecture Document draft",
|
|
613
|
-
prompt="""
|
|
614
|
-
Read template: ~/.local/share/ai-writing-guide/templates/analysis-design/software-architecture-doc-template.md
|
|
615
|
-
Read requirements from: .aiwg/requirements/
|
|
616
|
-
Create initial SAD draft
|
|
617
|
-
Save draft to: .aiwg/working/architecture/sad/drafts/v0.1-primary-draft.md
|
|
618
|
-
"""
|
|
619
|
-
)
|
|
620
|
-
|
|
621
|
-
# Step 2: Launch parallel reviewers (ALL IN ONE MESSAGE)
|
|
622
|
-
# Send one message with 4 Task calls:
|
|
623
|
-
Task(security-architect) → Security validation
|
|
624
|
-
Task(test-architect) → Testability review
|
|
625
|
-
Task(requirements-analyst) → Requirements traceability
|
|
626
|
-
Task(technical-writer) → Clarity and consistency
|
|
627
|
-
|
|
628
|
-
# Step 3: Synthesizer merges feedback
|
|
629
|
-
Task(
|
|
630
|
-
subagent_type="documentation-synthesizer",
|
|
631
|
-
description="Merge all SAD review feedback",
|
|
632
|
-
prompt="""
|
|
633
|
-
Read all reviews from: .aiwg/working/architecture/sad/reviews/
|
|
634
|
-
Synthesize final document
|
|
635
|
-
Output: .aiwg/architecture/software-architecture-doc.md (BASELINED)
|
|
636
|
-
"""
|
|
637
|
-
)
|
|
638
|
-
```
|
|
639
|
-
|
|
640
|
-
#### 4. Track Progress and Communicate
|
|
641
|
-
|
|
642
|
-
Update user throughout with clear indicators:
|
|
643
|
-
|
|
644
|
-
```text
|
|
645
|
-
✓ = Complete
|
|
646
|
-
⏳ = In progress
|
|
647
|
-
❌ = Error/blocked
|
|
648
|
-
⚠️ = Warning/attention needed
|
|
649
|
-
```
|
|
650
|
-
|
|
651
|
-
**Example orchestration progress**:
|
|
652
|
-
|
|
653
|
-
```text
|
|
654
|
-
✓ Initialized workspaces
|
|
655
|
-
⏳ SAD Draft (Architecture Designer)...
|
|
656
|
-
✓ SAD v0.1 draft complete (3,245 words)
|
|
657
|
-
⏳ Launching parallel review (4 agents)...
|
|
658
|
-
✓ Security Architect: APPROVED with suggestions
|
|
659
|
-
✓ Test Architect: CONDITIONAL (add performance test strategy)
|
|
660
|
-
✓ Requirements Analyst: APPROVED
|
|
661
|
-
✓ Technical Writer: APPROVED (minor edits)
|
|
662
|
-
⏳ Synthesizing SAD...
|
|
663
|
-
✓ SAD BASELINED: .aiwg/architecture/software-architecture-doc.md
|
|
664
|
-
```
|
|
665
|
-
|
|
666
|
-
### Natural Language Command Translation
|
|
667
|
-
|
|
668
|
-
**Users don't type slash commands. They use natural language.**
|
|
669
|
-
|
|
670
|
-
#### Common Phrases You'll Hear
|
|
671
|
-
|
|
672
|
-
**Phase Transitions**:
|
|
673
|
-
|
|
674
|
-
- "transition to {phase}" | "move to {phase}" | "start {phase}"
|
|
675
|
-
- "ready to deploy" | "begin construction"
|
|
676
|
-
|
|
677
|
-
**Workflow Requests**:
|
|
678
|
-
|
|
679
|
-
- "run iteration {N}" | "start iteration {N}"
|
|
680
|
-
- "deploy to production" | "start deployment"
|
|
681
|
-
|
|
682
|
-
**Review Cycles**:
|
|
20
|
+
## Repository Structure
|
|
683
21
|
|
|
684
|
-
- "security review" | "run security" | "validate security"
|
|
685
|
-
- "run tests" | "execute tests" | "test suite"
|
|
686
|
-
- "check compliance" | "validate compliance"
|
|
687
|
-
- "performance review" | "optimize performance"
|
|
688
|
-
|
|
689
|
-
**Artifact Generation**:
|
|
690
|
-
|
|
691
|
-
- "create {artifact}" | "generate {artifact}" | "build {artifact}"
|
|
692
|
-
- "architecture baseline" | "SAD" | "ADRs"
|
|
693
|
-
- "test plan" | "deployment plan" | "risk register"
|
|
694
|
-
|
|
695
|
-
**Status Checks**:
|
|
696
|
-
|
|
697
|
-
- "where are we" | "what's next" | "project status"
|
|
698
|
-
- "can we transition" | "ready for {phase}" | "check gate"
|
|
699
|
-
|
|
700
|
-
**Team and Process**:
|
|
701
|
-
|
|
702
|
-
- "onboard {name}" | "add team member"
|
|
703
|
-
- "knowledge transfer" | "handoff to {name}"
|
|
704
|
-
- "retrospective" | "retro" | "hold retro"
|
|
705
|
-
|
|
706
|
-
**Operations**:
|
|
707
|
-
|
|
708
|
-
- "incident" | "production issue" | "handle incident"
|
|
709
|
-
- "hypercare" | "monitoring" | "post-launch"
|
|
710
|
-
|
|
711
|
-
### Response Pattern
|
|
712
|
-
|
|
713
|
-
**Always confirm understanding before starting**:
|
|
714
|
-
|
|
715
|
-
```text
|
|
716
|
-
User: "Let's transition to Elaboration"
|
|
717
|
-
|
|
718
|
-
You: "Understood. I'll orchestrate the Inception → Elaboration transition.
|
|
719
|
-
|
|
720
|
-
This will generate:
|
|
721
|
-
- Software Architecture Document (SAD)
|
|
722
|
-
- Architecture Decision Records (3-5 ADRs)
|
|
723
|
-
- Master Test Plan
|
|
724
|
-
- Elaboration Phase Plan
|
|
725
|
-
|
|
726
|
-
I'll coordinate multiple agents for comprehensive review.
|
|
727
|
-
Expected duration: 15-20 minutes.
|
|
728
|
-
|
|
729
|
-
Starting orchestration..."
|
|
730
22
|
```
|
|
23
|
+
agentic/code/
|
|
24
|
+
├── frameworks/
|
|
25
|
+
│ ├── sdlc-complete/ # 58 SDLC agents, 42+ commands
|
|
26
|
+
│ └── media-marketing-kit/ # 37 marketing agents
|
|
27
|
+
├── addons/
|
|
28
|
+
│ └── voice-framework/ # Voice profiles
|
|
29
|
+
└── agents/ # 3 writing agents
|
|
731
30
|
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
- `/intake-wizard` - Generate or complete intake forms interactively
|
|
737
|
-
- `/intake-from-codebase` - Analyze existing codebase to generate intake
|
|
738
|
-
- `/intake-start` - Validate intake and kick off Inception phase
|
|
739
|
-
- `/flow-concept-to-inception` - Execute Concept → Inception workflow
|
|
740
|
-
|
|
741
|
-
**Phase Transitions**:
|
|
742
|
-
|
|
743
|
-
- `/flow-inception-to-elaboration` - Transition to Elaboration phase
|
|
744
|
-
- `/flow-elaboration-to-construction` - Transition to Construction phase
|
|
745
|
-
- `/flow-construction-to-transition` - Transition to Transition phase
|
|
746
|
-
|
|
747
|
-
**Continuous Workflows** (run throughout lifecycle):
|
|
748
|
-
|
|
749
|
-
- `/flow-risk-management-cycle` - Risk identification and mitigation
|
|
750
|
-
- `/flow-requirements-evolution` - Living requirements refinement
|
|
751
|
-
- `/flow-architecture-evolution` - Architecture change management
|
|
752
|
-
- `/flow-test-strategy-execution` - Test suite execution and validation
|
|
753
|
-
- `/flow-security-review-cycle` - Security validation and threat modeling
|
|
754
|
-
- `/flow-performance-optimization` - Performance baseline and optimization
|
|
755
|
-
|
|
756
|
-
**Quality & Gates**:
|
|
757
|
-
|
|
758
|
-
- `/flow-gate-check <phase-name>` - Validate phase gate criteria
|
|
759
|
-
- `/flow-handoff-checklist <from-phase> <to-phase>` - Phase handoff validation
|
|
760
|
-
- `/project-status` - Current phase, milestone progress, next steps
|
|
761
|
-
- `/project-health-check` - Overall project health metrics
|
|
762
|
-
|
|
763
|
-
**Team & Process**:
|
|
764
|
-
|
|
765
|
-
- `/flow-team-onboarding <member> [role]` - Onboard new team member
|
|
766
|
-
- `/flow-knowledge-transfer <from> <to> [domain]` - Knowledge transfer workflow
|
|
767
|
-
- `/flow-cross-team-sync <team-a> <team-b>` - Cross-team coordination
|
|
768
|
-
- `/flow-retrospective-cycle <type> [iteration]` - Retrospective facilitation
|
|
769
|
-
|
|
770
|
-
**Deployment & Operations**:
|
|
771
|
-
|
|
772
|
-
- `/flow-deploy-to-production` - Production deployment
|
|
773
|
-
- `/flow-hypercare-monitoring <duration-days>` - Post-launch monitoring
|
|
774
|
-
- `/flow-incident-response <incident-id> [severity]` - Production incident triage
|
|
775
|
-
|
|
776
|
-
**Compliance & Governance**:
|
|
777
|
-
|
|
778
|
-
- `/flow-compliance-validation <framework>` - Compliance validation workflow
|
|
779
|
-
- `/flow-change-control <change-type> [change-id]` - Change control workflow
|
|
780
|
-
- `/check-traceability <path-to-csv>` - Verify requirements-to-code traceability
|
|
781
|
-
- `/security-gate` - Enforce security criteria before release
|
|
782
|
-
|
|
783
|
-
### Command Parameters
|
|
784
|
-
|
|
785
|
-
All flow commands support standard parameters:
|
|
786
|
-
|
|
787
|
-
- `[project-directory]` - Path to project root (default: `.`)
|
|
788
|
-
- `--guidance "text"` - Strategic guidance to influence execution
|
|
789
|
-
- `--interactive` - Enable interactive mode with strategic questions
|
|
790
|
-
|
|
791
|
-
**Examples**:
|
|
792
|
-
|
|
793
|
-
```bash
|
|
794
|
-
# Natural language (preferred)
|
|
795
|
-
User: "Start security review with focus on authentication and HIPAA"
|
|
796
|
-
You: [Orchestrate flow-security-review-cycle with guidance="focus on authentication and HIPAA"]
|
|
797
|
-
|
|
798
|
-
# Explicit command (if user prefers)
|
|
799
|
-
/flow-architecture-evolution --guidance "Focus on security first, SOC2 audit in 3 months"
|
|
800
|
-
|
|
801
|
-
# Interactive mode
|
|
802
|
-
/flow-inception-to-elaboration --interactive
|
|
31
|
+
src/ # CLI and MCP server implementation
|
|
32
|
+
test/ # Test suites and fixtures
|
|
33
|
+
tools/ # Build and deployment scripts
|
|
803
34
|
```
|
|
804
35
|
|
|
805
|
-
##
|
|
806
|
-
|
|
807
|
-
1. **Artifact Location**: All SDLC artifacts MUST be created in `.aiwg/` subdirectories (not project root)
|
|
808
|
-
2. **Template Usage**: Always use AIWG templates from `~/.local/share/ai-writing-guide/agentic/code/frameworks/sdlc-complete/templates/`
|
|
809
|
-
3. **Agent Orchestration**: Follow multi-agent patterns (Primary Author → Parallel Reviewers → Synthesizer → Archive)
|
|
810
|
-
4. **Phase Gates**: Validate gate criteria before transitioning phases (use `flow-gate-check`)
|
|
811
|
-
5. **Traceability**: Maintain traceability from requirements → code → tests → deployment
|
|
812
|
-
6. **Guidance First**: Use `--guidance` or `--interactive` to express direction upfront (vs redirecting post-generation)
|
|
813
|
-
7. **Parallel Execution**: Launch independent agents in single message with multiple Task calls
|
|
36
|
+
## Context Loading Strategy
|
|
814
37
|
|
|
815
|
-
|
|
38
|
+
**Automatic (via path-scoped rules)**:
|
|
816
39
|
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
- **Agent Catalog**: `~/.local/share/ai-writing-guide/agentic/code/frameworks/sdlc-complete/agents/`
|
|
40
|
+
| Working in... | Rules loaded |
|
|
41
|
+
|---------------|--------------|
|
|
42
|
+
| `.aiwg/**` | SDLC orchestration |
|
|
43
|
+
| `**/*.md` | Voice framework |
|
|
44
|
+
| `src/**`, `test/**` | Development conventions |
|
|
45
|
+
| `.claude/agents/**` | Agent deployment |
|
|
824
46
|
|
|
825
|
-
|
|
47
|
+
**On-demand (via @-mentions)**:
|
|
826
48
|
|
|
827
|
-
|
|
49
|
+
Use `@path/to/file.md` in your message to load specific documentation:
|
|
50
|
+
- `@docs/reference/ORCHESTRATOR_GUIDE.md` - Full orchestration details
|
|
51
|
+
- `@docs/reference/AGENTS_CATALOG.md` - Complete agent listing
|
|
52
|
+
- `@.aiwg/requirements/UC-*.md` - Specific requirements
|
|
828
53
|
|
|
829
|
-
-
|
|
830
|
-
- Architecture sketch, ADRs
|
|
831
|
-
- Security screening, data classification
|
|
832
|
-
- Business case, funding approval
|
|
833
|
-
- **Milestone**: Lifecycle Objective (LO)
|
|
834
|
-
|
|
835
|
-
**Elaboration** (4-8 weeks):
|
|
836
|
-
|
|
837
|
-
- Detailed requirements (use cases, NFRs)
|
|
838
|
-
- Architecture baseline (SAD, component design)
|
|
839
|
-
- Risk retirement (PoCs, spikes)
|
|
840
|
-
- Test strategy, CI/CD setup
|
|
841
|
-
- **Milestone**: Lifecycle Architecture (LA)
|
|
842
|
-
|
|
843
|
-
**Construction** (8-16 weeks):
|
|
844
|
-
|
|
845
|
-
- Feature implementation
|
|
846
|
-
- Automated testing (unit, integration, E2E)
|
|
847
|
-
- Security validation (SAST, DAST)
|
|
848
|
-
- Performance optimization
|
|
849
|
-
- **Milestone**: Initial Operational Capability (IOC)
|
|
850
|
-
|
|
851
|
-
**Transition** (2-4 weeks):
|
|
852
|
-
|
|
853
|
-
- Production deployment
|
|
854
|
-
- User acceptance testing
|
|
855
|
-
- Support handover, runbooks
|
|
856
|
-
- Hypercare monitoring (2-4 weeks)
|
|
857
|
-
- **Milestone**: Product Release (PR)
|
|
858
|
-
|
|
859
|
-
**Production** (ongoing):
|
|
860
|
-
|
|
861
|
-
- Operational monitoring
|
|
862
|
-
- Incident response
|
|
863
|
-
- Feature iteration
|
|
864
|
-
- Continuous improvement
|
|
865
|
-
|
|
866
|
-
## Quick Start
|
|
867
|
-
|
|
868
|
-
1. **Initialize Project**:
|
|
869
|
-
|
|
870
|
-
```bash
|
|
871
|
-
# Generate intake forms
|
|
872
|
-
/intake-wizard "Your project description" --interactive
|
|
873
|
-
```
|
|
874
|
-
|
|
875
|
-
2. **Start Inception**:
|
|
876
|
-
|
|
877
|
-
```bash
|
|
878
|
-
# Validate intake and kick off Inception
|
|
879
|
-
/intake-start .aiwg/intake/
|
|
880
|
-
|
|
881
|
-
# Execute Concept → Inception workflow
|
|
882
|
-
/flow-concept-to-inception .
|
|
883
|
-
```
|
|
884
|
-
|
|
885
|
-
3. **Check Status**:
|
|
886
|
-
|
|
887
|
-
```bash
|
|
888
|
-
# View current phase and next steps
|
|
889
|
-
/project-status
|
|
890
|
-
```
|
|
54
|
+
## Multi-Platform Support
|
|
891
55
|
|
|
892
|
-
|
|
56
|
+
| Platform | Agent Location | Command |
|
|
57
|
+
|----------|----------------|---------|
|
|
58
|
+
| Claude Code | `.claude/agents/` | `aiwg -deploy-agents` |
|
|
59
|
+
| Warp Terminal | `WARP.md` | Symlinked to CLAUDE.md |
|
|
60
|
+
| Factory AI | `.factory/droids/` | `aiwg -deploy-agents --provider factory` |
|
|
61
|
+
| OpenAI/Codex | `.codex/agents/` | `aiwg -deploy-agents --provider openai` |
|
|
893
62
|
|
|
894
|
-
|
|
895
|
-
# When Inception complete, transition to Elaboration
|
|
896
|
-
/flow-gate-check inception # Validate gate criteria
|
|
897
|
-
/flow-inception-to-elaboration # Transition phase
|
|
898
|
-
```
|
|
63
|
+
## Writing Principles
|
|
899
64
|
|
|
900
|
-
|
|
65
|
+
1. **Apply appropriate voice** - Match audience (technical-authority, friendly-explainer, executive-brief, casual-conversational)
|
|
66
|
+
2. **Maintain sophistication** - Preserve domain-appropriate vocabulary
|
|
67
|
+
3. **Include authenticity markers** - Add opinions, acknowledge trade-offs
|
|
68
|
+
4. **Vary structure** - Mix sentence lengths and styles
|
|
69
|
+
5. **Be specific** - Exact metrics, concrete examples
|
|
901
70
|
|
|
902
|
-
|
|
71
|
+
## Installation
|
|
903
72
|
|
|
904
73
|
```bash
|
|
905
|
-
#
|
|
906
|
-
|
|
74
|
+
# One-line install
|
|
75
|
+
curl -fsSL https://raw.githubusercontent.com/jmagly/ai-writing-guide/main/tools/install/install.sh | bash
|
|
907
76
|
|
|
908
|
-
#
|
|
909
|
-
|
|
77
|
+
# CLI commands
|
|
78
|
+
aiwg -version # Show version
|
|
79
|
+
aiwg -deploy-agents # Deploy agents to project
|
|
80
|
+
aiwg -deploy-commands # Deploy slash commands
|
|
81
|
+
aiwg -new # Scaffold new project
|
|
82
|
+
aiwg -help # Show all commands
|
|
910
83
|
```
|
|
911
84
|
|
|
912
|
-
|
|
85
|
+
## Project Artifacts (.aiwg/)
|
|
913
86
|
|
|
914
|
-
|
|
915
|
-
# Natural language
|
|
916
|
-
User: "Evolve architecture for database migration"
|
|
87
|
+
All SDLC artifacts stored in `.aiwg/`:
|
|
917
88
|
|
|
918
|
-
# Or explicit command
|
|
919
|
-
/flow-architecture-evolution database-migration --interactive
|
|
920
89
|
```
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
#
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
#
|
|
929
|
-
/
|
|
90
|
+
.aiwg/
|
|
91
|
+
├── intake/ # Project intake forms
|
|
92
|
+
├── requirements/ # User stories, use cases
|
|
93
|
+
├── architecture/ # SAD, ADRs
|
|
94
|
+
├── planning/ # Phase plans
|
|
95
|
+
├── risks/ # Risk register
|
|
96
|
+
├── testing/ # Test strategy
|
|
97
|
+
├── security/ # Threat models
|
|
98
|
+
├── deployment/ # Deployment plans
|
|
99
|
+
├── working/ # Temporary (safe to delete)
|
|
100
|
+
└── reports/ # Generated reports
|
|
930
101
|
```
|
|
931
102
|
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
```bash
|
|
935
|
-
# Natural language
|
|
936
|
-
User: "Execute integration tests with 5 minute timeout"
|
|
937
|
-
|
|
938
|
-
# Or explicit command
|
|
939
|
-
/flow-test-strategy-execution integration --guidance "Focus on API endpoints, <5min execution time target"
|
|
940
|
-
```
|
|
103
|
+
## Key References
|
|
941
104
|
|
|
942
|
-
|
|
105
|
+
| Topic | Location |
|
|
106
|
+
|-------|----------|
|
|
107
|
+
| SDLC Framework | `@~/.local/share/ai-writing-guide/agentic/code/frameworks/sdlc-complete/README.md` |
|
|
108
|
+
| Voice Profiles | `@agentic/code/addons/voice-framework/voices/templates/` |
|
|
109
|
+
| Natural Language Patterns | `@~/.local/share/ai-writing-guide/docs/simple-language-translations.md` |
|
|
110
|
+
| Agent Catalog | `@~/.local/share/ai-writing-guide/agentic/code/frameworks/sdlc-complete/agents/` |
|
|
111
|
+
| Templates | `@~/.local/share/ai-writing-guide/agentic/code/frameworks/sdlc-complete/templates/` |
|
|
943
112
|
|
|
944
|
-
|
|
113
|
+
## Development
|
|
945
114
|
|
|
946
115
|
```bash
|
|
947
|
-
#
|
|
948
|
-
|
|
116
|
+
# Run tests
|
|
117
|
+
npm test
|
|
949
118
|
|
|
950
|
-
#
|
|
951
|
-
|
|
952
|
-
```
|
|
953
|
-
|
|
954
|
-
**Agent Access Denied**:
|
|
955
|
-
|
|
956
|
-
- Check `.claude/settings.local.json` has read access to AIWG installation path
|
|
957
|
-
- Verify path uses absolute path (not `~` shorthand for user home)
|
|
119
|
+
# Type check
|
|
120
|
+
npx tsc --noEmit
|
|
958
121
|
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
```bash
|
|
962
|
-
# Deploy commands to project
|
|
963
|
-
aiwg -deploy-commands --mode sdlc
|
|
964
|
-
|
|
965
|
-
# Verify deployment
|
|
966
|
-
ls .claude/commands/flow-*.md
|
|
122
|
+
# Lint markdown
|
|
123
|
+
npm exec markdownlint-cli2 "**/*.md"
|
|
967
124
|
```
|
|
968
125
|
|
|
969
|
-
## Resources
|
|
970
|
-
|
|
971
|
-
- **AIWG Repository**: https://github.com/jmagly/ai-writing-guide
|
|
972
|
-
- **Framework Documentation**: `~/.local/share/ai-writing-guide/agentic/code/frameworks/sdlc-complete/README.md`
|
|
973
|
-
- **Phase Workflows**: `~/.local/share/ai-writing-guide/agentic/code/frameworks/sdlc-complete/flows/`
|
|
974
|
-
- **Template Library**: `~/.local/share/ai-writing-guide/agentic/code/frameworks/sdlc-complete/templates/`
|
|
975
|
-
- **Agent Catalog**: `~/.local/share/ai-writing-guide/agentic/code/frameworks/sdlc-complete/agents/`
|
|
976
|
-
|
|
977
126
|
## Support
|
|
978
127
|
|
|
128
|
+
- **Website**: https://aiwg.io
|
|
129
|
+
- **Repository**: https://github.com/jmagly/ai-writing-guide
|
|
979
130
|
- **Issues**: https://github.com/jmagly/ai-writing-guide/issues
|
|
980
|
-
- **
|
|
981
|
-
- **
|
|
131
|
+
- **Discord**: https://discord.gg/BuAusFMxdA
|
|
132
|
+
- **Telegram**: https://t.me/+oJg9w2lE6A5lOGFh
|
|
982
133
|
|
|
983
134
|
---
|
|
984
135
|
|
|
985
|
-
|
|
136
|
+
<!-- TEAM DIRECTIVES: Add project-specific guidance below this line -->
|
|
986
137
|
|
|
987
|
-
<!-- User: Add project-specific guidance, conventions, and rules below -->
|