aiwg 2024.12.3 → 2026.1.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 +35 -13
- package/README.md +109 -1188
- package/USAGE_GUIDE.md +33 -0
- package/agentic/code/addons/aiwg-evals/commands/eval-agent.md +1 -1
- package/agentic/code/addons/aiwg-utils/README.md +21 -0
- package/agentic/code/addons/aiwg-utils/commands/aiwg-refresh.md +341 -0
- package/agentic/code/addons/aiwg-utils/commands/aiwg-regenerate-agents.md +353 -0
- package/agentic/code/addons/aiwg-utils/commands/aiwg-regenerate-claude.md +280 -87
- package/agentic/code/addons/aiwg-utils/commands/aiwg-regenerate-copilot.md +291 -0
- package/agentic/code/addons/aiwg-utils/commands/aiwg-regenerate-cursorrules.md +216 -0
- package/agentic/code/addons/aiwg-utils/commands/aiwg-regenerate-factory.md +15 -294
- package/agentic/code/addons/aiwg-utils/commands/aiwg-regenerate-warp.md +32 -40
- package/agentic/code/addons/aiwg-utils/commands/aiwg-regenerate-windsurfrules.md +212 -0
- package/agentic/code/addons/aiwg-utils/commands/aiwg-regenerate.md +22 -11
- package/agentic/code/addons/aiwg-utils/commands/commit-and-push.md +1 -1
- package/agentic/code/addons/aiwg-utils/commands/deploy-gen.md +1 -1
- package/agentic/code/addons/aiwg-utils/commands/devkit-create-addon.md +1 -1
- package/agentic/code/addons/aiwg-utils/commands/devkit-create-agent.md +1 -1
- package/agentic/code/addons/aiwg-utils/commands/devkit-create-command.md +2 -2
- package/agentic/code/addons/aiwg-utils/commands/devkit-create-extension.md +1 -1
- package/agentic/code/addons/aiwg-utils/commands/devkit-create-framework.md +1 -1
- package/agentic/code/addons/aiwg-utils/commands/devkit-create-skill.md +1 -1
- package/agentic/code/addons/aiwg-utils/commands/devkit-test.md +1 -1
- package/agentic/code/addons/aiwg-utils/commands/devkit-validate.md +1 -1
- package/agentic/code/addons/aiwg-utils/commands/mention-conventions.md +1 -1
- package/agentic/code/addons/aiwg-utils/commands/mention-lint.md +1 -1
- package/agentic/code/addons/aiwg-utils/commands/mention-report.md +1 -1
- package/agentic/code/addons/aiwg-utils/commands/mention-validate.md +1 -1
- package/agentic/code/addons/aiwg-utils/commands/mention-wire.md +1 -1
- package/agentic/code/addons/aiwg-utils/commands/parallel-dispatch.md +1 -1
- package/agentic/code/addons/aiwg-utils/commands/workspace-prune-working.md +1 -1
- package/agentic/code/addons/aiwg-utils/commands/workspace-realign.md +1 -1
- package/agentic/code/addons/aiwg-utils/commands/workspace-reset.md +1 -1
- package/agentic/code/addons/aiwg-utils/manifest.json +1 -0
- package/agentic/code/addons/droid-bridge/CLAUDE-ADDON.md +112 -0
- package/agentic/code/addons/droid-bridge/README.md +135 -0
- package/agentic/code/addons/droid-bridge/manifest.json +42 -0
- package/agentic/code/addons/droid-bridge/package-lock.json +1127 -0
- package/agentic/code/addons/droid-bridge/package.json +16 -0
- package/agentic/code/addons/droid-bridge/server.js +467 -0
- package/agentic/code/addons/guided-implementation/README.md +109 -0
- package/agentic/code/addons/guided-implementation/manifest.json +26 -0
- package/agentic/code/addons/guided-implementation/skills/iteration-control/SKILL.md +188 -0
- package/agentic/code/addons/ralph/README.md +154 -0
- package/agentic/code/addons/ralph/agents/ralph-loop.md +256 -0
- package/agentic/code/addons/ralph/agents/ralph-verifier.md +237 -0
- package/agentic/code/addons/ralph/commands/ralph-abort.md +128 -0
- package/agentic/code/addons/ralph/commands/ralph-resume.md +170 -0
- package/agentic/code/addons/ralph/commands/ralph-status.md +121 -0
- package/agentic/code/addons/ralph/commands/ralph.md +351 -0
- package/agentic/code/addons/ralph/docs/best-practices.md +313 -0
- package/agentic/code/addons/ralph/docs/examples/coverage.md +113 -0
- package/agentic/code/addons/ralph/docs/examples/migration.md +102 -0
- package/agentic/code/addons/ralph/docs/examples/test-fix-loop.md +95 -0
- package/agentic/code/addons/ralph/docs/quickstart.md +207 -0
- package/agentic/code/addons/ralph/docs/troubleshooting.md +326 -0
- package/agentic/code/addons/ralph/hooks/ralph-commit.js +191 -0
- package/agentic/code/addons/ralph/hooks/ralph-loop.js +408 -0
- package/agentic/code/addons/ralph/manifest.json +68 -0
- package/agentic/code/addons/ralph/skills/ralph-loop/SKILL.md +146 -0
- package/agentic/code/addons/ralph/skills/ralph-loop/manifest.json +22 -0
- package/agentic/code/addons/security/README.md +158 -0
- package/agentic/code/addons/security/secure-token-load.md +339 -0
- package/agentic/code/addons/star-prompt/README.md +116 -0
- package/agentic/code/addons/star-prompt/manifest.json +26 -0
- package/agentic/code/addons/star-prompt/skills/star-prompt.md +127 -0
- package/agentic/code/addons/testing-quality/README.md +142 -0
- package/agentic/code/addons/testing-quality/manifest.json +37 -0
- package/agentic/code/addons/testing-quality/skills/flaky-detect/SKILL.md +287 -0
- package/agentic/code/addons/testing-quality/skills/flaky-fix/SKILL.md +313 -0
- package/agentic/code/addons/testing-quality/skills/generate-factory/SKILL.md +331 -0
- package/agentic/code/addons/testing-quality/skills/mutation-test/SKILL.md +299 -0
- package/agentic/code/addons/testing-quality/skills/tdd-enforce/SKILL.md +273 -0
- package/agentic/code/addons/testing-quality/skills/tdd-enforce/scripts/tdd_setup.py +433 -0
- package/agentic/code/addons/testing-quality/skills/test-sync/SKILL.md +312 -0
- package/agentic/code/addons/voice-framework/skills/voice-apply/scripts/voice_loader.py +6 -1
- package/agentic/code/addons/voice-framework/voices/templates/ethical-cypherpunk.yaml +111 -0
- package/agentic/code/addons/writing-quality/skills/ai-pattern-detection/scripts/pattern_scanner.py +7 -3
- package/agentic/code/addons/writing-quality/validation/scoring-config.json +85 -0
- package/agentic/code/frameworks/media-marketing-kit/commands/intake-from-campaign.md +39 -0
- package/agentic/code/frameworks/media-marketing-kit/commands/intake-start-campaign.md +40 -1
- package/agentic/code/frameworks/media-marketing-kit/manifest.json +19 -0
- package/agentic/code/frameworks/sdlc-complete/agents/agentsmith.md +239 -0
- package/agentic/code/frameworks/sdlc-complete/agents/commandsmith.md +297 -0
- package/agentic/code/frameworks/sdlc-complete/agents/devops-engineer.md +28 -242
- package/agentic/code/frameworks/sdlc-complete/agents/manifest.json +11 -5
- package/agentic/code/frameworks/sdlc-complete/agents/mcpsmith.md +473 -0
- package/agentic/code/frameworks/sdlc-complete/agents/mutation-analyst.md +231 -0
- package/agentic/code/frameworks/sdlc-complete/agents/security-auditor.md +75 -0
- package/agentic/code/frameworks/sdlc-complete/agents/skillsmith.md +259 -0
- package/agentic/code/frameworks/sdlc-complete/agents/software-implementer.md +115 -22
- package/agentic/code/frameworks/sdlc-complete/agents/test-architect.md +144 -22
- package/agentic/code/frameworks/sdlc-complete/agents/test-engineer.md +198 -387
- package/agentic/code/frameworks/sdlc-complete/agents/toolsmith-dynamic.md +414 -0
- package/agentic/code/frameworks/sdlc-complete/agents/toolsmith-provider.md +223 -0
- package/agentic/code/frameworks/sdlc-complete/agents/windsurf-compat.md +229 -0
- package/agentic/code/frameworks/sdlc-complete/commands/aiwg-kb.md +1 -1
- package/agentic/code/frameworks/sdlc-complete/commands/aiwg-setup-project.md +1 -1
- package/agentic/code/frameworks/sdlc-complete/commands/aiwg-setup-warp.md +1 -1
- package/agentic/code/frameworks/sdlc-complete/commands/aiwg-update-agents-md.md +1 -1
- package/agentic/code/frameworks/sdlc-complete/commands/aiwg-update-claude.md +1 -1
- package/agentic/code/frameworks/sdlc-complete/commands/aiwg-update-warp.md +1 -1
- package/agentic/code/frameworks/sdlc-complete/commands/build-artifact-index.md +1 -1
- package/agentic/code/frameworks/sdlc-complete/commands/build-poc.md +1 -1
- package/agentic/code/frameworks/sdlc-complete/commands/check-traceability.md +1 -1
- package/agentic/code/frameworks/sdlc-complete/commands/create-prd.md +1 -1
- package/agentic/code/frameworks/sdlc-complete/commands/flow-guided-implementation.md +240 -0
- package/agentic/code/frameworks/sdlc-complete/commands/generate-tests.md +1 -1
- package/agentic/code/frameworks/sdlc-complete/commands/intake-from-codebase.md +39 -0
- package/agentic/code/frameworks/sdlc-complete/commands/intake-start.md +40 -1
- package/agentic/code/frameworks/sdlc-complete/commands/intake-wizard.md +39 -0
- package/agentic/code/frameworks/sdlc-complete/commands/issue-close.md +640 -0
- package/agentic/code/frameworks/sdlc-complete/commands/issue-comment.md +788 -0
- package/agentic/code/frameworks/sdlc-complete/commands/issue-create.md +721 -0
- package/agentic/code/frameworks/sdlc-complete/commands/issue-list.md +905 -0
- package/agentic/code/frameworks/sdlc-complete/commands/issue-sync.md +632 -0
- package/agentic/code/frameworks/sdlc-complete/commands/issue-update.md +759 -0
- package/agentic/code/frameworks/sdlc-complete/commands/manifest.json +3 -0
- package/agentic/code/frameworks/sdlc-complete/commands/orchestrate-project.md +1 -1
- package/agentic/code/frameworks/sdlc-complete/commands/pr-review.md +1 -1
- package/agentic/code/frameworks/sdlc-complete/commands/project-status.md +1 -1
- package/agentic/code/frameworks/sdlc-complete/commands/project-timeline-simulator.md +1 -1
- package/agentic/code/frameworks/sdlc-complete/commands/security-gate.md +1 -1
- package/agentic/code/frameworks/sdlc-complete/commands/setup-tdd.md +254 -0
- package/agentic/code/frameworks/sdlc-complete/commands/smith-agenticdef.md +213 -0
- package/agentic/code/frameworks/sdlc-complete/commands/smith-mcpdef.md +314 -0
- package/agentic/code/frameworks/sdlc-complete/commands/smith-sysdef.md +333 -0
- package/agentic/code/frameworks/sdlc-complete/commands/troubleshooting-guide.md +1 -1
- package/agentic/code/frameworks/sdlc-complete/config/issue-tracking-config.md +372 -0
- package/agentic/code/frameworks/sdlc-complete/config/models-v2.json +309 -0
- package/agentic/code/frameworks/sdlc-complete/config/models.json +16 -0
- package/{docs/AGENT-DESIGN.md → agentic/code/frameworks/sdlc-complete/docs/agent-design.md} +5 -6
- package/{docs → agentic/code/frameworks/sdlc-complete/docs}/production-grade-guide.md +7 -7
- package/agentic/code/frameworks/sdlc-complete/docs/token-security.md +361 -0
- package/agentic/code/frameworks/sdlc-complete/docs/vendor-detection.md +367 -0
- package/agentic/code/frameworks/sdlc-complete/flows/manifest.json +0 -3
- package/agentic/code/frameworks/sdlc-complete/manifest.json +0 -1
- package/agentic/code/frameworks/sdlc-complete/skills/issue-auto-sync/SKILL.md +645 -0
- package/agentic/code/frameworks/sdlc-complete/skills/manifest.json +5 -0
- package/agentic/code/frameworks/sdlc-complete/src/monitoring/performance-monitor.ts +2 -3
- package/agentic/code/frameworks/sdlc-complete/src/orchestration/review-synthesizer.ts +9 -4
- package/agentic/code/frameworks/sdlc-complete/src/testing/mocks/index.ts +0 -6
- package/agentic/code/frameworks/sdlc-complete/templates/codex/AGENTS.md.aiwg-template +93 -0
- package/agentic/code/frameworks/sdlc-complete/templates/codex/ci-cd/aiwg-codex-review.yml +87 -0
- package/agentic/code/frameworks/sdlc-complete/templates/codex/ci-cd/aiwg-codex-security.yml +164 -0
- package/agentic/code/frameworks/sdlc-complete/templates/codex/ci-cd/aiwg-codex-tests.yml +126 -0
- package/agentic/code/frameworks/sdlc-complete/templates/codex/config.toml.aiwg-template +121 -0
- package/agentic/code/frameworks/sdlc-complete/templates/copilot/copilot-instructions.md.aiwg-template +71 -0
- package/agentic/code/frameworks/sdlc-complete/templates/cursor/AGENTS.md.aiwg-template +114 -0
- package/agentic/code/frameworks/sdlc-complete/templates/cursor/ci-cd/aiwg-cursor-review.yml +70 -0
- package/agentic/code/frameworks/sdlc-complete/templates/cursor/ci-cd/aiwg-cursor-security.yml +101 -0
- package/agentic/code/frameworks/sdlc-complete/templates/cursor/ci-cd/aiwg-cursor-tests.yml +140 -0
- package/agentic/code/frameworks/sdlc-complete/templates/cursor/cli.json.aiwg-template +27 -0
- package/agentic/code/frameworks/sdlc-complete/templates/cursor/worktrees.json.aiwg-template +15 -0
- package/agentic/code/frameworks/sdlc-complete/templates/intake/project-intake-template.md +47 -0
- package/agentic/code/frameworks/sdlc-complete/templates/issue-comments/README.md +427 -0
- package/agentic/code/frameworks/sdlc-complete/templates/issue-comments/blocker-found.md +105 -0
- package/agentic/code/frameworks/sdlc-complete/templates/issue-comments/feedback-needed.md +77 -0
- package/agentic/code/frameworks/sdlc-complete/templates/issue-comments/progress-update.md +116 -0
- package/agentic/code/frameworks/sdlc-complete/templates/issue-comments/task-completed.md +55 -0
- package/agentic/code/frameworks/sdlc-complete/templates/opencode/AGENTS.md.aiwg-template +73 -0
- package/agentic/code/frameworks/sdlc-complete/templates/opencode/ci-cd/opencode-aiwg.yml +73 -0
- package/agentic/code/frameworks/sdlc-complete/templates/opencode/instructions.md.aiwg-template +83 -0
- package/agentic/code/frameworks/sdlc-complete/templates/opencode/opencode.json.aiwg-template +24 -0
- package/agentic/code/frameworks/sdlc-complete/templates/opencode/plugin/aiwg-hooks.ts.aiwg-template +121 -0
- package/agentic/code/frameworks/sdlc-complete/templates/opencode/themes/aiwg.json.aiwg-template +221 -0
- package/agentic/code/frameworks/sdlc-complete/templates/opencode/tool/aiwg-workflow.ts.aiwg-template +176 -0
- package/agentic/code/frameworks/sdlc-complete/templates/regenerate-base.md +336 -0
- package/agentic/code/frameworks/sdlc-complete/templates/toolsmith/README.md +127 -0
- package/agentic/code/frameworks/sdlc-complete/templates/toolsmith/cli-tool-template.md +184 -0
- package/agentic/code/frameworks/sdlc-complete/templates/toolsmith/config-template.json +95 -0
- package/agentic/code/frameworks/sdlc-complete/templates/toolsmith/samples/jq.tool.md +324 -0
- package/agentic/code/frameworks/sdlc-complete/test/unit/security/security-validator.test.ts +2 -1
- package/docs/.public/favicon.svg +4 -0
- package/docs/CLI_USAGE.md +3 -660
- package/docs/_manifest.json +483 -0
- package/docs/architecture/workspace-architecture.md +137 -0
- package/docs/commands/_manifest.json +11 -0
- package/docs/config.json +49 -0
- package/docs/configuration/_manifest.json +7 -0
- package/docs/configuration/model-configuration.md +51 -14
- package/docs/contributing/_manifest.json +10 -0
- package/docs/contributing/contributor-quickstart.md +5 -6
- package/docs/contributing/testing-requirements.md +144 -0
- package/docs/deploy-generators.md +162 -0
- package/docs/development/_manifest.json +13 -0
- package/docs/development/addon-creation-guide.md +2 -0
- package/docs/development/devkit-overview.md +7 -8
- package/docs/development/file-placement-guide.md +170 -0
- package/docs/development/framework-creation-guide.md +2 -2
- package/docs/development/skill-creation-guide.md +158 -0
- package/docs/development/skill-inventory.md +361 -0
- package/docs/gap-analysis-guide.md +483 -0
- package/docs/getting-started/prerequisites.md +95 -0
- package/docs/intake-guide.md +277 -0
- package/docs/integrations/_manifest.json +17 -0
- package/docs/integrations/claude-code-quickstart.md +76 -540
- package/docs/integrations/codex-quickstart.md +90 -0
- package/docs/integrations/copilot-quickstart.md +92 -0
- package/docs/integrations/cross-platform-config.md +25 -142
- package/docs/integrations/cross-platform-overview.md +46 -0
- package/docs/integrations/cursor-quickstart.md +82 -0
- package/docs/integrations/factory-quickstart.md +29 -728
- package/docs/integrations/opencode-quickstart.md +95 -0
- package/docs/integrations/warp-terminal-quickstart.md +27 -710
- package/docs/integrations/warp-terminal.md +7 -7
- package/docs/mcp/README.md +77 -0
- package/docs/mention-utilities.md +187 -0
- package/docs/overrides/index.html +133 -0
- package/docs/overrides/styles.css +1555 -0
- package/docs/overrides/terminal.js +821 -0
- package/docs/quickstart-mmk.md +41 -85
- package/docs/quickstart-sdlc.md +40 -93
- package/docs/quickstart.md +57 -138
- package/docs/reference/_manifest.json +7 -0
- package/docs/references/README.md +3 -2
- package/docs/references/REF-003-agentic-development-antipatterns.md +258 -0
- package/docs/references/_manifest.json +11 -0
- package/docs/regenerate-guide.md +255 -0
- package/docs/releases/_manifest.json +13 -0
- package/docs/releases/v0.9.1-announcement.md +3 -4
- package/docs/releases/v2024.12.1-announcement.md +213 -0
- package/docs/releases/v2024.12.2-announcement.md +114 -0
- package/docs/releases/v2024.12.3-announcement.md +100 -0
- package/docs/releases/v2024.12.4-announcement.md +109 -0
- package/docs/releases/v2024.12.5-announcement.md +141 -0
- package/docs/smithing/README.md +421 -0
- package/docs/smithing/_manifest.json +11 -0
- package/docs/smithing/agentic-smiths.md +316 -0
- package/docs/smithing/graduating-creations.md +268 -0
- package/docs/smithing/mcpsmith.md +363 -0
- package/docs/smithing/toolsmith.md +163 -0
- package/docs/sponsors.md +95 -0
- package/docs/troubleshooting/_manifest.json +12 -0
- package/docs/troubleshooting/deployment-issues.md +3 -3
- package/docs/troubleshooting/index.md +4 -4
- package/docs/troubleshooting/path-issues.md +2 -2
- package/docs/troubleshooting/platform-issues.md +2 -2
- package/docs/troubleshooting/setup-issues.md +7 -8
- package/docs/usage-notes.md +58 -0
- package/docs/welcome.html +84 -0
- package/man/aiwg.1 +113 -0
- package/package.json +10 -8
- package/plugins/hooks/.claude-plugin/plugin.json +20 -0
- package/plugins/hooks/README.md +27 -0
- package/plugins/hooks/hooks/aiwg-permissions.js +170 -0
- package/plugins/hooks/hooks/aiwg-session.js +236 -0
- package/plugins/hooks/hooks/aiwg-trace.js +154 -0
- package/plugins/hooks/scripts/trace-viewer.mjs +234 -0
- package/plugins/marketing/.claude-plugin/plugin.json +22 -0
- package/plugins/marketing/README.md +28 -0
- package/plugins/marketing/agents/accessibility-checker.md +559 -0
- package/plugins/marketing/agents/art-director.md +426 -0
- package/plugins/marketing/agents/asset-manager.md +455 -0
- package/plugins/marketing/agents/attribution-specialist.md +501 -0
- package/plugins/marketing/agents/brand-guardian.md +491 -0
- package/plugins/marketing/agents/budget-planner.md +309 -0
- package/plugins/marketing/agents/campaign-orchestrator.md +517 -0
- package/plugins/marketing/agents/campaign-strategist.md +206 -0
- package/plugins/marketing/agents/channel-strategist.md +270 -0
- package/plugins/marketing/agents/content-strategist.md +274 -0
- package/plugins/marketing/agents/content-writer.md +351 -0
- package/plugins/marketing/agents/copywriter.md +246 -0
- package/plugins/marketing/agents/corporate-communications.md +513 -0
- package/plugins/marketing/agents/creative-director.md +408 -0
- package/plugins/marketing/agents/crisis-communications.md +455 -0
- package/plugins/marketing/agents/data-analyst.md +501 -0
- package/plugins/marketing/agents/editor.md +372 -0
- package/plugins/marketing/agents/email-marketer.md +387 -0
- package/plugins/marketing/agents/graphic-designer.md +405 -0
- package/plugins/marketing/agents/internal-communications.md +510 -0
- package/plugins/marketing/agents/legal-reviewer.md +520 -0
- package/plugins/marketing/agents/market-researcher.md +244 -0
- package/plugins/marketing/agents/marketing-analyst.md +489 -0
- package/plugins/marketing/agents/media-relations.md +424 -0
- package/plugins/marketing/agents/positioning-specialist.md +247 -0
- package/plugins/marketing/agents/pr-specialist.md +483 -0
- package/plugins/marketing/agents/production-coordinator.md +486 -0
- package/plugins/marketing/agents/project-manager.md +623 -0
- package/plugins/marketing/agents/quality-controller.md +425 -0
- package/plugins/marketing/agents/reporting-specialist.md +630 -0
- package/plugins/marketing/agents/scriptwriter.md +427 -0
- package/plugins/marketing/agents/seo-specialist.md +379 -0
- package/plugins/marketing/agents/social-media-specialist.md +385 -0
- package/plugins/marketing/agents/technical-marketing-writer.md +482 -0
- package/plugins/marketing/agents/traffic-manager.md +408 -0
- package/plugins/marketing/agents/video-producer.md +446 -0
- package/plugins/marketing/agents/workflow-coordinator.md +620 -0
- package/plugins/marketing/commands/asset-production.md +149 -0
- package/plugins/marketing/commands/brand-audit.md +151 -0
- package/plugins/marketing/commands/brand-review.md +144 -0
- package/plugins/marketing/commands/budget-review.md +139 -0
- package/plugins/marketing/commands/campaign-analytics.md +148 -0
- package/plugins/marketing/commands/campaign-kickoff.md +156 -0
- package/plugins/marketing/commands/competitive-analysis.md +146 -0
- package/plugins/marketing/commands/content-planning.md +141 -0
- package/plugins/marketing/commands/creative-brief.md +145 -0
- package/plugins/marketing/commands/crisis-response.md +159 -0
- package/plugins/marketing/commands/email-campaign.md +159 -0
- package/plugins/marketing/commands/event-marketing.md +162 -0
- package/plugins/marketing/commands/intake-from-campaign.md +707 -0
- package/plugins/marketing/commands/intake-start-campaign.md +473 -0
- package/plugins/marketing/commands/legal-compliance.md +148 -0
- package/plugins/marketing/commands/marketing-intake-wizard.md +807 -0
- package/plugins/marketing/commands/marketing-intake.md +181 -0
- package/plugins/marketing/commands/marketing-retrospective.md +161 -0
- package/plugins/marketing/commands/marketing-status.md +147 -0
- package/plugins/marketing/commands/pr-launch.md +148 -0
- package/plugins/marketing/commands/sales-enablement.md +161 -0
- package/plugins/marketing/commands/social-strategy.md +151 -0
- package/plugins/marketing/commands/video-production.md +160 -0
- package/plugins/marketing/skills/approval-workflow/SKILL.md +579 -0
- package/plugins/marketing/skills/audience-synthesis/SKILL.md +594 -0
- package/plugins/marketing/skills/brand-compliance/SKILL.md +395 -0
- package/plugins/marketing/skills/competitive-intel/SKILL.md +619 -0
- package/plugins/marketing/skills/data-pipeline/SKILL.md +623 -0
- package/plugins/marketing/skills/manifest.json +52 -0
- package/plugins/marketing/skills/performance-digest/SKILL.md +531 -0
- package/plugins/marketing/skills/qa-protocol/SKILL.md +518 -0
- package/plugins/marketing/skills/review-synthesis/SKILL.md +523 -0
- package/plugins/sdlc/.claude-plugin/plugin.json +24 -0
- package/plugins/sdlc/README.md +37 -0
- package/plugins/sdlc/agents/accessibility-specialist.md +447 -0
- package/plugins/sdlc/agents/agent-template.md +10 -0
- package/plugins/sdlc/agents/agentsmith.md +239 -0
- package/plugins/sdlc/agents/api-designer.md +30 -0
- package/plugins/sdlc/agents/api-documenter.md +622 -0
- package/plugins/sdlc/agents/architecture-designer.md +597 -0
- package/plugins/sdlc/agents/architecture-documenter.md +539 -0
- package/plugins/sdlc/agents/build-engineer.md +41 -0
- package/plugins/sdlc/agents/business-process-analyst.md +45 -0
- package/plugins/sdlc/agents/cloud-architect.md +416 -0
- package/plugins/sdlc/agents/code-reviewer.md +170 -0
- package/plugins/sdlc/agents/commandsmith.md +297 -0
- package/plugins/sdlc/agents/component-owner.md +42 -0
- package/plugins/sdlc/agents/configuration-manager.md +42 -0
- package/plugins/sdlc/agents/context-librarian.md +38 -0
- package/plugins/sdlc/agents/database-optimizer.md +512 -0
- package/plugins/sdlc/agents/debugger.md +294 -0
- package/plugins/sdlc/agents/decision-matrix-expert.md +66 -0
- package/plugins/sdlc/agents/deployment-manager.md +42 -0
- package/plugins/sdlc/agents/devops-engineer.md +743 -0
- package/plugins/sdlc/agents/documentation-archivist.md +546 -0
- package/plugins/sdlc/agents/documentation-synthesizer.md +429 -0
- package/plugins/sdlc/agents/domain-expert.md +41 -0
- package/plugins/sdlc/agents/environment-engineer.md +41 -0
- package/plugins/sdlc/agents/executive-orchestrator.md +88 -0
- package/plugins/sdlc/agents/factory-compat.md +284 -0
- package/plugins/sdlc/agents/incident-responder.md +453 -0
- package/plugins/sdlc/agents/intake-coordinator.md +30 -0
- package/plugins/sdlc/agents/integration-engineer.md +43 -0
- package/plugins/sdlc/agents/legacy-modernizer.md +481 -0
- package/plugins/sdlc/agents/legal-liaison.md +41 -0
- package/plugins/sdlc/agents/manifest.json +67 -0
- package/plugins/sdlc/agents/mcpsmith.md +473 -0
- package/plugins/sdlc/agents/metrics-analyst.md +42 -0
- package/plugins/sdlc/agents/mutation-analyst.md +231 -0
- package/plugins/sdlc/agents/openai-compat.md +43 -0
- package/plugins/sdlc/agents/performance-engineer.md +476 -0
- package/plugins/sdlc/agents/privacy-officer.md +34 -0
- package/plugins/sdlc/agents/product-designer.md +41 -0
- package/plugins/sdlc/agents/product-strategist.md +42 -0
- package/plugins/sdlc/agents/project-manager.md +41 -0
- package/plugins/sdlc/agents/raci-expert.md +47 -0
- package/plugins/sdlc/agents/reliability-engineer.md +34 -0
- package/plugins/sdlc/agents/requirements-analyst.md +581 -0
- package/plugins/sdlc/agents/requirements-documenter.md +463 -0
- package/plugins/sdlc/agents/requirements-reviewer.md +42 -0
- package/plugins/sdlc/agents/security-architect.md +52 -0
- package/plugins/sdlc/agents/security-auditor.md +499 -0
- package/plugins/sdlc/agents/security-gatekeeper.md +40 -0
- package/plugins/sdlc/agents/skillsmith.md +259 -0
- package/plugins/sdlc/agents/software-implementer.md +132 -0
- package/plugins/sdlc/agents/support-lead.md +41 -0
- package/plugins/sdlc/agents/system-analyst.md +43 -0
- package/plugins/sdlc/agents/technical-researcher.md +400 -0
- package/plugins/sdlc/agents/technical-writer.md +473 -0
- package/plugins/sdlc/agents/test-architect.md +164 -0
- package/plugins/sdlc/agents/test-documenter.md +529 -0
- package/plugins/sdlc/agents/test-engineer.md +322 -0
- package/plugins/sdlc/agents/toolsmith-dynamic.md +414 -0
- package/plugins/sdlc/agents/toolsmith-provider.md +223 -0
- package/plugins/sdlc/agents/toolsmith.md +41 -0
- package/plugins/sdlc/agents/traceability-manager.md +33 -0
- package/plugins/sdlc/agents/ux-lead.md +41 -0
- package/plugins/sdlc/agents/vision-owner.md +42 -0
- package/plugins/sdlc/agents/windsurf-compat.md +229 -0
- package/plugins/sdlc/commands/aiwg-kb.md +207 -0
- package/plugins/sdlc/commands/aiwg-setup-project.md +484 -0
- package/plugins/sdlc/commands/aiwg-setup-warp.md +471 -0
- package/plugins/sdlc/commands/aiwg-update-agents-md.md +759 -0
- package/plugins/sdlc/commands/aiwg-update-claude.md +564 -0
- package/plugins/sdlc/commands/aiwg-update-warp.md +700 -0
- package/plugins/sdlc/commands/build-artifact-index.md +23 -0
- package/plugins/sdlc/commands/build-poc.md +507 -0
- package/plugins/sdlc/commands/check-traceability.md +21 -0
- package/plugins/sdlc/commands/create-prd.md +38 -0
- package/plugins/sdlc/commands/flow-architecture-evolution.md +868 -0
- package/plugins/sdlc/commands/flow-change-control.md +1045 -0
- package/plugins/sdlc/commands/flow-compliance-validation.md +1377 -0
- package/plugins/sdlc/commands/flow-concept-to-inception.md +927 -0
- package/plugins/sdlc/commands/flow-construction-to-transition.md +1023 -0
- package/plugins/sdlc/commands/flow-cross-team-sync.md +969 -0
- package/plugins/sdlc/commands/flow-delivery-track.md +963 -0
- package/plugins/sdlc/commands/flow-deploy-to-production.md +1231 -0
- package/plugins/sdlc/commands/flow-discovery-track.md +991 -0
- package/plugins/sdlc/commands/flow-elaboration-to-construction.md +1005 -0
- package/plugins/sdlc/commands/flow-gate-check.md +740 -0
- package/plugins/sdlc/commands/flow-handoff-checklist.md +882 -0
- package/plugins/sdlc/commands/flow-hypercare-monitoring.md +1212 -0
- package/plugins/sdlc/commands/flow-inception-to-elaboration.md +1262 -0
- package/plugins/sdlc/commands/flow-incident-response.md +1421 -0
- package/plugins/sdlc/commands/flow-iteration-dual-track.md +956 -0
- package/plugins/sdlc/commands/flow-knowledge-transfer.md +1045 -0
- package/plugins/sdlc/commands/flow-performance-optimization.md +961 -0
- package/plugins/sdlc/commands/flow-requirements-evolution.md +981 -0
- package/plugins/sdlc/commands/flow-retrospective-cycle.md +998 -0
- package/plugins/sdlc/commands/flow-risk-management-cycle.md +1185 -0
- package/plugins/sdlc/commands/flow-security-review-cycle.md +318 -0
- package/plugins/sdlc/commands/flow-team-onboarding.md +947 -0
- package/plugins/sdlc/commands/flow-test-strategy-execution.md +904 -0
- package/plugins/sdlc/commands/gap-analysis.md +642 -0
- package/plugins/sdlc/commands/generate-tests.md +74 -0
- package/plugins/sdlc/commands/intake-from-codebase.md +1292 -0
- package/plugins/sdlc/commands/intake-start.md +811 -0
- package/plugins/sdlc/commands/intake-wizard.md +1689 -0
- package/plugins/sdlc/commands/manifest.json +55 -0
- package/plugins/sdlc/commands/orchestrate-project.md +30 -0
- package/plugins/sdlc/commands/pr-review.md +53 -0
- package/plugins/sdlc/commands/project-health-check.md +276 -0
- package/plugins/sdlc/commands/project-status.md +691 -0
- package/plugins/sdlc/commands/project-timeline-simulator.md +413 -0
- package/plugins/sdlc/commands/retrospective-analyzer.md +333 -0
- package/plugins/sdlc/commands/security-audit.md +73 -0
- package/plugins/sdlc/commands/security-gate.md +20 -0
- package/plugins/sdlc/commands/setup-tdd.md +254 -0
- package/plugins/sdlc/commands/smith-agenticdef.md +213 -0
- package/plugins/sdlc/commands/smith-mcpdef.md +314 -0
- package/plugins/sdlc/commands/smith-sysdef.md +333 -0
- package/plugins/sdlc/commands/templates/agent-command-template.md +343 -0
- package/plugins/sdlc/commands/templates/basic-command-template.md +249 -0
- package/plugins/sdlc/commands/templates/manifest.json +14 -0
- package/plugins/sdlc/commands/troubleshooting-guide.md +361 -0
- package/plugins/sdlc/skills/architecture-evolution/SKILL.md +542 -0
- package/plugins/sdlc/skills/artifact-orchestration/SKILL.md +293 -0
- package/plugins/sdlc/skills/decision-support/SKILL.md +459 -0
- package/plugins/sdlc/skills/gap-analysis/SKILL.md +651 -0
- package/plugins/sdlc/skills/gate-evaluation/SKILL.md +417 -0
- package/plugins/sdlc/skills/incident-triage/SKILL.md +538 -0
- package/plugins/sdlc/skills/manifest.json +66 -0
- package/plugins/sdlc/skills/risk-cycle/SKILL.md +592 -0
- package/plugins/sdlc/skills/sdlc-reports/SKILL.md +558 -0
- package/plugins/sdlc/skills/security-assessment/SKILL.md +370 -0
- package/plugins/sdlc/skills/test-coverage/SKILL.md +469 -0
- package/plugins/sdlc/skills/traceability-check/SKILL.md +390 -0
- package/plugins/utils/.claude-plugin/plugin.json +21 -0
- package/plugins/utils/README.md +35 -0
- package/plugins/utils/agents/aiwg-developer.md +207 -0
- package/plugins/utils/agents/consortium-coordinator.md +150 -0
- package/plugins/utils/agents/context-regenerator.md +209 -0
- package/plugins/utils/agents/self-debug.md +232 -0
- package/plugins/utils/commands/aiwg-refresh.md +341 -0
- package/plugins/utils/commands/aiwg-regenerate-agents.md +353 -0
- package/plugins/utils/commands/aiwg-regenerate-claude.md +535 -0
- package/plugins/utils/commands/aiwg-regenerate-copilot.md +291 -0
- package/plugins/utils/commands/aiwg-regenerate-cursorrules.md +216 -0
- package/plugins/utils/commands/aiwg-regenerate-factory.md +27 -0
- package/plugins/utils/commands/aiwg-regenerate-warp.md +236 -0
- package/plugins/utils/commands/aiwg-regenerate-windsurfrules.md +212 -0
- package/plugins/utils/commands/aiwg-regenerate.md +368 -0
- package/plugins/utils/commands/commit-and-push.md +566 -0
- package/plugins/utils/commands/deploy-gen.md +165 -0
- package/plugins/utils/commands/devkit-create-addon.md +84 -0
- package/plugins/utils/commands/devkit-create-agent.md +168 -0
- package/plugins/utils/commands/devkit-create-command.md +131 -0
- package/plugins/utils/commands/devkit-create-extension.md +106 -0
- package/plugins/utils/commands/devkit-create-framework.md +145 -0
- package/plugins/utils/commands/devkit-create-skill.md +207 -0
- package/plugins/utils/commands/devkit-test.md +191 -0
- package/plugins/utils/commands/devkit-validate.md +153 -0
- package/plugins/utils/commands/mention-conventions.md +161 -0
- package/plugins/utils/commands/mention-lint.md +118 -0
- package/plugins/utils/commands/mention-report.md +115 -0
- package/plugins/utils/commands/mention-validate.md +75 -0
- package/plugins/utils/commands/mention-wire.md +135 -0
- package/plugins/utils/commands/parallel-dispatch.md +224 -0
- package/plugins/utils/commands/roko-voice.md +400 -0
- package/plugins/utils/commands/summarize-transcript.md +313 -0
- package/plugins/utils/commands/workspace-prune-working.md +360 -0
- package/plugins/utils/commands/workspace-realign.md +393 -0
- package/plugins/utils/commands/workspace-reset.md +338 -0
- package/plugins/utils/skills/artifact-metadata/SKILL.md +281 -0
- package/plugins/utils/skills/artifact-metadata/scripts/artifact_metadata.py +623 -0
- package/plugins/utils/skills/claims-validator/SKILL.md +250 -0
- package/plugins/utils/skills/config-validator/SKILL.md +502 -0
- package/plugins/utils/skills/manifest.json +53 -0
- package/plugins/utils/skills/nl-router/SKILL.md +478 -0
- package/plugins/utils/skills/parallel-dispatch/SKILL.md +269 -0
- package/plugins/utils/skills/parallel-dispatch/scripts/parallel_dispatcher.py +444 -0
- package/plugins/utils/skills/project-awareness/SKILL.md +362 -0
- package/plugins/utils/skills/project-awareness/references/phase-guide.md +47 -0
- package/plugins/utils/skills/project-awareness/scripts/project_awareness.py +645 -0
- package/plugins/utils/skills/project-awareness/scripts/status_check.py +218 -0
- package/plugins/utils/skills/template-engine/SKILL.md +321 -0
- package/plugins/utils/skills/template-engine/scripts/template_engine.py +550 -0
- package/plugins/utils/skills/workspace-health/SKILL.md +148 -0
- package/plugins/voice/.claude-plugin/plugin.json +21 -0
- package/plugins/voice/README.md +35 -0
- package/plugins/voice/skills/manifest.json +35 -0
- package/plugins/voice/skills/voice-analyze/SKILL.md +219 -0
- package/plugins/voice/skills/voice-analyze/scripts/voice_analyzer.py +561 -0
- package/plugins/voice/skills/voice-apply/SKILL.md +192 -0
- package/plugins/voice/skills/voice-apply/references/voice-dimensions.md +57 -0
- package/plugins/voice/skills/voice-apply/scripts/voice_loader.py +264 -0
- package/plugins/voice/skills/voice-blend/SKILL.md +168 -0
- package/plugins/voice/skills/voice-blend/scripts/voice_blender.py +438 -0
- package/plugins/voice/skills/voice-create/SKILL.md +148 -0
- package/plugins/voice/skills/voice-create/scripts/voice_generator.py +429 -0
- package/plugins/voice/voices/templates/casual-conversational.yaml +80 -0
- package/plugins/voice/voices/templates/ethical-cypherpunk.yaml +111 -0
- package/plugins/voice/voices/templates/executive-brief.yaml +86 -0
- package/plugins/voice/voices/templates/friendly-explainer.yaml +80 -0
- package/plugins/voice/voices/templates/technical-authority.yaml +84 -0
- package/plugins/writing/.claude-plugin/plugin.json +20 -0
- package/plugins/writing/README.md +30 -0
- package/plugins/writing/agents/content-diversifier.md +437 -0
- package/plugins/writing/agents/prompt-optimizer.md +585 -0
- package/plugins/writing/agents/writing-validator.md +255 -0
- package/plugins/writing/skills/ai-pattern-detection/SKILL.md +101 -0
- package/plugins/writing/skills/ai-pattern-detection/references/quick-patterns.md +30 -0
- package/plugins/writing/skills/ai-pattern-detection/scripts/pattern_scanner.py +231 -0
- package/src/agents/agent-deployer.ts +4 -1
- package/src/agents/agent-packager.ts +56 -0
- package/src/agents/types.ts +16 -1
- package/src/catalog/builtin-models.json +392 -0
- package/src/catalog/cli.mjs +289 -0
- package/src/catalog/cli.ts +289 -0
- package/src/catalog/index.ts +15 -0
- package/src/catalog/loader.mjs +251 -0
- package/src/catalog/loader.ts +261 -0
- package/src/catalog/sources.json +41 -0
- package/src/catalog/types.ts +150 -0
- package/src/cli/index.mjs +329 -53
- package/src/mcp/cli.mjs +152 -4
- package/src/models/config-loader.ts +275 -0
- package/src/models/index.ts +48 -0
- package/src/models/resolver.ts +319 -0
- package/src/models/types.ts +243 -0
- package/src/plugin/framework-migration.ts +1 -6
- package/src/smiths/agentsmith/IMPLEMENTATION.md +440 -0
- package/src/smiths/agentsmith/QUICKSTART.md +269 -0
- package/src/smiths/agentsmith/README.md +332 -0
- package/src/smiths/agentsmith/cli-integration-example.md +323 -0
- package/src/smiths/agentsmith/demo.ts +131 -0
- package/src/smiths/agentsmith/examples.ts +336 -0
- package/src/smiths/agentsmith/generator.ts +553 -0
- package/src/smiths/agentsmith/index.ts +14 -0
- package/src/smiths/agentsmith/types.ts +162 -0
- package/src/smiths/commandsmith/README.md +433 -0
- package/src/smiths/commandsmith/example.ts +269 -0
- package/src/smiths/commandsmith/generator.ts +320 -0
- package/src/smiths/commandsmith/index.ts +80 -0
- package/src/smiths/commandsmith/templates.ts +349 -0
- package/src/smiths/commandsmith/types.ts +142 -0
- package/src/smiths/index.ts +49 -0
- package/src/smiths/mcpsmith/README.md +138 -0
- package/src/smiths/mcpsmith/analyzers/cli-analyzer.ts +458 -0
- package/src/smiths/mcpsmith/example.ts +135 -0
- package/src/smiths/mcpsmith/generator.ts +306 -0
- package/src/smiths/mcpsmith/index.ts +17 -0
- package/src/smiths/mcpsmith/types.ts +357 -0
- package/src/smiths/platform-paths.ts +148 -0
- package/src/smiths/skillsmith/IMPLEMENTATION.md +231 -0
- package/src/smiths/skillsmith/README.md +304 -0
- package/src/smiths/skillsmith/demo.ts +95 -0
- package/src/smiths/skillsmith/examples.ts +190 -0
- package/src/smiths/skillsmith/generator.ts +353 -0
- package/src/smiths/skillsmith/index.ts +11 -0
- package/src/smiths/skillsmith/platform-resolver.ts +157 -0
- package/src/smiths/skillsmith/types.ts +161 -0
- package/src/smiths/toolsmith/index.ts +10 -0
- package/src/smiths/toolsmith/runtime-discovery.mjs +704 -0
- package/src/smiths/toolsmith/types.ts +212 -0
- package/src/writing/scoring-config-loader.ts +216 -0
- package/src/writing/validation-engine.ts +27 -15
- package/src/writing/voice-analyzer.ts +13 -8
- package/src/writing/voice-calibration.ts +2 -9
- package/templates/agent-scaffolding/README.md +69 -0
- package/templates/agent-scaffolding/complex.md +188 -0
- package/templates/agent-scaffolding/orchestrator.md +176 -0
- package/templates/agent-scaffolding/simple.md +43 -0
- package/templates/agent-scaffolding/validator.md +191 -0
- package/templates/contrib/README.md +127 -0
- package/templates/contrib/feature-checklist.md +100 -0
- package/templates/contrib/intake-template.md +76 -0
- package/templates/contrib/pr-template.md +28 -0
- package/templates/deploy/README.md +93 -0
- package/templates/deploy/docker/node.Dockerfile +77 -0
- package/templates/deploy/docker/python.Dockerfile +68 -0
- package/templates/deploy/kubernetes/deployment.yaml +92 -0
- package/templates/deploy/kubernetes/service.yaml +18 -0
- package/tools/agents/deploy-agents.mjs +336 -881
- package/tools/agents/deploy-windsurf.mjs +749 -0
- package/tools/agents/manifest.json +3 -3
- package/tools/agents/providers/base.mjs +625 -0
- package/tools/agents/providers/claude.mjs +401 -0
- package/tools/agents/providers/codex.mjs +369 -0
- package/tools/agents/providers/copilot.mjs +427 -0
- package/tools/agents/providers/cursor.mjs +178 -0
- package/tools/agents/providers/factory.mjs +539 -0
- package/tools/agents/providers/opencode.mjs +396 -0
- package/tools/agents/providers/warp.mjs +167 -0
- package/tools/agents/providers/windsurf.mjs +501 -0
- package/tools/commands/deploy-prompts-codex.mjs +302 -0
- package/tools/install/install.sh +4 -0
- package/tools/manifest/enrich-manifests.mjs +6 -9
- package/tools/manifest/generate-manifest.mjs +5 -17
- package/tools/manifest/manifest.json +0 -3
- package/tools/manifest/sync-manifests.mjs +9 -25
- package/tools/plugin/package-plugins.mjs +492 -0
- package/tools/ralph/ralph-abort.mjs +86 -0
- package/tools/ralph/ralph-cli.mjs +281 -0
- package/tools/ralph/ralph-resume.mjs +106 -0
- package/tools/ralph/ralph-status.mjs +102 -0
- package/tools/rules/deploy-rules-cursor.mjs +332 -0
- package/tools/scaffolding/scaffold-framework.mjs +0 -4
- package/tools/skills/deploy-skills-codex.mjs +319 -0
- package/agentic/code/addons/writing-quality/context/manifest.md +0 -11
- package/agentic/code/addons/writing-quality/core/README.md +0 -8
- package/agentic/code/addons/writing-quality/core/manifest.md +0 -10
- package/agentic/code/addons/writing-quality/examples/README.md +0 -8
- package/agentic/code/addons/writing-quality/examples/manifest.md +0 -10
- package/agentic/code/addons/writing-quality/patterns/README.md +0 -7
- package/agentic/code/addons/writing-quality/patterns/manifest.md +0 -9
- package/agentic/code/addons/writing-quality/validation/README.md +0 -26
- package/agentic/code/addons/writing-quality/validation/manifest.md +0 -10
- package/agentic/code/frameworks/sdlc-complete/agents/README.md +0 -22
- package/agentic/code/frameworks/sdlc-complete/agents/manifest.md +0 -62
- package/agentic/code/frameworks/sdlc-complete/artifacts/README.md +0 -7
- package/agentic/code/frameworks/sdlc-complete/artifacts/manifest.md +0 -8
- package/agentic/code/frameworks/sdlc-complete/artifacts/sample-project/README.md +0 -13
- package/agentic/code/frameworks/sdlc-complete/artifacts/sample-project/management/manifest.md +0 -8
- package/agentic/code/frameworks/sdlc-complete/artifacts/sample-project/manifest.md +0 -8
- package/agentic/code/frameworks/sdlc-complete/artifacts/sample-project/reliability/manifest.md +0 -8
- package/agentic/code/frameworks/sdlc-complete/artifacts/sample-project/reports/manifest.md +0 -9
- package/agentic/code/frameworks/sdlc-complete/artifacts/sample-project/requirements/manifest.md +0 -8
- package/agentic/code/frameworks/sdlc-complete/artifacts/sample-project/security/manifest.md +0 -8
- package/agentic/code/frameworks/sdlc-complete/artifacts/sample-project/traceability/manifest.md +0 -8
- package/agentic/code/frameworks/sdlc-complete/commands/manifest.md +0 -50
- package/agentic/code/frameworks/sdlc-complete/commands/templates/README.md +0 -8
- package/agentic/code/frameworks/sdlc-complete/commands/templates/manifest.md +0 -10
- package/agentic/code/frameworks/sdlc-complete/flows/README.md +0 -13
- package/agentic/code/frameworks/sdlc-complete/flows/manifest.md +0 -15
- package/agentic/code/frameworks/sdlc-complete/manifest.md +0 -10
- package/agentic/code/frameworks/sdlc-complete/src/testing/mocks/git-sandbox.ts +0 -402
- package/agentic/code/frameworks/sdlc-complete/templates/README.md +0 -43
- package/agentic/code/frameworks/sdlc-complete/templates/analysis-design/README.md +0 -11
- package/agentic/code/frameworks/sdlc-complete/templates/analysis-design/manifest.md +0 -15
- package/agentic/code/frameworks/sdlc-complete/templates/business-modeling/README.md +0 -14
- package/agentic/code/frameworks/sdlc-complete/templates/business-modeling/manifest.md +0 -16
- package/agentic/code/frameworks/sdlc-complete/templates/configuration/README.md +0 -9
- package/agentic/code/frameworks/sdlc-complete/templates/configuration/manifest.md +0 -13
- package/agentic/code/frameworks/sdlc-complete/templates/deployment/manifest.md +0 -20
- package/agentic/code/frameworks/sdlc-complete/templates/environments/README.md +0 -14
- package/agentic/code/frameworks/sdlc-complete/templates/environments/manifest.md +0 -17
- package/agentic/code/frameworks/sdlc-complete/templates/governance/README.md +0 -20
- package/agentic/code/frameworks/sdlc-complete/templates/governance/manifest.md +0 -12
- package/agentic/code/frameworks/sdlc-complete/templates/implementation/README.md +0 -9
- package/agentic/code/frameworks/sdlc-complete/templates/implementation/manifest.md +0 -11
- package/agentic/code/frameworks/sdlc-complete/templates/intake/README.md +0 -9
- package/agentic/code/frameworks/sdlc-complete/templates/intake/manifest.md +0 -11
- package/agentic/code/frameworks/sdlc-complete/templates/management/README.md +0 -24
- package/agentic/code/frameworks/sdlc-complete/templates/management/manifest.md +0 -34
- package/agentic/code/frameworks/sdlc-complete/templates/manifest.md +0 -10
- package/agentic/code/frameworks/sdlc-complete/templates/reliability/README.md +0 -12
- package/agentic/code/frameworks/sdlc-complete/templates/reliability/manifest.md +0 -13
- package/agentic/code/frameworks/sdlc-complete/templates/requirements/README.md +0 -21
- package/agentic/code/frameworks/sdlc-complete/templates/requirements/manifest.md +0 -24
- package/agentic/code/frameworks/sdlc-complete/templates/security/README.md +0 -18
- package/agentic/code/frameworks/sdlc-complete/templates/security/manifest.md +0 -19
- package/agentic/code/frameworks/sdlc-complete/templates/test/README.md +0 -13
- package/agentic/code/frameworks/sdlc-complete/templates/test/manifest.md +0 -18
- package/agentic/code/frameworks/sdlc-complete/test/unit/testing/mocks/git-sandbox.test.ts +0 -613
- package/docs/_config.yml +0 -5
- package/docs/commands/examples/README.md +0 -7
- package/docs/commands/examples/manifest.json +0 -13
- package/docs/commands/examples/manifest.md +0 -9
- package/docs/commands/subagents-README.md +0 -7
- package/docs/index.md +0 -106
- package/docs/reference/ORCHESTRATOR_GUIDE.md +0 -247
- package/tools/README.md +0 -8
- package/tools/agents/README.md +0 -28
- package/tools/agents/deploy-agents-old.mjs +0 -268
- package/tools/agents/manifest.md +0 -10
- package/tools/cards/README.md +0 -31
- package/tools/cards/manifest.md +0 -8
- package/tools/cli/aiwg.mjs +0 -461
- package/tools/cli/demo.mjs +0 -204
- package/tools/cli/deploy-agents.mjs +0 -273
- package/tools/index/README.md +0 -3
- package/tools/index/manifest.md +0 -8
- package/tools/install/manifest.md +0 -9
- package/tools/manifest/README.md +0 -40
- package/tools/manifest/manifest.md +0 -13
- /package/docs/commands/{examples/development-commands.md → development-commands-examples.md} +0 -0
|
@@ -0,0 +1,1005 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: Orchestrate Elaboration→Construction phase transition with iteration planning, team scaling, and full-scale development kickoff
|
|
3
|
+
category: sdlc-orchestration
|
|
4
|
+
argument-hint: [project-directory] [--guidance "text"] [--interactive]
|
|
5
|
+
allowed-tools: Task, Read, Write, Glob, TodoWrite
|
|
6
|
+
orchestration: true
|
|
7
|
+
model: opus
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
# Elaboration → Construction Phase Transition Flow
|
|
11
|
+
|
|
12
|
+
**You are the Core Orchestrator** for the critical Elaboration→Construction phase transition.
|
|
13
|
+
|
|
14
|
+
## Your Role
|
|
15
|
+
|
|
16
|
+
**You orchestrate multi-agent workflows. You do NOT execute bash scripts.**
|
|
17
|
+
|
|
18
|
+
When the user requests this flow (via natural language or explicit command):
|
|
19
|
+
|
|
20
|
+
1. **Interpret the request** and confirm understanding
|
|
21
|
+
2. **Read this template** as your orchestration guide
|
|
22
|
+
3. **Extract agent assignments** and workflow steps
|
|
23
|
+
4. **Launch agents via Task tool** in correct sequence
|
|
24
|
+
5. **Synthesize results** and finalize artifacts
|
|
25
|
+
6. **Report completion** with summary
|
|
26
|
+
|
|
27
|
+
## Phase Transition Overview
|
|
28
|
+
|
|
29
|
+
**From**: Elaboration (architecture proven, risks retired)
|
|
30
|
+
**To**: Construction (full-scale iterative development)
|
|
31
|
+
|
|
32
|
+
**Key Milestone**: Construction Phase Entry
|
|
33
|
+
|
|
34
|
+
**Success Criteria**:
|
|
35
|
+
- Architecture baselined and stable
|
|
36
|
+
- First 2 iterations planned with ready backlog
|
|
37
|
+
- Development process tailored and team trained
|
|
38
|
+
- CI/CD pipeline operational
|
|
39
|
+
- Iteration 0 (infrastructure) complete
|
|
40
|
+
|
|
41
|
+
**Expected Duration**: 1-2 weeks setup, 15-20 minutes orchestration
|
|
42
|
+
|
|
43
|
+
## Natural Language Triggers
|
|
44
|
+
|
|
45
|
+
Users may say:
|
|
46
|
+
- "Transition to Construction"
|
|
47
|
+
- "Start Construction phase"
|
|
48
|
+
- "Begin building"
|
|
49
|
+
- "Move to Construction"
|
|
50
|
+
- "Scale up for Construction"
|
|
51
|
+
- "Start full development"
|
|
52
|
+
|
|
53
|
+
You recognize these as requests for this orchestration flow.
|
|
54
|
+
|
|
55
|
+
## Parameter Handling
|
|
56
|
+
|
|
57
|
+
### --guidance Parameter
|
|
58
|
+
|
|
59
|
+
**Purpose**: User provides upfront direction to tailor orchestration priorities
|
|
60
|
+
|
|
61
|
+
**Examples**:
|
|
62
|
+
```
|
|
63
|
+
--guidance "Team scaling from 5 to 20 developers, need extensive onboarding"
|
|
64
|
+
--guidance "Fast track, minimal documentation, focus on delivery"
|
|
65
|
+
--guidance "Offshore team joining, need extra process documentation"
|
|
66
|
+
--guidance "Complex integrations, need thorough environment setup"
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
**How to Apply**:
|
|
70
|
+
- Parse guidance for keywords: scaling, timeline, team, infrastructure
|
|
71
|
+
- Adjust agent assignments (add environment-engineer for complex setup)
|
|
72
|
+
- Modify artifact depth (comprehensive vs minimal documentation)
|
|
73
|
+
- Influence priority ordering (infrastructure vs process focus)
|
|
74
|
+
|
|
75
|
+
### --interactive Parameter
|
|
76
|
+
|
|
77
|
+
**Purpose**: You ask 5-8 strategic questions to understand project context
|
|
78
|
+
|
|
79
|
+
**Questions to Ask** (if --interactive):
|
|
80
|
+
|
|
81
|
+
```
|
|
82
|
+
I'll ask 6 strategic questions to tailor the Construction transition to your needs:
|
|
83
|
+
|
|
84
|
+
Q1: What's your team scaling plan?
|
|
85
|
+
(e.g., 5→20 developers, gradual vs immediate, onshore/offshore mix)
|
|
86
|
+
|
|
87
|
+
Q2: What are your infrastructure priorities?
|
|
88
|
+
(Help me focus Iteration 0 on critical infrastructure needs)
|
|
89
|
+
|
|
90
|
+
Q3: What's your iteration cadence preference?
|
|
91
|
+
(1 week, 2 weeks, 3 weeks - affects planning depth)
|
|
92
|
+
|
|
93
|
+
Q4: How mature is your CI/CD pipeline?
|
|
94
|
+
(Determines infrastructure setup focus)
|
|
95
|
+
|
|
96
|
+
Q5: What's your biggest concern for Construction?
|
|
97
|
+
(e.g., quality, velocity, team coordination, technical debt)
|
|
98
|
+
|
|
99
|
+
Q6: Do you need specialized environments?
|
|
100
|
+
(e.g., compliance environments, performance testing, security scanning)
|
|
101
|
+
|
|
102
|
+
Based on your answers, I'll adjust:
|
|
103
|
+
- Agent assignments (infrastructure vs process focus)
|
|
104
|
+
- Iteration planning depth (detailed vs high-level)
|
|
105
|
+
- Onboarding materials (comprehensive vs minimal)
|
|
106
|
+
- Environment setup complexity
|
|
107
|
+
```
|
|
108
|
+
|
|
109
|
+
**Synthesize Guidance**: Combine answers into structured guidance string for execution
|
|
110
|
+
|
|
111
|
+
## Artifacts to Generate
|
|
112
|
+
|
|
113
|
+
**Primary Deliverables**:
|
|
114
|
+
- **ABM Validation Report**: Elaboration exit criteria → `.aiwg/reports/abm-validation-report.md`
|
|
115
|
+
- **Iteration 0 Completion Report**: Infrastructure readiness → `.aiwg/reports/iteration-0-completion.md`
|
|
116
|
+
- **Development Process Guide**: Tailored process → `.aiwg/planning/development-process-guide.md`
|
|
117
|
+
- **Iteration Plan - Sprint 1**: First iteration → `.aiwg/planning/iteration-plan-001.md`
|
|
118
|
+
- **Iteration Plan - Sprint 2**: Second iteration → `.aiwg/planning/iteration-plan-002.md`
|
|
119
|
+
- **Team Onboarding Guide**: New member guide → `.aiwg/team/onboarding-guide.md`
|
|
120
|
+
- **Architecture Stability Report**: Change tracking → `.aiwg/reports/architecture-stability-report.md`
|
|
121
|
+
- **Construction Readiness Report**: Final go/no-go → `.aiwg/reports/construction-readiness-report.md`
|
|
122
|
+
|
|
123
|
+
**Supporting Artifacts**:
|
|
124
|
+
- Environment setup scripts
|
|
125
|
+
- CI/CD pipeline configurations
|
|
126
|
+
- Team RACI matrix updates
|
|
127
|
+
- Dual-track workflow setup
|
|
128
|
+
|
|
129
|
+
## Multi-Agent Orchestration Workflow
|
|
130
|
+
|
|
131
|
+
### Step 1: Validate Architecture Baseline Milestone (ABM)
|
|
132
|
+
|
|
133
|
+
**Purpose**: Verify Elaboration phase complete before starting Construction
|
|
134
|
+
|
|
135
|
+
**Your Actions**:
|
|
136
|
+
|
|
137
|
+
1. **Check for Required Elaboration Artifacts**:
|
|
138
|
+
```
|
|
139
|
+
Read and verify presence of:
|
|
140
|
+
- .aiwg/architecture/software-architecture-doc.md
|
|
141
|
+
- .aiwg/architecture/adr/*.md
|
|
142
|
+
- .aiwg/requirements/supplemental-specification.md
|
|
143
|
+
- .aiwg/testing/master-test-plan.md
|
|
144
|
+
- .aiwg/risks/risk-list.md (≥70% retired)
|
|
145
|
+
```
|
|
146
|
+
|
|
147
|
+
2. **Launch ABM Validation Agent**:
|
|
148
|
+
```
|
|
149
|
+
Task(
|
|
150
|
+
subagent_type="project-manager",
|
|
151
|
+
description="Validate Architecture Baseline Milestone criteria",
|
|
152
|
+
prompt="""
|
|
153
|
+
Read gate criteria from: $AIWG_ROOT/agentic/code/frameworks/sdlc-complete/flows/gate-criteria-by-phase.md
|
|
154
|
+
|
|
155
|
+
Validate ABM criteria:
|
|
156
|
+
- Software Architecture Document BASELINED
|
|
157
|
+
- Executable architecture baseline OPERATIONAL
|
|
158
|
+
- All P0/P1 architectural risks RETIRED/MITIGATED
|
|
159
|
+
- ≥70% of all risks retired or mitigated
|
|
160
|
+
- Requirements baseline ESTABLISHED (≥10 use cases)
|
|
161
|
+
- Master Test Plan APPROVED
|
|
162
|
+
- Development Case tailored
|
|
163
|
+
- Test environments OPERATIONAL
|
|
164
|
+
|
|
165
|
+
Generate ABM Validation Report:
|
|
166
|
+
- Status: PASS | FAIL
|
|
167
|
+
- Criteria checklist with evidence
|
|
168
|
+
- Decision: GO to Construction | NO-GO
|
|
169
|
+
- Gaps (if NO-GO): List missing artifacts
|
|
170
|
+
|
|
171
|
+
Save to: .aiwg/reports/abm-validation-report.md
|
|
172
|
+
"""
|
|
173
|
+
)
|
|
174
|
+
```
|
|
175
|
+
|
|
176
|
+
3. **Decision Point**:
|
|
177
|
+
- If ABM PASS → Continue to Step 2
|
|
178
|
+
- If ABM FAIL → Report gaps, recommend extending Elaboration
|
|
179
|
+
- Escalate to user for executive decision if criteria partially met
|
|
180
|
+
|
|
181
|
+
**Communicate Progress**:
|
|
182
|
+
```
|
|
183
|
+
✓ Initialized ABM validation
|
|
184
|
+
⏳ Validating Elaboration exit criteria...
|
|
185
|
+
✓ ABM Validation complete: [PASS | FAIL]
|
|
186
|
+
```
|
|
187
|
+
|
|
188
|
+
### Step 2: Execute Iteration 0 (Infrastructure Setup)
|
|
189
|
+
|
|
190
|
+
**Purpose**: Scale infrastructure for full Construction team
|
|
191
|
+
|
|
192
|
+
**Your Actions**:
|
|
193
|
+
|
|
194
|
+
1. **Launch Infrastructure Setup Agents** (parallel):
|
|
195
|
+
```
|
|
196
|
+
# Agent 1: DevOps Engineer
|
|
197
|
+
Task(
|
|
198
|
+
subagent_type="devops-engineer",
|
|
199
|
+
description="Setup CI/CD pipeline and environments",
|
|
200
|
+
prompt="""
|
|
201
|
+
Setup Construction infrastructure:
|
|
202
|
+
|
|
203
|
+
CI/CD Pipeline:
|
|
204
|
+
- Build automation (compile, package, containerize)
|
|
205
|
+
- Test automation (unit, integration, E2E)
|
|
206
|
+
- Deployment automation (dev, test, staging)
|
|
207
|
+
- Quality gates (coverage, security scans)
|
|
208
|
+
|
|
209
|
+
Environments:
|
|
210
|
+
- Development: Per-developer or shared
|
|
211
|
+
- Test: Shared integration environment
|
|
212
|
+
- Staging: Production-like validation
|
|
213
|
+
- Production: Provisioned (not deployed)
|
|
214
|
+
|
|
215
|
+
Document setup in: .aiwg/working/construction/infrastructure/ci-cd-setup.md
|
|
216
|
+
"""
|
|
217
|
+
)
|
|
218
|
+
|
|
219
|
+
# Agent 2: Build Engineer
|
|
220
|
+
Task(
|
|
221
|
+
subagent_type="build-engineer",
|
|
222
|
+
description="Configure build and artifact management",
|
|
223
|
+
prompt="""
|
|
224
|
+
Configure build infrastructure:
|
|
225
|
+
|
|
226
|
+
- Build scripts and configurations
|
|
227
|
+
- Dependency management
|
|
228
|
+
- Artifact repository setup
|
|
229
|
+
- Version control branching strategy
|
|
230
|
+
- Build optimization (caching, parallelization)
|
|
231
|
+
|
|
232
|
+
Document in: .aiwg/working/construction/infrastructure/build-config.md
|
|
233
|
+
"""
|
|
234
|
+
)
|
|
235
|
+
|
|
236
|
+
# Agent 3: Reliability Engineer
|
|
237
|
+
Task(
|
|
238
|
+
subagent_type="reliability-engineer",
|
|
239
|
+
description="Setup monitoring and observability",
|
|
240
|
+
prompt="""
|
|
241
|
+
Configure monitoring infrastructure:
|
|
242
|
+
|
|
243
|
+
- Application metrics (APM)
|
|
244
|
+
- Infrastructure metrics
|
|
245
|
+
- Log aggregation and retention
|
|
246
|
+
- Alerting rules and escalation
|
|
247
|
+
- Dashboard creation
|
|
248
|
+
- SLO/SLI definitions
|
|
249
|
+
|
|
250
|
+
Document in: .aiwg/working/construction/infrastructure/monitoring-setup.md
|
|
251
|
+
"""
|
|
252
|
+
)
|
|
253
|
+
|
|
254
|
+
# Agent 4: Environment Engineer
|
|
255
|
+
Task(
|
|
256
|
+
subagent_type="environment-engineer",
|
|
257
|
+
description="Setup development environment and tools",
|
|
258
|
+
prompt="""
|
|
259
|
+
Configure development environment:
|
|
260
|
+
|
|
261
|
+
- IDE configurations and plugins
|
|
262
|
+
- Local development setup (Docker, etc)
|
|
263
|
+
- Debugging tools
|
|
264
|
+
- Code quality tools (linters, formatters)
|
|
265
|
+
- Security scanning tools
|
|
266
|
+
- Collaboration tools (Slack, Jira, Wiki)
|
|
267
|
+
|
|
268
|
+
Create developer setup guide: .aiwg/working/construction/infrastructure/dev-environment-guide.md
|
|
269
|
+
"""
|
|
270
|
+
)
|
|
271
|
+
```
|
|
272
|
+
|
|
273
|
+
2. **Synthesize Infrastructure Report**:
|
|
274
|
+
```
|
|
275
|
+
Task(
|
|
276
|
+
subagent_type="devops-engineer",
|
|
277
|
+
description="Create Iteration 0 Completion Report",
|
|
278
|
+
prompt="""
|
|
279
|
+
Read all infrastructure setup documents:
|
|
280
|
+
- .aiwg/working/construction/infrastructure/*.md
|
|
281
|
+
|
|
282
|
+
Create comprehensive Iteration 0 Completion Report:
|
|
283
|
+
|
|
284
|
+
1. Version Control (repository, branching, access)
|
|
285
|
+
2. CI/CD Pipeline (build, test, deploy status)
|
|
286
|
+
3. Environments (dev, test, staging operational status)
|
|
287
|
+
4. Monitoring & Observability (metrics, logs, alerts)
|
|
288
|
+
5. Collaboration Tools (chat, tracking, documentation)
|
|
289
|
+
6. Security (secrets management, scanning)
|
|
290
|
+
7. Developer Tools (IDE, debugging, quality)
|
|
291
|
+
|
|
292
|
+
Include:
|
|
293
|
+
- Checklist of completed items
|
|
294
|
+
- Outstanding items (if any)
|
|
295
|
+
- Access instructions for team
|
|
296
|
+
- Overall status: COMPLETE | INCOMPLETE
|
|
297
|
+
|
|
298
|
+
Save to: .aiwg/reports/iteration-0-completion.md
|
|
299
|
+
"""
|
|
300
|
+
)
|
|
301
|
+
```
|
|
302
|
+
|
|
303
|
+
**Communicate Progress**:
|
|
304
|
+
```
|
|
305
|
+
⏳ Setting up Construction infrastructure (Iteration 0)...
|
|
306
|
+
✓ CI/CD pipeline configured
|
|
307
|
+
✓ Environments provisioned (dev, test, staging)
|
|
308
|
+
✓ Monitoring and observability operational
|
|
309
|
+
✓ Development tools configured
|
|
310
|
+
✓ Iteration 0 complete: Infrastructure ready for full team
|
|
311
|
+
```
|
|
312
|
+
|
|
313
|
+
### Step 3: Tailor Development Process and Create Onboarding
|
|
314
|
+
|
|
315
|
+
**Purpose**: Finalize process for Construction and prepare team scaling
|
|
316
|
+
|
|
317
|
+
**Your Actions**:
|
|
318
|
+
|
|
319
|
+
1. **Launch Process Definition Agents** (parallel):
|
|
320
|
+
```
|
|
321
|
+
# Agent 1: Project Manager
|
|
322
|
+
Task(
|
|
323
|
+
subagent_type="project-manager",
|
|
324
|
+
description="Tailor Development Case for Construction",
|
|
325
|
+
prompt="""
|
|
326
|
+
Create Development Process Guide:
|
|
327
|
+
|
|
328
|
+
Iteration Configuration:
|
|
329
|
+
- Length: {1 week | 2 weeks | 3 weeks}
|
|
330
|
+
- Ceremonies: Planning, Daily Standup, Review, Retrospective
|
|
331
|
+
- Schedules and durations
|
|
332
|
+
|
|
333
|
+
Roles and Responsibilities:
|
|
334
|
+
- Update RACI matrix for Construction phase
|
|
335
|
+
- Define approval processes
|
|
336
|
+
- Establish escalation paths
|
|
337
|
+
|
|
338
|
+
Workflow:
|
|
339
|
+
- Definition of Ready (DoR)
|
|
340
|
+
- Definition of Done (DoD)
|
|
341
|
+
- Code review process
|
|
342
|
+
- Deployment process
|
|
343
|
+
|
|
344
|
+
Template: $AIWG_ROOT/agentic/code/frameworks/sdlc-complete/templates/management/development-case-template.md
|
|
345
|
+
|
|
346
|
+
Save to: .aiwg/planning/development-process-guide.md
|
|
347
|
+
"""
|
|
348
|
+
)
|
|
349
|
+
|
|
350
|
+
# Agent 2: Software Implementer
|
|
351
|
+
Task(
|
|
352
|
+
subagent_type="software-implementer",
|
|
353
|
+
description="Create coding and design guidelines",
|
|
354
|
+
prompt="""
|
|
355
|
+
Document technical guidelines:
|
|
356
|
+
|
|
357
|
+
Design Guidelines:
|
|
358
|
+
- Architecture patterns to follow
|
|
359
|
+
- Component boundaries
|
|
360
|
+
- API design standards
|
|
361
|
+
- Data model conventions
|
|
362
|
+
|
|
363
|
+
Programming Guidelines:
|
|
364
|
+
- Coding standards (language-specific)
|
|
365
|
+
- Naming conventions
|
|
366
|
+
- Error handling patterns
|
|
367
|
+
- Logging standards
|
|
368
|
+
- Documentation requirements
|
|
369
|
+
|
|
370
|
+
Test Guidelines:
|
|
371
|
+
- Test naming and organization
|
|
372
|
+
- Coverage targets
|
|
373
|
+
- Test data management
|
|
374
|
+
- Mocking strategies
|
|
375
|
+
|
|
376
|
+
Save to: .aiwg/working/construction/guidelines/
|
|
377
|
+
"""
|
|
378
|
+
)
|
|
379
|
+
|
|
380
|
+
# Agent 3: Human Resources Coordinator
|
|
381
|
+
Task(
|
|
382
|
+
subagent_type="human-resources-coordinator",
|
|
383
|
+
description="Create team onboarding guide",
|
|
384
|
+
prompt="""
|
|
385
|
+
Create comprehensive onboarding guide for new team members:
|
|
386
|
+
|
|
387
|
+
Week 1: Orientation
|
|
388
|
+
- Project overview and vision
|
|
389
|
+
- Architecture walkthrough
|
|
390
|
+
- Development environment setup
|
|
391
|
+
- Tool access and training
|
|
392
|
+
|
|
393
|
+
Week 2: Ramp-up
|
|
394
|
+
- Codebase tour
|
|
395
|
+
- First starter task assignment
|
|
396
|
+
- Pair programming sessions
|
|
397
|
+
- Process training
|
|
398
|
+
|
|
399
|
+
Resources:
|
|
400
|
+
- Key documentation links
|
|
401
|
+
- Team contacts and expertise areas
|
|
402
|
+
- FAQ and troubleshooting
|
|
403
|
+
- Escalation paths
|
|
404
|
+
|
|
405
|
+
Checklists:
|
|
406
|
+
- [ ] Accounts created
|
|
407
|
+
- [ ] Tools installed
|
|
408
|
+
- [ ] First commit completed
|
|
409
|
+
- [ ] Process training attended
|
|
410
|
+
|
|
411
|
+
Save to: .aiwg/team/onboarding-guide.md
|
|
412
|
+
"""
|
|
413
|
+
)
|
|
414
|
+
```
|
|
415
|
+
|
|
416
|
+
2. **Plan Team Training**:
|
|
417
|
+
```
|
|
418
|
+
Task(
|
|
419
|
+
subagent_type="training-coordinator",
|
|
420
|
+
description="Create training schedule for Construction team",
|
|
421
|
+
prompt="""
|
|
422
|
+
Design training program:
|
|
423
|
+
|
|
424
|
+
Process Training (2-4 hours):
|
|
425
|
+
- Development Case walkthrough
|
|
426
|
+
- Ceremony participation
|
|
427
|
+
- Tool usage (Jira, GitHub, Slack)
|
|
428
|
+
- Quality standards
|
|
429
|
+
|
|
430
|
+
Technical Training (as needed):
|
|
431
|
+
- Architecture overview (SAD walkthrough)
|
|
432
|
+
- Coding standards
|
|
433
|
+
- Test strategy
|
|
434
|
+
- Deployment process
|
|
435
|
+
|
|
436
|
+
Training Materials:
|
|
437
|
+
- Slide decks
|
|
438
|
+
- Recorded sessions
|
|
439
|
+
- Hands-on exercises
|
|
440
|
+
- Knowledge checks
|
|
441
|
+
|
|
442
|
+
Schedule:
|
|
443
|
+
- Session dates and times
|
|
444
|
+
- Attendee lists
|
|
445
|
+
- Completion tracking
|
|
446
|
+
|
|
447
|
+
Save to: .aiwg/team/training-schedule.md
|
|
448
|
+
"""
|
|
449
|
+
)
|
|
450
|
+
```
|
|
451
|
+
|
|
452
|
+
**Communicate Progress**:
|
|
453
|
+
```
|
|
454
|
+
⏳ Tailoring development process...
|
|
455
|
+
✓ Development Process Guide created
|
|
456
|
+
✓ Technical guidelines documented
|
|
457
|
+
✓ Team onboarding guide prepared
|
|
458
|
+
✓ Training schedule planned
|
|
459
|
+
✓ Process ready for Construction team
|
|
460
|
+
```
|
|
461
|
+
|
|
462
|
+
### Step 4: Plan First Two Iterations
|
|
463
|
+
|
|
464
|
+
**Purpose**: Create detailed iteration plans with ready backlog
|
|
465
|
+
|
|
466
|
+
**Your Actions**:
|
|
467
|
+
|
|
468
|
+
1. **Assess Backlog Readiness**:
|
|
469
|
+
```
|
|
470
|
+
Task(
|
|
471
|
+
subagent_type="requirements-analyst",
|
|
472
|
+
description="Validate backlog readiness for Construction",
|
|
473
|
+
prompt="""
|
|
474
|
+
Assess backlog status:
|
|
475
|
+
|
|
476
|
+
1. Count total backlog items
|
|
477
|
+
2. Validate Definition of Ready (DoR) for each:
|
|
478
|
+
- Use case documented
|
|
479
|
+
- Acceptance criteria defined
|
|
480
|
+
- Dependencies identified
|
|
481
|
+
- Estimates provided
|
|
482
|
+
- Risks assessed
|
|
483
|
+
|
|
484
|
+
3. Calculate ready backlog size (story points)
|
|
485
|
+
4. Assess backlog health:
|
|
486
|
+
- Healthy: 1.5x-2x capacity ready
|
|
487
|
+
- Marginal: 1x-1.5x capacity
|
|
488
|
+
- Starved: <1x capacity
|
|
489
|
+
|
|
490
|
+
Report:
|
|
491
|
+
- Total items: {count}
|
|
492
|
+
- Ready items: {count}
|
|
493
|
+
- Ready size: {story points}
|
|
494
|
+
- Health status: {HEALTHY | MARGINAL | STARVED}
|
|
495
|
+
|
|
496
|
+
Save to: .aiwg/working/construction/backlog-assessment.md
|
|
497
|
+
"""
|
|
498
|
+
)
|
|
499
|
+
```
|
|
500
|
+
|
|
501
|
+
2. **Launch Iteration Planning Agents** (sequential):
|
|
502
|
+
```
|
|
503
|
+
# Iteration 1 Planning
|
|
504
|
+
Task(
|
|
505
|
+
subagent_type="project-manager",
|
|
506
|
+
description="Plan Iteration 1 (conservative start)",
|
|
507
|
+
prompt="""
|
|
508
|
+
Create Iteration 1 Plan:
|
|
509
|
+
|
|
510
|
+
Configuration:
|
|
511
|
+
- Dates: {start} to {end}
|
|
512
|
+
- Team capacity: {story points} (80% of full - ramp-up factor)
|
|
513
|
+
- Buffer: 20% for unknowns
|
|
514
|
+
|
|
515
|
+
Work Item Selection:
|
|
516
|
+
- Prioritize: Must-have items first
|
|
517
|
+
- Include: Architecture validation items
|
|
518
|
+
- Avoid: High-risk items (save for Iteration 2+)
|
|
519
|
+
- Target: {points} including buffer
|
|
520
|
+
|
|
521
|
+
For each work item:
|
|
522
|
+
- ID and name
|
|
523
|
+
- Story points
|
|
524
|
+
- Priority (MoSCoW)
|
|
525
|
+
- Owner assignment
|
|
526
|
+
- Dependencies
|
|
527
|
+
- Acceptance criteria
|
|
528
|
+
|
|
529
|
+
Objectives:
|
|
530
|
+
- Validate development process
|
|
531
|
+
- Establish team rhythm
|
|
532
|
+
- Deliver first working features
|
|
533
|
+
|
|
534
|
+
Template: $AIWG_ROOT/agentic/code/frameworks/sdlc-complete/templates/management/iteration-plan-template.md
|
|
535
|
+
|
|
536
|
+
Save to: .aiwg/planning/iteration-plan-001.md
|
|
537
|
+
"""
|
|
538
|
+
)
|
|
539
|
+
|
|
540
|
+
# Iteration 2 Planning
|
|
541
|
+
Task(
|
|
542
|
+
subagent_type="project-manager",
|
|
543
|
+
description="Plan Iteration 2 (baseline velocity)",
|
|
544
|
+
prompt="""
|
|
545
|
+
Create Iteration 2 Plan:
|
|
546
|
+
|
|
547
|
+
Configuration:
|
|
548
|
+
- Dates: {start} to {end}
|
|
549
|
+
- Team capacity: {story points} (100% - full capacity)
|
|
550
|
+
- Buffer: 15% for unknowns
|
|
551
|
+
|
|
552
|
+
Work Item Selection:
|
|
553
|
+
- Continue priority order
|
|
554
|
+
- Include: More complex items
|
|
555
|
+
- Consider: Technical debt items
|
|
556
|
+
- Target: {points} including buffer
|
|
557
|
+
|
|
558
|
+
For each work item:
|
|
559
|
+
- ID and name
|
|
560
|
+
- Story points
|
|
561
|
+
- Priority (MoSCoW)
|
|
562
|
+
- Owner assignment
|
|
563
|
+
- Dependencies
|
|
564
|
+
- Acceptance criteria
|
|
565
|
+
|
|
566
|
+
Objectives:
|
|
567
|
+
- Establish baseline velocity
|
|
568
|
+
- Tackle complex features
|
|
569
|
+
- Refine estimation accuracy
|
|
570
|
+
|
|
571
|
+
Template: $AIWG_ROOT/agentic/code/frameworks/sdlc-complete/templates/management/iteration-plan-template.md
|
|
572
|
+
|
|
573
|
+
Save to: .aiwg/planning/iteration-plan-002.md
|
|
574
|
+
"""
|
|
575
|
+
)
|
|
576
|
+
```
|
|
577
|
+
|
|
578
|
+
**Communicate Progress**:
|
|
579
|
+
```
|
|
580
|
+
⏳ Planning first 2 iterations...
|
|
581
|
+
✓ Backlog assessed: {status}
|
|
582
|
+
✓ Iteration 1 planned: {points} points
|
|
583
|
+
✓ Iteration 2 planned: {points} points
|
|
584
|
+
✓ Iteration planning complete
|
|
585
|
+
```
|
|
586
|
+
|
|
587
|
+
### Step 5: Setup Dual-Track Workflow
|
|
588
|
+
|
|
589
|
+
**Purpose**: Establish parallel Discovery and Delivery tracks
|
|
590
|
+
|
|
591
|
+
**Your Actions**:
|
|
592
|
+
|
|
593
|
+
1. **Configure Dual-Track Process**:
|
|
594
|
+
```
|
|
595
|
+
Task(
|
|
596
|
+
subagent_type="project-manager",
|
|
597
|
+
description="Setup dual-track Discovery/Delivery workflow",
|
|
598
|
+
prompt="""
|
|
599
|
+
Configure dual-track workflow:
|
|
600
|
+
|
|
601
|
+
Discovery Track (Iteration N+1):
|
|
602
|
+
- Team: Requirements Analyst, Product Owner, Domain Experts
|
|
603
|
+
- Focus: Prepare backlog for next iteration
|
|
604
|
+
- Deliverables: Ready work items passing DoR
|
|
605
|
+
- Timing: 1 iteration ahead of Delivery
|
|
606
|
+
|
|
607
|
+
Delivery Track (Iteration N):
|
|
608
|
+
- Team: Developers, Testers, Component Owners
|
|
609
|
+
- Focus: Implement current iteration work
|
|
610
|
+
- Deliverables: Working software increments
|
|
611
|
+
- Timing: Current iteration
|
|
612
|
+
|
|
613
|
+
Synchronization:
|
|
614
|
+
- Handoff: End of Discovery N → Start of Delivery N
|
|
615
|
+
- Gate: Definition of Ready (DoR)
|
|
616
|
+
- Cadence: Every iteration boundary
|
|
617
|
+
|
|
618
|
+
Shared Resources:
|
|
619
|
+
- Software Architect (design reviews)
|
|
620
|
+
- Security Architect (security reviews)
|
|
621
|
+
- Project Manager (coordination)
|
|
622
|
+
|
|
623
|
+
Document workflow in: .aiwg/planning/dual-track-workflow.md
|
|
624
|
+
"""
|
|
625
|
+
)
|
|
626
|
+
```
|
|
627
|
+
|
|
628
|
+
2. **Launch Initial Tracks**:
|
|
629
|
+
```
|
|
630
|
+
# Start Discovery for Iteration 3
|
|
631
|
+
Task(
|
|
632
|
+
subagent_type="requirements-analyst",
|
|
633
|
+
description="Begin Discovery track for Iteration 3",
|
|
634
|
+
prompt="""
|
|
635
|
+
Initiate Discovery for Iteration 3:
|
|
636
|
+
|
|
637
|
+
1. Review product backlog priorities
|
|
638
|
+
2. Select candidate items for Iteration 3
|
|
639
|
+
3. Begin requirement elaboration:
|
|
640
|
+
- User stories
|
|
641
|
+
- Acceptance criteria
|
|
642
|
+
- Interface specifications
|
|
643
|
+
- Data contracts
|
|
644
|
+
|
|
645
|
+
4. Identify dependencies and risks
|
|
646
|
+
5. Coordinate with architects for feasibility
|
|
647
|
+
|
|
648
|
+
Target: Prepare {capacity * 1.5} story points
|
|
649
|
+
Due: Before Iteration 2 ends
|
|
650
|
+
|
|
651
|
+
Track progress in: .aiwg/working/discovery/iteration-003/
|
|
652
|
+
"""
|
|
653
|
+
)
|
|
654
|
+
|
|
655
|
+
# Confirm Delivery ready for Iteration 1
|
|
656
|
+
Task(
|
|
657
|
+
subagent_type="software-implementer",
|
|
658
|
+
description="Confirm Delivery track ready for Iteration 1",
|
|
659
|
+
prompt="""
|
|
660
|
+
Validate Delivery readiness for Iteration 1:
|
|
661
|
+
|
|
662
|
+
1. Confirm all Iteration 1 work items ready (DoR met)
|
|
663
|
+
2. Verify team assignments complete
|
|
664
|
+
3. Check development environment access
|
|
665
|
+
4. Validate CI/CD pipeline operational
|
|
666
|
+
5. Confirm daily standup scheduled
|
|
667
|
+
|
|
668
|
+
Report readiness status
|
|
669
|
+
|
|
670
|
+
Save to: .aiwg/working/delivery/iteration-001/readiness.md
|
|
671
|
+
"""
|
|
672
|
+
)
|
|
673
|
+
```
|
|
674
|
+
|
|
675
|
+
**Communicate Progress**:
|
|
676
|
+
```
|
|
677
|
+
⏳ Setting up dual-track workflow...
|
|
678
|
+
✓ Discovery track configured (Iteration 3)
|
|
679
|
+
✓ Delivery track ready (Iteration 1)
|
|
680
|
+
✓ Synchronization points established
|
|
681
|
+
✓ Dual-track workflow operational
|
|
682
|
+
```
|
|
683
|
+
|
|
684
|
+
### Step 6: Monitor Architecture Stability
|
|
685
|
+
|
|
686
|
+
**Purpose**: Ensure architecture remains stable during Construction startup
|
|
687
|
+
|
|
688
|
+
**Your Actions**:
|
|
689
|
+
|
|
690
|
+
```
|
|
691
|
+
Task(
|
|
692
|
+
subagent_type="architecture-designer",
|
|
693
|
+
description="Assess architecture stability for Construction",
|
|
694
|
+
prompt="""
|
|
695
|
+
Analyze architecture stability:
|
|
696
|
+
|
|
697
|
+
1. Review architectural changes since ABM:
|
|
698
|
+
- Count new ADRs created
|
|
699
|
+
- Identify component boundary changes
|
|
700
|
+
- Check technology stack modifications
|
|
701
|
+
- Assess integration changes
|
|
702
|
+
|
|
703
|
+
2. Calculate metrics:
|
|
704
|
+
- Architectural Change Rate: % changes (target <10%)
|
|
705
|
+
- ADR Frequency: ADRs per iteration
|
|
706
|
+
- Component Violations: boundary breaches (target 0)
|
|
707
|
+
- Prototype Divergence: % rewritten (target <30%)
|
|
708
|
+
|
|
709
|
+
3. Identify risks:
|
|
710
|
+
- Architecture drift indicators
|
|
711
|
+
- Instability patterns
|
|
712
|
+
- Technical debt accumulation
|
|
713
|
+
|
|
714
|
+
4. Recommendations:
|
|
715
|
+
- Continue as-is
|
|
716
|
+
- Conduct architecture review
|
|
717
|
+
- Adjust Construction approach
|
|
718
|
+
|
|
719
|
+
Generate Architecture Stability Report:
|
|
720
|
+
- Overall status: STABLE | UNSTABLE
|
|
721
|
+
- Metrics with targets
|
|
722
|
+
- Risk assessment
|
|
723
|
+
- Action items
|
|
724
|
+
|
|
725
|
+
Save to: .aiwg/reports/architecture-stability-report.md
|
|
726
|
+
"""
|
|
727
|
+
)
|
|
728
|
+
```
|
|
729
|
+
|
|
730
|
+
**Communicate Progress**:
|
|
731
|
+
```
|
|
732
|
+
⏳ Monitoring architecture stability...
|
|
733
|
+
✓ Architecture stability: [STABLE | UNSTABLE]
|
|
734
|
+
- Change rate: {X}% (target <10%)
|
|
735
|
+
- Component violations: {N} (target 0)
|
|
736
|
+
```
|
|
737
|
+
|
|
738
|
+
### Step 7: Generate Construction Readiness Report
|
|
739
|
+
|
|
740
|
+
**Purpose**: Final readiness assessment and go/no-go decision
|
|
741
|
+
|
|
742
|
+
**Your Actions**:
|
|
743
|
+
|
|
744
|
+
```
|
|
745
|
+
Task(
|
|
746
|
+
subagent_type="project-manager",
|
|
747
|
+
description="Generate Construction Phase Readiness Report",
|
|
748
|
+
prompt="""
|
|
749
|
+
Read all transition artifacts:
|
|
750
|
+
- .aiwg/reports/abm-validation-report.md
|
|
751
|
+
- .aiwg/reports/iteration-0-completion.md
|
|
752
|
+
- .aiwg/planning/development-process-guide.md
|
|
753
|
+
- .aiwg/planning/iteration-plan-001.md
|
|
754
|
+
- .aiwg/planning/iteration-plan-002.md
|
|
755
|
+
- .aiwg/team/onboarding-guide.md
|
|
756
|
+
- .aiwg/reports/architecture-stability-report.md
|
|
757
|
+
|
|
758
|
+
Generate comprehensive Construction Readiness Report:
|
|
759
|
+
|
|
760
|
+
1. Overall Status
|
|
761
|
+
- Construction Readiness: READY | NOT READY
|
|
762
|
+
- Decision: PROCEED | DEFER
|
|
763
|
+
|
|
764
|
+
2. Gate Validation (6 criteria)
|
|
765
|
+
- ABM Complete: {status}
|
|
766
|
+
- Infrastructure Ready: {status}
|
|
767
|
+
- Process Defined: {status}
|
|
768
|
+
- Iterations Planned: {status}
|
|
769
|
+
- Dual-Track Setup: {status}
|
|
770
|
+
- Architecture Stable: {status}
|
|
771
|
+
|
|
772
|
+
3. Team Readiness
|
|
773
|
+
- Team size and scaling status
|
|
774
|
+
- Training completion
|
|
775
|
+
- Onboarding materials ready
|
|
776
|
+
|
|
777
|
+
4. Infrastructure Readiness
|
|
778
|
+
- CI/CD operational
|
|
779
|
+
- Environments ready
|
|
780
|
+
- Monitoring configured
|
|
781
|
+
|
|
782
|
+
5. Backlog Readiness
|
|
783
|
+
- Ready backlog size vs capacity
|
|
784
|
+
- DoR compliance
|
|
785
|
+
- First 2 iterations planned
|
|
786
|
+
|
|
787
|
+
6. Decision and Next Steps
|
|
788
|
+
- If READY: Kickoff instructions
|
|
789
|
+
- If NOT READY: Gap closure plan
|
|
790
|
+
|
|
791
|
+
7. Success Metrics to Track
|
|
792
|
+
- Velocity targets
|
|
793
|
+
- Quality targets
|
|
794
|
+
- Schedule targets
|
|
795
|
+
|
|
796
|
+
Save to: .aiwg/reports/construction-readiness-report.md
|
|
797
|
+
"""
|
|
798
|
+
)
|
|
799
|
+
```
|
|
800
|
+
|
|
801
|
+
**Present Summary to User**:
|
|
802
|
+
```
|
|
803
|
+
# You present this directly (not via agent)
|
|
804
|
+
|
|
805
|
+
Read .aiwg/reports/construction-readiness-report.md
|
|
806
|
+
|
|
807
|
+
Present summary:
|
|
808
|
+
─────────────────────────────────────────────
|
|
809
|
+
Construction Phase Readiness Assessment
|
|
810
|
+
─────────────────────────────────────────────
|
|
811
|
+
|
|
812
|
+
**Overall Status**: {READY | NOT READY}
|
|
813
|
+
**Decision**: {PROCEED | DEFER}
|
|
814
|
+
|
|
815
|
+
**Gate Criteria Status**:
|
|
816
|
+
✓ Architecture Baseline Milestone: PASS
|
|
817
|
+
✓ Infrastructure (Iteration 0): COMPLETE
|
|
818
|
+
✓ Development Process: READY
|
|
819
|
+
✓ Iteration Planning: COMPLETE (2 sprints)
|
|
820
|
+
✓ Dual-Track Workflow: OPERATIONAL
|
|
821
|
+
✓ Architecture Stability: STABLE
|
|
822
|
+
|
|
823
|
+
**Team Scaling**:
|
|
824
|
+
- Elaboration team: {N} members
|
|
825
|
+
- Construction team: {M} members
|
|
826
|
+
- Onboarding status: READY
|
|
827
|
+
|
|
828
|
+
**Infrastructure**:
|
|
829
|
+
- CI/CD Pipeline: OPERATIONAL
|
|
830
|
+
- Environments: Dev, Test, Staging READY
|
|
831
|
+
- Monitoring: CONFIGURED
|
|
832
|
+
|
|
833
|
+
**Backlog**:
|
|
834
|
+
- Ready items: {X} story points
|
|
835
|
+
- Capacity ratio: {Y}x (target 1.5x-2x)
|
|
836
|
+
- Iteration 1: {Z} points planned
|
|
837
|
+
- Iteration 2: {W} points planned
|
|
838
|
+
|
|
839
|
+
**Artifacts Generated**:
|
|
840
|
+
- ABM Validation Report (.aiwg/reports/abm-validation-report.md)
|
|
841
|
+
- Iteration 0 Completion (.aiwg/reports/iteration-0-completion.md)
|
|
842
|
+
- Development Process Guide (.aiwg/planning/development-process-guide.md)
|
|
843
|
+
- Iteration Plans (.aiwg/planning/iteration-plan-*.md)
|
|
844
|
+
- Onboarding Guide (.aiwg/team/onboarding-guide.md)
|
|
845
|
+
- Architecture Stability (.aiwg/reports/architecture-stability-report.md)
|
|
846
|
+
- Construction Readiness (.aiwg/reports/construction-readiness-report.md)
|
|
847
|
+
|
|
848
|
+
**Next Steps**:
|
|
849
|
+
- Kick off Iteration 1: {date}
|
|
850
|
+
- First daily standup: {date}
|
|
851
|
+
- Discovery continues for Iteration 3
|
|
852
|
+
- Monitor velocity and quality metrics
|
|
853
|
+
|
|
854
|
+
─────────────────────────────────────────────
|
|
855
|
+
```
|
|
856
|
+
|
|
857
|
+
## Quality Gates
|
|
858
|
+
|
|
859
|
+
Before marking workflow complete, verify:
|
|
860
|
+
- [ ] All required artifacts generated and reviewed
|
|
861
|
+
- [ ] Infrastructure validated operational (Iteration 0)
|
|
862
|
+
- [ ] Team process defined and training scheduled
|
|
863
|
+
- [ ] First 2 iterations planned with ready backlog
|
|
864
|
+
- [ ] Dual-track workflow configured
|
|
865
|
+
- [ ] Architecture stability confirmed
|
|
866
|
+
- [ ] Construction readiness validated
|
|
867
|
+
|
|
868
|
+
## User Communication
|
|
869
|
+
|
|
870
|
+
**At start**: Confirm understanding and list artifacts to generate
|
|
871
|
+
|
|
872
|
+
```
|
|
873
|
+
Understood. I'll orchestrate the Elaboration → Construction transition.
|
|
874
|
+
|
|
875
|
+
This will generate:
|
|
876
|
+
- ABM Validation Report
|
|
877
|
+
- Iteration 0 Completion Report
|
|
878
|
+
- Development Process Guide
|
|
879
|
+
- Iteration Plans (first 2 sprints)
|
|
880
|
+
- Team Onboarding Guide
|
|
881
|
+
- Architecture Stability Report
|
|
882
|
+
- Construction Readiness Report
|
|
883
|
+
|
|
884
|
+
I'll coordinate multiple agents for infrastructure setup and planning.
|
|
885
|
+
Expected duration: 15-20 minutes.
|
|
886
|
+
|
|
887
|
+
Starting orchestration...
|
|
888
|
+
```
|
|
889
|
+
|
|
890
|
+
**During**: Update progress with clear indicators
|
|
891
|
+
|
|
892
|
+
```
|
|
893
|
+
✓ = Complete
|
|
894
|
+
⏳ = In progress
|
|
895
|
+
❌ = Error/blocked
|
|
896
|
+
⚠️ = Warning/attention needed
|
|
897
|
+
```
|
|
898
|
+
|
|
899
|
+
**At end**: Summary report with artifact locations and status
|
|
900
|
+
|
|
901
|
+
## Error Handling
|
|
902
|
+
|
|
903
|
+
**If ABM Not Met**:
|
|
904
|
+
```
|
|
905
|
+
❌ Elaboration phase incomplete - cannot proceed to Construction
|
|
906
|
+
|
|
907
|
+
Gaps identified:
|
|
908
|
+
- {list missing artifacts or incomplete criteria}
|
|
909
|
+
|
|
910
|
+
Recommendation: Extend Elaboration
|
|
911
|
+
- Complete missing artifacts
|
|
912
|
+
- Re-run: /flow-inception-to-elaboration
|
|
913
|
+
|
|
914
|
+
Contact Software Architect for architecture completion.
|
|
915
|
+
```
|
|
916
|
+
|
|
917
|
+
**If Infrastructure Not Ready**:
|
|
918
|
+
```
|
|
919
|
+
❌ Iteration 0 incomplete - infrastructure not operational
|
|
920
|
+
|
|
921
|
+
Issues:
|
|
922
|
+
- {list infrastructure gaps}
|
|
923
|
+
|
|
924
|
+
Actions:
|
|
925
|
+
1. Complete infrastructure setup
|
|
926
|
+
2. Validate CI/CD pipeline
|
|
927
|
+
3. Confirm environment access
|
|
928
|
+
|
|
929
|
+
Impact: Construction blocked until infrastructure ready.
|
|
930
|
+
```
|
|
931
|
+
|
|
932
|
+
**If Backlog Starved**:
|
|
933
|
+
```
|
|
934
|
+
⚠️ Backlog health: STARVED ({ratio}x capacity)
|
|
935
|
+
|
|
936
|
+
Ready backlog insufficient for smooth Construction start.
|
|
937
|
+
|
|
938
|
+
Actions:
|
|
939
|
+
1. Accelerate Discovery track
|
|
940
|
+
2. Simplify requirements for faster preparation
|
|
941
|
+
3. Consider starting with reduced team
|
|
942
|
+
|
|
943
|
+
Risk: Delivery team may be blocked waiting for work.
|
|
944
|
+
```
|
|
945
|
+
|
|
946
|
+
**If Architecture Unstable**:
|
|
947
|
+
```
|
|
948
|
+
⚠️ Architecture stability: UNSTABLE
|
|
949
|
+
|
|
950
|
+
Metrics:
|
|
951
|
+
- Change rate: {X}% (target <10%)
|
|
952
|
+
- Violations: {N}
|
|
953
|
+
|
|
954
|
+
Recommendation: Architecture review needed
|
|
955
|
+
- Stabilize architecture before scaling team
|
|
956
|
+
- Document pending decisions as ADRs
|
|
957
|
+
- Consider architecture refactoring in Iteration 1
|
|
958
|
+
|
|
959
|
+
Risk: Continued instability will impact Construction velocity.
|
|
960
|
+
```
|
|
961
|
+
|
|
962
|
+
## Success Criteria
|
|
963
|
+
|
|
964
|
+
This orchestration succeeds when:
|
|
965
|
+
- [ ] Architecture Baseline Milestone validated (ABM complete)
|
|
966
|
+
- [ ] Iteration 0 infrastructure setup COMPLETE
|
|
967
|
+
- [ ] Development process tailored and team trained
|
|
968
|
+
- [ ] First 2 iterations planned with ready backlog
|
|
969
|
+
- [ ] Dual-track workflow OPERATIONAL
|
|
970
|
+
- [ ] Architecture stability confirmed (<10% change)
|
|
971
|
+
- [ ] Construction Phase Readiness Report shows READY
|
|
972
|
+
- [ ] Complete audit trails archived
|
|
973
|
+
|
|
974
|
+
## Metrics to Track
|
|
975
|
+
|
|
976
|
+
**During orchestration, track**:
|
|
977
|
+
- Team scaling time: Days to onboard new members
|
|
978
|
+
- Infrastructure setup time: Iteration 0 completion
|
|
979
|
+
- Training completion rate: % of team trained
|
|
980
|
+
- Backlog readiness: Ratio to team capacity
|
|
981
|
+
- Architecture stability: % changes since ABM
|
|
982
|
+
- Cycle time: Transition duration (target: 1-2 weeks, orchestration: 15-20 min)
|
|
983
|
+
|
|
984
|
+
## References
|
|
985
|
+
|
|
986
|
+
**Templates** (via $AIWG_ROOT):
|
|
987
|
+
- Development Case: `templates/management/development-case-template.md`
|
|
988
|
+
- Iteration Plan: `templates/management/iteration-plan-template.md`
|
|
989
|
+
- Programming Guidelines: `templates/environment/programming-guidelines-template.md`
|
|
990
|
+
- Design Guidelines: `templates/environment/design-guidelines-template.md`
|
|
991
|
+
- Test Guidelines: `templates/environment/test-guidelines-template.md`
|
|
992
|
+
|
|
993
|
+
**Gate Criteria**:
|
|
994
|
+
- `flows/gate-criteria-by-phase.md` (Construction section)
|
|
995
|
+
|
|
996
|
+
**Related Flows**:
|
|
997
|
+
- `commands/flow-iteration-dual-track.md`
|
|
998
|
+
- `commands/flow-discovery-track.md`
|
|
999
|
+
- `commands/flow-delivery-track.md`
|
|
1000
|
+
|
|
1001
|
+
**Multi-Agent Pattern**:
|
|
1002
|
+
- `docs/multi-agent-documentation-pattern.md`
|
|
1003
|
+
|
|
1004
|
+
**Orchestrator Architecture**:
|
|
1005
|
+
- `docs/orchestrator-architecture.md`
|