@zeyue0329/xiaoma-cli 1.6.5 → 1.8.0
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/README.md +13 -13
- package/package.json +5 -13
- package/pipeline-optimization-report.md +455 -0
- package/src/core/module-help.csv +7 -6
- package/src/core/skills/xiaoma-advanced-elicitation/SKILL.md +6 -0
- package/src/core/{workflows/advanced-elicitation → skills/xiaoma-advanced-elicitation}/workflow.md +6 -9
- package/src/core/skills/xiaoma-brainstorming/SKILL.md +6 -0
- package/src/core/{workflows/brainstorming → skills/xiaoma-brainstorming}/steps/step-01-session-setup.md +5 -1
- package/src/core/{workflows/brainstorming → skills/xiaoma-brainstorming}/steps/step-01b-continue.md +3 -1
- package/src/core/{workflows/brainstorming → skills/xiaoma-brainstorming}/steps/step-02a-user-selected.md +5 -1
- package/src/core/{workflows/brainstorming → skills/xiaoma-brainstorming}/steps/step-02b-ai-recommended.md +3 -1
- package/src/core/{workflows/brainstorming → skills/xiaoma-brainstorming}/steps/step-02c-random-selection.md +3 -1
- package/src/core/{workflows/brainstorming → skills/xiaoma-brainstorming}/steps/step-02d-progressive-flow.md +3 -1
- package/src/core/{workflows/brainstorming → skills/xiaoma-brainstorming}/steps/step-03-technique-execution.md +4 -2
- package/src/core/{workflows/brainstorming → skills/xiaoma-brainstorming}/steps/step-04-idea-organization.md +2 -0
- package/src/core/{workflows/brainstorming → skills/xiaoma-brainstorming}/workflow.md +1 -8
- package/src/core/skills/xiaoma-distillator/SKILL.md +178 -0
- package/src/core/skills/xiaoma-distillator/agents/distillate-compressor.md +116 -0
- package/src/core/skills/xiaoma-distillator/agents/round-trip-reconstructor.md +68 -0
- package/src/core/skills/xiaoma-distillator/resources/compression-rules.md +51 -0
- package/src/core/skills/xiaoma-distillator/resources/distillate-format-reference.md +227 -0
- package/src/core/skills/xiaoma-distillator/resources/splitting-strategy.md +78 -0
- package/src/core/skills/xiaoma-distillator/scripts/analyze_sources.py +300 -0
- package/src/core/skills/xiaoma-distillator/scripts/tests/test_analyze_sources.py +204 -0
- package/src/core/skills/xiaoma-distillator/xiaoma-skill-manifest.yaml +15 -0
- package/src/core/skills/xiaoma-editorial-review-prose/SKILL.md +6 -0
- package/src/core/skills/xiaoma-editorial-review-prose/workflow.md +81 -0
- package/src/core/skills/xiaoma-editorial-review-structure/SKILL.md +6 -0
- package/src/core/skills/xiaoma-editorial-review-structure/workflow.md +174 -0
- package/src/core/skills/xiaoma-editorial-review-structure/xiaoma-skill-manifest.yaml +1 -0
- package/src/core/skills/xiaoma-help/SKILL.md +6 -0
- package/src/core/{tasks → skills}/xiaoma-help/workflow.md +5 -5
- package/src/core/skills/xiaoma-help/xiaoma-skill-manifest.yaml +1 -0
- package/src/core/skills/xiaoma-index-docs/SKILL.md +6 -0
- package/src/core/skills/xiaoma-index-docs/workflow.md +61 -0
- package/src/core/skills/xiaoma-index-docs/xiaoma-skill-manifest.yaml +1 -0
- package/src/core/skills/xiaoma-party-mode/SKILL.md +6 -0
- package/src/core/{workflows/party-mode → skills/xiaoma-party-mode}/steps/step-03-graceful-exit.md +0 -1
- package/src/core/{workflows/party-mode → skills/xiaoma-party-mode}/workflow.md +0 -4
- package/src/core/skills/xiaoma-party-mode/xiaoma-skill-manifest.yaml +1 -0
- package/src/core/{tasks → skills}/xiaoma-review-adversarial-general/SKILL.md +1 -1
- package/src/core/skills/xiaoma-review-adversarial-general/xiaoma-skill-manifest.yaml +1 -0
- package/src/core/{tasks → skills}/xiaoma-review-edge-case-hunter/SKILL.md +2 -2
- package/src/core/skills/xiaoma-review-edge-case-hunter/xiaoma-skill-manifest.yaml +1 -0
- package/src/core/skills/xiaoma-shard-doc/SKILL.md +6 -0
- package/src/core/skills/xiaoma-shard-doc/workflow.md +100 -0
- package/src/core/skills/xiaoma-shard-doc/xiaoma-skill-manifest.yaml +1 -0
- package/src/core/tasks/xiaoma-create-prd/SKILL.md +6 -0
- package/src/core/tasks/xiaoma-create-prd/data/domain-complexity.csv +15 -0
- package/src/core/tasks/xiaoma-create-prd/data/prd-purpose.md +197 -0
- package/src/core/tasks/xiaoma-create-prd/data/project-types.csv +11 -0
- package/src/{xmc/workflows/2-plan-workflows/create-prd → core/tasks/xiaoma-create-prd}/steps-c/step-01-init.md +7 -20
- package/src/{xmc/workflows/2-plan-workflows/create-prd → core/tasks/xiaoma-create-prd}/steps-c/step-01b-continue.md +29 -20
- package/src/{xmc/workflows/2-plan-workflows/create-prd → core/tasks/xiaoma-create-prd}/steps-c/step-02-discovery.md +7 -23
- package/src/{xmc/workflows/2-plan-workflows/create-prd → core/tasks/xiaoma-create-prd}/steps-c/step-02b-vision.md +5 -17
- package/src/{xmc/workflows/2-plan-workflows/create-prd → core/tasks/xiaoma-create-prd}/steps-c/step-02c-executive-summary.md +5 -17
- package/src/{xmc/workflows/2-plan-workflows/create-prd → core/tasks/xiaoma-create-prd}/steps-c/step-03-success.md +5 -17
- package/src/{xmc/workflows/2-plan-workflows/create-prd → core/tasks/xiaoma-create-prd}/steps-c/step-04-journeys.md +5 -17
- package/src/{xmc/workflows/2-plan-workflows/create-prd → core/tasks/xiaoma-create-prd}/steps-c/step-05-domain.md +7 -20
- package/src/{xmc/workflows/2-plan-workflows/create-prd → core/tasks/xiaoma-create-prd}/steps-c/step-06-innovation.md +8 -23
- package/src/{xmc/workflows/2-plan-workflows/create-prd → core/tasks/xiaoma-create-prd}/steps-c/step-07-project-type.md +6 -21
- package/src/{xmc/workflows/2-plan-workflows/create-prd → core/tasks/xiaoma-create-prd}/steps-c/step-08-scoping.md +5 -17
- package/src/{xmc/workflows/2-plan-workflows/create-prd → core/tasks/xiaoma-create-prd}/steps-c/step-09-functional.md +5 -17
- package/src/{xmc/workflows/2-plan-workflows/create-prd → core/tasks/xiaoma-create-prd}/steps-c/step-10-nonfunctional.md +5 -17
- package/src/{xmc/workflows/2-plan-workflows/create-prd → core/tasks/xiaoma-create-prd}/steps-c/step-11-polish.md +23 -19
- package/src/{xmc/workflows/2-plan-workflows/create-prd → core/tasks/xiaoma-create-prd}/steps-c/step-12-complete.md +3 -12
- package/src/{xmc/workflows/2-plan-workflows/create-prd/workflow-create-prd.md → core/tasks/xiaoma-create-prd/workflow.md} +3 -4
- package/src/core/tasks/xiaoma-create-prd/xiaoma-skill-manifest.yaml +1 -0
- package/src/utility/agent-components/activation-steps.txt +2 -2
- package/src/xmc/agents/analyst.agent.yaml +10 -6
- package/src/xmc/agents/architect.agent.yaml +2 -2
- package/src/xmc/agents/dev.agent.yaml +2 -2
- package/src/xmc/agents/pm.agent.yaml +6 -6
- package/src/xmc/agents/qa.agent.yaml +1 -1
- package/src/xmc/agents/quick-flow-solo-dev.agent.yaml +3 -3
- package/src/xmc/agents/sm.agent.yaml +8 -4
- package/src/xmc/agents/tech-writer/tech-writer.agent.yaml +1 -1
- package/src/xmc/agents/ux-designer.agent.yaml +1 -1
- package/src/xmc/module-help.csv +25 -25
- package/src/xmc/workflows/1-analysis/auto-requirements-pipeline/SKILL.md +6 -0
- package/src/xmc/workflows/1-analysis/auto-requirements-pipeline/checklist.md +28 -0
- package/src/xmc/workflows/1-analysis/auto-requirements-pipeline/steps/step-01-init-and-validate.md +102 -0
- package/src/xmc/workflows/1-analysis/auto-requirements-pipeline/steps/step-02-requirements-analysis.md +146 -0
- package/src/xmc/workflows/1-analysis/auto-requirements-pipeline/steps/step-03-architecture-analysis.md +141 -0
- package/src/xmc/workflows/1-analysis/auto-requirements-pipeline/steps/step-04-create-prd.md +101 -0
- package/src/xmc/workflows/1-analysis/auto-requirements-pipeline/steps/step-05-validate-prd.md +106 -0
- package/src/xmc/workflows/1-analysis/auto-requirements-pipeline/steps/step-06-create-epics.md +104 -0
- package/src/xmc/workflows/1-analysis/auto-requirements-pipeline/steps/step-07-create-architecture.md +107 -0
- package/src/xmc/workflows/1-analysis/auto-requirements-pipeline/steps/step-08-finalize.md +124 -0
- package/src/xmc/workflows/1-analysis/auto-requirements-pipeline/workflow.md +107 -0
- package/src/xmc/workflows/1-analysis/auto-requirements-pipeline/xiaoma-skill-manifest.yaml +3 -0
- package/src/xmc/workflows/1-analysis/research/xiaoma-domain-research/SKILL.md +6 -0
- package/src/xmc/workflows/1-analysis/research/{domain-steps → xiaoma-domain-research/domain-steps}/step-01-init.md +2 -2
- package/src/xmc/workflows/1-analysis/research/{domain-steps → xiaoma-domain-research/domain-steps}/step-02-domain-analysis.md +2 -2
- package/src/xmc/workflows/1-analysis/research/{domain-steps → xiaoma-domain-research/domain-steps}/step-03-competitive-landscape.md +2 -2
- package/src/xmc/workflows/1-analysis/research/{domain-steps → xiaoma-domain-research/domain-steps}/step-04-regulatory-focus.md +2 -2
- package/src/xmc/workflows/1-analysis/research/{domain-steps → xiaoma-domain-research/domain-steps}/step-05-technical-trends.md +1 -1
- package/src/xmc/workflows/1-analysis/research/xiaoma-domain-research/research.template.md +29 -0
- package/src/xmc/workflows/1-analysis/research/{workflow-domain-research.md → xiaoma-domain-research/workflow.md} +0 -5
- package/src/xmc/workflows/1-analysis/research/xiaoma-domain-research/xiaoma-skill-manifest.yaml +1 -0
- package/src/xmc/workflows/1-analysis/research/xiaoma-market-research/SKILL.md +6 -0
- package/src/xmc/workflows/1-analysis/research/xiaoma-market-research/research.template.md +29 -0
- package/src/xmc/workflows/1-analysis/research/xiaoma-market-research/steps/step-01-init.md +184 -0
- package/src/xmc/workflows/1-analysis/research/xiaoma-market-research/steps/step-02-customer-behavior.md +239 -0
- package/src/xmc/workflows/1-analysis/research/xiaoma-market-research/steps/step-03-customer-pain-points.md +251 -0
- package/src/xmc/workflows/1-analysis/research/xiaoma-market-research/steps/step-04-customer-decisions.md +261 -0
- package/src/xmc/workflows/1-analysis/research/xiaoma-market-research/steps/step-05-competitive-analysis.md +173 -0
- package/src/xmc/workflows/1-analysis/research/xiaoma-market-research/steps/step-06-research-completion.md +478 -0
- package/src/xmc/workflows/1-analysis/research/{workflow-market-research.md → xiaoma-market-research/workflow.md} +1 -6
- package/src/xmc/workflows/1-analysis/research/xiaoma-market-research/xiaoma-skill-manifest.yaml +1 -0
- package/src/xmc/workflows/1-analysis/research/xiaoma-technical-research/SKILL.md +6 -0
- package/src/xmc/workflows/1-analysis/research/xiaoma-technical-research/research.template.md +29 -0
- package/src/xmc/workflows/1-analysis/research/{technical-steps → xiaoma-technical-research/technical-steps}/step-01-init.md +2 -2
- package/src/xmc/workflows/1-analysis/research/{technical-steps → xiaoma-technical-research/technical-steps}/step-02-technical-overview.md +2 -2
- package/src/xmc/workflows/1-analysis/research/{technical-steps → xiaoma-technical-research/technical-steps}/step-03-integration-patterns.md +2 -2
- package/src/xmc/workflows/1-analysis/research/{technical-steps → xiaoma-technical-research/technical-steps}/step-04-architectural-patterns.md +2 -2
- package/src/xmc/workflows/1-analysis/research/{technical-steps → xiaoma-technical-research/technical-steps}/step-05-implementation-research.md +2 -2
- package/src/xmc/workflows/1-analysis/research/{workflow-technical-research.md → xiaoma-technical-research/workflow.md} +0 -4
- package/src/xmc/workflows/1-analysis/research/xiaoma-technical-research/xiaoma-skill-manifest.yaml +1 -0
- package/src/xmc/workflows/1-analysis/xiaoma-create-product-brief/SKILL.md +6 -0
- package/src/xmc/workflows/1-analysis/{create-product-brief → xiaoma-create-product-brief}/product-brief.template.md +2 -2
- package/src/xmc/workflows/1-analysis/{create-product-brief → xiaoma-create-product-brief}/steps/step-01-init.md +5 -12
- package/src/xmc/workflows/1-analysis/{create-product-brief → xiaoma-create-product-brief}/steps/step-01b-continue.md +3 -6
- package/src/xmc/workflows/1-analysis/{create-product-brief → xiaoma-create-product-brief}/steps/step-02-vision.md +5 -11
- package/src/xmc/workflows/1-analysis/{create-product-brief → xiaoma-create-product-brief}/steps/step-03-users.md +5 -11
- package/src/xmc/workflows/1-analysis/{create-product-brief → xiaoma-create-product-brief}/steps/step-04-metrics.md +5 -11
- package/src/xmc/workflows/1-analysis/{create-product-brief → xiaoma-create-product-brief}/steps/step-05-scope.md +5 -11
- package/src/xmc/workflows/1-analysis/{create-product-brief → xiaoma-create-product-brief}/steps/step-06-complete.md +0 -3
- package/src/xmc/workflows/1-analysis/{create-product-brief → xiaoma-create-product-brief}/workflow.md +4 -6
- package/src/xmc/workflows/1-analysis/xiaoma-create-product-brief/xiaoma-skill-manifest.yaml +1 -0
- package/src/xmc/workflows/1-analysis/xiaoma-product-brief-preview/SKILL.md +88 -0
- package/src/xmc/workflows/1-analysis/xiaoma-product-brief-preview/agents/artifact-analyzer.md +60 -0
- package/src/xmc/workflows/1-analysis/xiaoma-product-brief-preview/agents/opportunity-reviewer.md +44 -0
- package/src/xmc/workflows/1-analysis/xiaoma-product-brief-preview/agents/skeptic-reviewer.md +44 -0
- package/src/xmc/workflows/1-analysis/xiaoma-product-brief-preview/agents/web-researcher.md +49 -0
- package/src/xmc/workflows/1-analysis/xiaoma-product-brief-preview/prompts/contextual-discovery.md +57 -0
- package/src/xmc/workflows/1-analysis/xiaoma-product-brief-preview/prompts/draft-and-review.md +86 -0
- package/src/xmc/workflows/1-analysis/xiaoma-product-brief-preview/prompts/finalize.md +75 -0
- package/src/xmc/workflows/1-analysis/xiaoma-product-brief-preview/prompts/guided-elicitation.md +70 -0
- package/src/xmc/workflows/1-analysis/xiaoma-product-brief-preview/resources/brief-template.md +60 -0
- package/src/xmc/workflows/1-analysis/xiaoma-product-brief-preview/xiaoma-manifest.json +17 -0
- package/src/xmc/workflows/1-analysis/xiaoma-product-brief-preview/xiaoma-skill-manifest.yaml +1 -0
- package/src/xmc/workflows/2-plan-workflows/create-prd/steps-v/step-v-01-discovery.md +2 -4
- package/src/xmc/workflows/2-plan-workflows/create-prd/steps-v/step-v-10-smart-validation.md +1 -1
- package/src/xmc/workflows/2-plan-workflows/create-prd/steps-v/step-v-11-holistic-quality-validation.md +3 -3
- package/src/xmc/workflows/2-plan-workflows/create-prd/steps-v/step-v-13-report-complete.md +2 -1
- package/src/xmc/workflows/2-plan-workflows/create-prd/workflow-validate-prd.md +2 -0
- package/src/xmc/workflows/2-plan-workflows/xiaoma-create-ux-design/SKILL.md +6 -0
- package/src/xmc/workflows/2-plan-workflows/{create-ux-design → xiaoma-create-ux-design}/steps/step-01-init.md +4 -4
- package/src/xmc/workflows/2-plan-workflows/{create-ux-design → xiaoma-create-ux-design}/steps/step-01b-continue.md +4 -4
- package/src/xmc/workflows/2-plan-workflows/{create-ux-design → xiaoma-create-ux-design}/steps/step-02-discovery.md +4 -4
- package/src/xmc/workflows/2-plan-workflows/{create-ux-design → xiaoma-create-ux-design}/steps/step-03-core-experience.md +7 -6
- package/src/xmc/workflows/2-plan-workflows/{create-ux-design → xiaoma-create-ux-design}/steps/step-04-emotional-response.md +7 -6
- package/src/xmc/workflows/2-plan-workflows/{create-ux-design → xiaoma-create-ux-design}/steps/step-05-inspiration.md +7 -6
- package/src/xmc/workflows/2-plan-workflows/{create-ux-design → xiaoma-create-ux-design}/steps/step-06-design-system.md +7 -6
- package/src/xmc/workflows/2-plan-workflows/{create-ux-design → xiaoma-create-ux-design}/steps/step-07-defining-experience.md +7 -6
- package/src/xmc/workflows/2-plan-workflows/{create-ux-design → xiaoma-create-ux-design}/steps/step-08-visual-foundation.md +7 -6
- package/src/xmc/workflows/2-plan-workflows/{create-ux-design → xiaoma-create-ux-design}/steps/step-09-design-directions.md +7 -6
- package/src/xmc/workflows/2-plan-workflows/{create-ux-design → xiaoma-create-ux-design}/steps/step-10-user-journeys.md +7 -6
- package/src/xmc/workflows/2-plan-workflows/{create-ux-design → xiaoma-create-ux-design}/steps/step-11-component-strategy.md +7 -6
- package/src/xmc/workflows/2-plan-workflows/{create-ux-design → xiaoma-create-ux-design}/steps/step-12-ux-patterns.md +7 -6
- package/src/xmc/workflows/2-plan-workflows/{create-ux-design → xiaoma-create-ux-design}/steps/step-13-responsive-accessibility.md +7 -6
- package/src/xmc/workflows/2-plan-workflows/{create-ux-design → xiaoma-create-ux-design}/steps/step-14-complete.md +2 -2
- package/src/xmc/workflows/2-plan-workflows/{create-ux-design → xiaoma-create-ux-design}/workflow.md +2 -8
- package/src/xmc/workflows/2-plan-workflows/xiaoma-create-ux-design/xiaoma-skill-manifest.yaml +1 -0
- package/src/xmc/workflows/2-plan-workflows/xiaoma-edit-prd/SKILL.md +6 -0
- package/src/xmc/workflows/2-plan-workflows/{create-prd → xiaoma-edit-prd}/steps-e/step-e-01-discovery.md +3 -8
- package/src/xmc/workflows/2-plan-workflows/{create-prd → xiaoma-edit-prd}/steps-e/step-e-01b-legacy-conversion.md +1 -5
- package/src/xmc/workflows/2-plan-workflows/{create-prd → xiaoma-edit-prd}/steps-e/step-e-02-review.md +5 -9
- package/src/xmc/workflows/2-plan-workflows/{create-prd → xiaoma-edit-prd}/steps-e/step-e-03-edit.md +3 -6
- package/src/xmc/workflows/2-plan-workflows/{create-prd → xiaoma-edit-prd}/steps-e/step-e-04-complete.md +2 -5
- package/src/xmc/workflows/2-plan-workflows/{create-prd/workflow-edit-prd.md → xiaoma-edit-prd/workflow.md} +2 -4
- package/src/xmc/workflows/2-plan-workflows/xiaoma-edit-prd/xiaoma-skill-manifest.yaml +1 -0
- package/src/xmc/workflows/2-plan-workflows/xiaoma-validate-prd/SKILL.md +6 -0
- package/src/xmc/workflows/2-plan-workflows/xiaoma-validate-prd/data/domain-complexity.csv +15 -0
- package/src/xmc/workflows/2-plan-workflows/xiaoma-validate-prd/data/prd-purpose.md +197 -0
- package/src/xmc/workflows/2-plan-workflows/xiaoma-validate-prd/data/project-types.csv +11 -0
- package/src/xmc/workflows/2-plan-workflows/xiaoma-validate-prd/steps-v/step-v-01-discovery.md +221 -0
- package/src/xmc/workflows/2-plan-workflows/xiaoma-validate-prd/steps-v/step-v-02-format-detection.md +188 -0
- package/src/xmc/workflows/2-plan-workflows/xiaoma-validate-prd/steps-v/step-v-02b-parity-check.md +206 -0
- package/src/xmc/workflows/2-plan-workflows/xiaoma-validate-prd/steps-v/step-v-03-density-validation.md +171 -0
- package/src/xmc/workflows/2-plan-workflows/xiaoma-validate-prd/steps-v/step-v-04-brief-coverage-validation.md +211 -0
- package/src/xmc/workflows/2-plan-workflows/xiaoma-validate-prd/steps-v/step-v-05-measurability-validation.md +225 -0
- package/src/xmc/workflows/2-plan-workflows/xiaoma-validate-prd/steps-v/step-v-06-traceability-validation.md +214 -0
- package/src/xmc/workflows/2-plan-workflows/xiaoma-validate-prd/steps-v/step-v-07-implementation-leakage-validation.md +202 -0
- package/src/xmc/workflows/2-plan-workflows/xiaoma-validate-prd/steps-v/step-v-08-domain-compliance-validation.md +240 -0
- package/src/xmc/workflows/2-plan-workflows/xiaoma-validate-prd/steps-v/step-v-09-project-type-validation.md +260 -0
- package/src/xmc/workflows/2-plan-workflows/xiaoma-validate-prd/steps-v/step-v-10-smart-validation.md +206 -0
- package/src/xmc/workflows/2-plan-workflows/xiaoma-validate-prd/steps-v/step-v-11-holistic-quality-validation.md +261 -0
- package/src/xmc/workflows/2-plan-workflows/xiaoma-validate-prd/steps-v/step-v-12-completeness-validation.md +239 -0
- package/src/xmc/workflows/2-plan-workflows/xiaoma-validate-prd/steps-v/step-v-13-report-complete.md +229 -0
- package/src/xmc/workflows/2-plan-workflows/xiaoma-validate-prd/workflow.md +62 -0
- package/src/xmc/workflows/2-plan-workflows/xiaoma-validate-prd/xiaoma-skill-manifest.yaml +1 -0
- package/src/xmc/workflows/3-solutioning/xiaoma-check-implementation-readiness/SKILL.md +6 -0
- package/src/xmc/workflows/3-solutioning/{check-implementation-readiness → xiaoma-check-implementation-readiness}/steps/step-01-document-discovery.md +3 -8
- package/src/xmc/workflows/3-solutioning/{check-implementation-readiness → xiaoma-check-implementation-readiness}/steps/step-02-prd-analysis.md +1 -5
- package/src/xmc/workflows/3-solutioning/{check-implementation-readiness → xiaoma-check-implementation-readiness}/steps/step-03-epic-coverage-validation.md +1 -5
- package/src/xmc/workflows/3-solutioning/{check-implementation-readiness → xiaoma-check-implementation-readiness}/steps/step-04-ux-alignment.md +1 -5
- package/src/xmc/workflows/3-solutioning/{check-implementation-readiness → xiaoma-check-implementation-readiness}/steps/step-05-epic-quality-review.md +2 -6
- package/src/xmc/workflows/3-solutioning/{check-implementation-readiness → xiaoma-check-implementation-readiness}/steps/step-06-final-assessment.md +0 -3
- package/src/xmc/workflows/3-solutioning/{check-implementation-readiness → xiaoma-check-implementation-readiness}/workflow.md +0 -5
- package/src/xmc/workflows/3-solutioning/xiaoma-check-implementation-readiness/xiaoma-skill-manifest.yaml +1 -0
- package/src/xmc/workflows/3-solutioning/xiaoma-create-architecture/SKILL.md +6 -0
- package/src/xmc/workflows/3-solutioning/{create-architecture → xiaoma-create-architecture}/steps/step-01-init.md +6 -6
- package/src/xmc/workflows/3-solutioning/{create-architecture → xiaoma-create-architecture}/steps/step-01b-continue.md +9 -9
- package/src/xmc/workflows/3-solutioning/{create-architecture → xiaoma-create-architecture}/steps/step-02-context.md +6 -6
- package/src/xmc/workflows/3-solutioning/{create-architecture → xiaoma-create-architecture}/steps/step-03-starter.md +6 -6
- package/src/xmc/workflows/3-solutioning/{create-architecture → xiaoma-create-architecture}/steps/step-04-decisions.md +6 -6
- package/src/xmc/workflows/3-solutioning/{create-architecture → xiaoma-create-architecture}/steps/step-05-patterns.md +6 -6
- package/src/xmc/workflows/3-solutioning/{create-architecture → xiaoma-create-architecture}/steps/step-06-structure.md +6 -6
- package/src/xmc/workflows/3-solutioning/{create-architecture → xiaoma-create-architecture}/steps/step-07-validation.md +6 -6
- package/src/xmc/workflows/3-solutioning/{create-architecture → xiaoma-create-architecture}/workflow.md +1 -12
- package/src/xmc/workflows/3-solutioning/xiaoma-create-architecture/xiaoma-skill-manifest.yaml +1 -0
- package/src/xmc/workflows/3-solutioning/xiaoma-create-epics-and-stories/SKILL.md +6 -0
- package/src/xmc/workflows/3-solutioning/{create-epics-and-stories → xiaoma-create-epics-and-stories}/steps/step-01-validate-prerequisites.md +37 -41
- package/src/xmc/workflows/3-solutioning/{create-epics-and-stories → xiaoma-create-epics-and-stories}/steps/step-02-design-epics.md +7 -28
- package/src/xmc/workflows/3-solutioning/{create-epics-and-stories → xiaoma-create-epics-and-stories}/steps/step-03-create-stories.md +13 -30
- package/src/xmc/workflows/3-solutioning/{create-epics-and-stories → xiaoma-create-epics-and-stories}/steps/step-04-final-validation.md +2 -20
- package/src/xmc/workflows/3-solutioning/{create-epics-and-stories → xiaoma-create-epics-and-stories}/templates/epics-template.md +4 -0
- package/src/xmc/workflows/3-solutioning/{create-epics-and-stories → xiaoma-create-epics-and-stories}/workflow.md +1 -6
- package/src/xmc/workflows/3-solutioning/xiaoma-create-epics-and-stories/xiaoma-skill-manifest.yaml +1 -0
- package/src/xmc/workflows/4-implementation/auto-story-pipeline/SKILL.md +6 -0
- package/src/xmc/workflows/4-implementation/auto-story-pipeline/checklist.md +22 -0
- package/src/xmc/workflows/4-implementation/auto-story-pipeline/steps/step-01-init-and-validate.md +163 -0
- package/src/xmc/workflows/4-implementation/auto-story-pipeline/steps/step-02-create-story.md +92 -0
- package/src/xmc/workflows/4-implementation/auto-story-pipeline/steps/step-03-validate-story.md +105 -0
- package/src/xmc/workflows/4-implementation/auto-story-pipeline/steps/step-04-develop-story.md +90 -0
- package/src/xmc/workflows/4-implementation/auto-story-pipeline/steps/step-05-code-review.md +95 -0
- package/src/xmc/workflows/4-implementation/auto-story-pipeline/steps/step-06-test-story.md +144 -0
- package/src/xmc/workflows/4-implementation/auto-story-pipeline/steps/step-07-fix-and-retest.md +128 -0
- package/src/xmc/workflows/4-implementation/auto-story-pipeline/steps/step-08-complete-story.md +115 -0
- package/src/xmc/workflows/4-implementation/auto-story-pipeline/steps/step-09-cycle-check.md +144 -0
- package/src/xmc/workflows/4-implementation/auto-story-pipeline/workflow.md +92 -0
- package/src/xmc/workflows/4-implementation/auto-story-pipeline/xiaoma-skill-manifest.yaml +3 -0
- package/src/xmc/workflows/4-implementation/xiaoma-code-review/SKILL.md +6 -0
- package/src/xmc/workflows/4-implementation/xiaoma-code-review/steps/step-01-gather-context.md +61 -0
- package/src/xmc/workflows/4-implementation/xiaoma-code-review/steps/step-02-review.md +41 -0
- package/src/xmc/workflows/4-implementation/xiaoma-code-review/steps/step-03-triage.md +50 -0
- package/src/xmc/workflows/4-implementation/xiaoma-code-review/steps/step-04-present.md +38 -0
- package/src/xmc/workflows/4-implementation/xiaoma-code-review/workflow.md +54 -0
- package/src/xmc/workflows/4-implementation/xiaoma-code-review/xiaoma-skill-manifest.yaml +1 -0
- package/src/xmc/workflows/4-implementation/xiaoma-correct-course/SKILL.md +6 -0
- package/src/xmc/workflows/4-implementation/{correct-course → xiaoma-correct-course}/checklist.md +1 -1
- package/src/xmc/workflows/4-implementation/{correct-course → xiaoma-correct-course}/workflow.md +3 -10
- package/src/xmc/workflows/4-implementation/xiaoma-correct-course/xiaoma-skill-manifest.yaml +1 -0
- package/src/xmc/workflows/4-implementation/xiaoma-create-story/SKILL.md +6 -0
- package/src/xmc/workflows/4-implementation/{create-story → xiaoma-create-story}/checklist.md +2 -2
- package/src/xmc/workflows/4-implementation/{create-story → xiaoma-create-story}/workflow.md +3 -11
- package/src/xmc/workflows/4-implementation/xiaoma-create-story/xiaoma-skill-manifest.yaml +1 -0
- package/src/xmc/workflows/4-implementation/xiaoma-dev-story/SKILL.md +6 -0
- package/src/xmc/workflows/4-implementation/{dev-story → xiaoma-dev-story}/workflow.md +0 -7
- package/src/xmc/workflows/4-implementation/xiaoma-dev-story/xiaoma-skill-manifest.yaml +1 -0
- package/src/xmc/workflows/4-implementation/xiaoma-retrospective/SKILL.md +6 -0
- package/src/xmc/workflows/4-implementation/{retrospective → xiaoma-retrospective}/workflow.md +0 -6
- package/src/xmc/workflows/4-implementation/xiaoma-retrospective/xiaoma-skill-manifest.yaml +1 -0
- package/src/xmc/workflows/4-implementation/xiaoma-sprint-planning/SKILL.md +6 -0
- package/src/xmc/workflows/4-implementation/{sprint-planning → xiaoma-sprint-planning}/workflow.md +0 -8
- package/src/xmc/workflows/4-implementation/xiaoma-sprint-planning/xiaoma-skill-manifest.yaml +1 -0
- package/src/xmc/workflows/4-implementation/xiaoma-sprint-status/SKILL.md +6 -0
- package/src/xmc/workflows/4-implementation/{sprint-status → xiaoma-sprint-status}/workflow.md +0 -6
- package/src/xmc/workflows/4-implementation/xiaoma-sprint-status/xiaoma-skill-manifest.yaml +1 -0
- package/src/xmc/workflows/xiaoma-document-project/SKILL.md +6 -0
- package/src/xmc/workflows/{document-project → xiaoma-document-project}/instructions.md +6 -6
- package/src/xmc/workflows/xiaoma-document-project/workflow.md +27 -0
- package/src/xmc/workflows/{document-project → xiaoma-document-project}/workflows/deep-dive-instructions.md +3 -1
- package/src/xmc/workflows/{document-project → xiaoma-document-project}/workflows/deep-dive-workflow.md +4 -12
- package/src/xmc/workflows/{document-project → xiaoma-document-project}/workflows/full-scan-instructions.md +5 -3
- package/src/xmc/workflows/{document-project → xiaoma-document-project}/workflows/full-scan-workflow.md +4 -12
- package/src/xmc/workflows/xiaoma-document-project/xiaoma-skill-manifest.yaml +1 -0
- package/src/xmc/workflows/xiaoma-generate-project-context/SKILL.md +6 -0
- package/src/xmc/workflows/{generate-project-context → xiaoma-generate-project-context}/steps/step-01-discover.md +4 -2
- package/src/xmc/workflows/{generate-project-context → xiaoma-generate-project-context}/steps/step-02-generate.md +8 -5
- package/src/xmc/workflows/{generate-project-context → xiaoma-generate-project-context}/workflow.md +2 -8
- package/src/xmc/workflows/xiaoma-generate-project-context/xiaoma-skill-manifest.yaml +1 -0
- package/src/xmc/workflows/xiaoma-qa-generate-e2e-tests/SKILL.md +6 -0
- package/src/xmc/workflows/{qa-generate-e2e-tests → xiaoma-qa-generate-e2e-tests}/workflow.md +2 -9
- package/src/xmc/workflows/xiaoma-qa-generate-e2e-tests/xiaoma-skill-manifest.yaml +1 -0
- package/src/xmc/workflows/xiaoma-quick-flow/xiaoma-quick-dev/SKILL.md +6 -0
- package/src/xmc/workflows/xiaoma-quick-flow/{quick-dev → xiaoma-quick-dev}/steps/step-01-mode-detection.md +9 -14
- package/src/xmc/workflows/xiaoma-quick-flow/{quick-dev → xiaoma-quick-dev}/steps/step-02-context-gathering.md +1 -5
- package/src/xmc/workflows/xiaoma-quick-flow/{quick-dev → xiaoma-quick-dev}/steps/step-03-execute.md +1 -5
- package/src/xmc/workflows/xiaoma-quick-flow/{quick-dev → xiaoma-quick-dev}/steps/step-04-self-check.md +1 -5
- package/src/xmc/workflows/xiaoma-quick-flow/{quick-dev → xiaoma-quick-dev}/steps/step-05-adversarial-review.md +1 -5
- package/src/xmc/workflows/xiaoma-quick-flow/{quick-dev → xiaoma-quick-dev}/steps/step-06-resolve-findings.md +0 -2
- package/src/xmc/workflows/xiaoma-quick-flow/{quick-dev → xiaoma-quick-dev}/workflow.md +1 -13
- package/src/xmc/workflows/xiaoma-quick-flow/xiaoma-quick-dev/xiaoma-skill-manifest.yaml +1 -0
- package/src/xmc/workflows/xiaoma-quick-flow/xiaoma-quick-dev-new-preview/SKILL.md +2 -2
- package/src/xmc/workflows/xiaoma-quick-flow/xiaoma-quick-dev-new-preview/steps/step-01-clarify-and-route.md +2 -5
- package/src/xmc/workflows/xiaoma-quick-flow/xiaoma-quick-dev-new-preview/steps/step-02-plan.md +2 -6
- package/src/xmc/workflows/xiaoma-quick-flow/xiaoma-quick-dev-new-preview/steps/step-03-implement.md +1 -3
- package/src/xmc/workflows/xiaoma-quick-flow/xiaoma-quick-dev-new-preview/steps/step-04-review.md +3 -8
- package/src/xmc/workflows/xiaoma-quick-flow/xiaoma-quick-dev-new-preview/steps/step-05-present.md +2 -4
- package/src/xmc/workflows/xiaoma-quick-flow/xiaoma-quick-dev-new-preview/workflow.md +0 -5
- package/src/xmc/workflows/xiaoma-quick-flow/xiaoma-quick-spec/SKILL.md +6 -0
- package/src/xmc/workflows/xiaoma-quick-flow/{quick-spec → xiaoma-quick-spec}/steps/step-01-understand.md +7 -11
- package/src/xmc/workflows/xiaoma-quick-flow/{quick-spec → xiaoma-quick-spec}/steps/step-02-investigate.md +3 -6
- package/src/xmc/workflows/xiaoma-quick-flow/{quick-spec → xiaoma-quick-spec}/steps/step-03-generate.md +1 -4
- package/src/xmc/workflows/xiaoma-quick-flow/{quick-spec → xiaoma-quick-spec}/steps/step-04-review.md +5 -8
- package/src/xmc/workflows/xiaoma-quick-flow/{quick-spec → xiaoma-quick-spec}/workflow.md +1 -7
- package/src/xmc/workflows/xiaoma-quick-flow/xiaoma-quick-spec/xiaoma-skill-manifest.yaml +1 -0
- package/tools/cli/external-official-modules.yaml +2 -54
- package/tools/cli/installers/install-messages.yaml +2 -2
- package/tools/cli/installers/lib/core/config-collector.js +1 -1
- package/tools/cli/installers/lib/core/detector.js +1 -1
- package/tools/cli/installers/lib/core/installer.js +30 -13
- package/tools/cli/installers/lib/core/manifest-generator.js +4 -4
- package/tools/cli/installers/lib/core/manifest.js +6 -4
- package/tools/cli/installers/lib/custom/handler.js +2 -2
- package/tools/cli/installers/lib/ide/_base-ide.js +1 -2
- package/tools/cli/installers/lib/ide/_config-driven.js +11 -6
- package/tools/cli/installers/lib/ide/manager.js +8 -8
- package/tools/cli/installers/lib/ide/shared/agent-command-generator.js +2 -2
- package/tools/cli/installers/lib/ide/shared/skill-manifest.js +2 -2
- package/tools/cli/installers/lib/ide/shared/task-tool-command-generator.js +5 -5
- package/tools/cli/installers/lib/ide/shared/xiaoma-artifacts.js +4 -4
- package/tools/cli/installers/lib/ide/templates/combined/gemini-agent.toml +5 -5
- package/tools/cli/installers/lib/ide/templates/combined/gemini-task.toml +4 -4
- package/tools/cli/installers/lib/ide/templates/combined/gemini-tool.toml +4 -4
- package/tools/cli/installers/lib/ide/templates/combined/gemini-workflow-yaml.toml +3 -3
- package/tools/cli/installers/lib/ide/templates/combined/gemini-workflow.toml +3 -3
- package/tools/cli/installers/lib/modules/manager.js +8 -8
- package/tools/cli/lib/agent/compiler.js +1 -1
- package/tools/cli/lib/agent/installer.js +4 -4
- package/tools/cli/lib/agent-party-generator.js +1 -1
- package/tools/cli/lib/ui.js +37 -17
- package/tools/cli/lib/yaml-format.js +1 -1
- package/tools/cli/xiaoma-cli.js +0 -0
- package/tools/xiaoma-npx-wrapper.js +0 -0
- package/.github/workflows/quality.yaml +0 -116
- package/.husky/pre-commit +0 -26
- package/.idea/codeStyles/Project.xml +0 -60
- package/.idea/codeStyles/codeStyleConfig.xml +0 -5
- package/.idea/inspectionProfiles/Project_Default.xml +0 -6
- package/.idea/jsLibraryMappings.xml +0 -6
- package/.idea/modules.xml +0 -8
- package/.idea/prettier.xml +0 -6
- package/.idea/vcs.xml +0 -6
- package/.idea/workspace.xml +0 -133
- package/.markdownlint-cli2.yaml +0 -41
- package/.prettierignore +0 -12
- package/.vscode/settings.json +0 -96
- package/XIAOMA-CLI-GUIDE.md +0 -512
- package/XiaoMa-Cli.iml +0 -9
- package/custom/src/agents/commit-poet/commit-poet.agent.yaml +0 -129
- package/custom/src/agents/commit-poet/installation-guide.md +0 -36
- package/custom/src/agents/toolsmith/installation-guide.md +0 -36
- package/custom/src/agents/toolsmith/toolsmith-sidecar/instructions.md +0 -70
- package/custom/src/agents/toolsmith/toolsmith-sidecar/knowledge/bundlers.md +0 -111
- package/custom/src/agents/toolsmith/toolsmith-sidecar/knowledge/deploy.md +0 -70
- package/custom/src/agents/toolsmith/toolsmith-sidecar/knowledge/docs.md +0 -114
- package/custom/src/agents/toolsmith/toolsmith-sidecar/knowledge/installers.md +0 -134
- package/custom/src/agents/toolsmith/toolsmith-sidecar/knowledge/modules.md +0 -160
- package/custom/src/agents/toolsmith/toolsmith-sidecar/knowledge/tests.md +0 -103
- package/custom/src/agents/toolsmith/toolsmith-sidecar/memories.md +0 -17
- package/custom/src/agents/toolsmith/toolsmith.agent.yaml +0 -108
- package/docs/BUNDLE_DISTRIBUTION_SETUP.md +0 -95
- package/docs/agent-customization-guide.md +0 -208
- package/docs/custom-agent-installation.md +0 -183
- package/docs/document-sharding-guide.md +0 -449
- package/docs/explanation/advanced-elicitation.md +0 -49
- package/docs/explanation/adversarial-review.md +0 -59
- package/docs/explanation/brainstorming.md +0 -33
- package/docs/explanation/established-projects-faq.md +0 -50
- package/docs/explanation/party-mode.md +0 -59
- package/docs/explanation/preventing-agent-conflicts.md +0 -112
- package/docs/explanation/project-context.md +0 -157
- package/docs/explanation/quick-dev-new-preview.md +0 -73
- package/docs/explanation/quick-flow.md +0 -77
- package/docs/explanation/why-solutioning-matters.md +0 -77
- package/docs/how-to/customize-xiaoma.md +0 -172
- package/docs/how-to/established-projects.md +0 -117
- package/docs/how-to/get-answers-about-xiaoma.md +0 -134
- package/docs/how-to/install-xiaoma.md +0 -107
- package/docs/how-to/non-interactive-installation.md +0 -171
- package/docs/how-to/project-context.md +0 -136
- package/docs/how-to/quick-fixes.md +0 -123
- package/docs/how-to/shard-large-documents.md +0 -78
- package/docs/how-to/upgrade-to-v6.md +0 -100
- package/docs/ide-info/auggie.md +0 -31
- package/docs/ide-info/claude-code.md +0 -25
- package/docs/ide-info/cline.md +0 -31
- package/docs/ide-info/codex.md +0 -21
- package/docs/ide-info/crush.md +0 -30
- package/docs/ide-info/cursor.md +0 -25
- package/docs/ide-info/gemini.md +0 -25
- package/docs/ide-info/github-copilot.md +0 -26
- package/docs/ide-info/iflow.md +0 -33
- package/docs/ide-info/kilo.md +0 -24
- package/docs/ide-info/opencode.md +0 -24
- package/docs/ide-info/qwen.md +0 -25
- package/docs/ide-info/roo.md +0 -27
- package/docs/ide-info/rovo-dev.md +0 -388
- package/docs/ide-info/trae.md +0 -25
- package/docs/ide-info/windsurf.md +0 -22
- package/docs/index.md +0 -60
- package/docs/installers-bundlers/ide-injections.md +0 -186
- package/docs/installers-bundlers/installers-modules-platforms-reference.md +0 -379
- package/docs/rag/rag.md +0 -856
- package/docs/reference/agents.md +0 -28
- package/docs/reference/commands.md +0 -145
- package/docs/reference/modules.md +0 -76
- package/docs/reference/testing.md +0 -106
- package/docs/reference/workflow-map.md +0 -89
- package/docs/roadmap.mdx +0 -136
- package/docs/superpowers/plans/2026-03-11-upstream-sync-with-branding.md +0 -586
- package/docs/tutorials/getting-started.md +0 -273
- package/docs/v4-to-v6-upgrade.md +0 -220
- package/docs/v6-open-items.md +0 -17
- package/docs/web-bundles-gemini-gpt-guide.md +0 -468
- package/docs/zh-cn/404.md +0 -9
- package/docs/zh-cn/_STYLE_GUIDE.md +0 -370
- package/docs/zh-cn/explanation/advanced-elicitation.md +0 -62
- package/docs/zh-cn/explanation/adversarial-review.md +0 -71
- package/docs/zh-cn/explanation/brainstorming.md +0 -43
- package/docs/zh-cn/explanation/established-projects-faq.md +0 -60
- package/docs/zh-cn/explanation/party-mode.md +0 -79
- package/docs/zh-cn/explanation/preventing-agent-conflicts.md +0 -137
- package/docs/zh-cn/explanation/project-context.md +0 -176
- package/docs/zh-cn/explanation/quick-flow.md +0 -93
- package/docs/zh-cn/explanation/why-solutioning-matters.md +0 -90
- package/docs/zh-cn/how-to/customize-xiaoma.md +0 -182
- package/docs/zh-cn/how-to/established-projects.md +0 -134
- package/docs/zh-cn/how-to/get-answers-about-xiaoma.md +0 -144
- package/docs/zh-cn/how-to/install-xiaoma.md +0 -105
- package/docs/zh-cn/how-to/non-interactive-installation.md +0 -181
- package/docs/zh-cn/how-to/project-context.md +0 -152
- package/docs/zh-cn/how-to/quick-fixes.md +0 -140
- package/docs/zh-cn/how-to/shard-large-documents.md +0 -86
- package/docs/zh-cn/how-to/upgrade-to-v6.md +0 -120
- package/docs/zh-cn/index.md +0 -69
- package/docs/zh-cn/reference/agents.md +0 -41
- package/docs/zh-cn/reference/commands.md +0 -166
- package/docs/zh-cn/reference/modules.md +0 -94
- package/docs/zh-cn/reference/testing.md +0 -122
- package/docs/zh-cn/reference/workflow-map.md +0 -104
- package/docs/zh-cn/roadmap.mdx +0 -152
- package/docs/zh-cn/tutorials/getting-started.md +0 -300
- package/eslint.config.mjs +0 -144
- package/prettier.config.mjs +0 -32
- package/src/core/_module-installer/install-config.yaml +0 -29
- package/src/core/_module-installer/installer.js +0 -60
- package/src/core/agents/xiaoma-master.agent.yaml +0 -30
- package/src/core/agents/xiaoma-skill-manifest.yaml +0 -3
- package/src/core/agents/xiaoma-web-orchestrator.agent.xml +0 -113
- package/src/core/resources/excalidraw/README.md +0 -160
- package/src/core/resources/excalidraw/excalidraw-helpers.md +0 -127
- package/src/core/resources/excalidraw/library-loader.md +0 -50
- package/src/core/resources/excalidraw/validate-json-instructions.md +0 -79
- package/src/core/tasks/advanced-elicitation-methods.csv +0 -51
- package/src/core/tasks/advanced-elicitation.xml +0 -116
- package/src/core/tasks/editorial-review-prose.xml +0 -102
- package/src/core/tasks/editorial-review-structure.xml +0 -208
- package/src/core/tasks/help.md +0 -92
- package/src/core/tasks/index-docs.xml +0 -65
- package/src/core/tasks/review-adversarial-general.xml +0 -49
- package/src/core/tasks/review-edge-case-hunter.xml +0 -63
- package/src/core/tasks/shard-doc.xml +0 -108
- package/src/core/tasks/validate-workflow.xml +0 -89
- package/src/core/tasks/workflow.xml +0 -235
- package/src/core/tasks/xiaoma-help/SKILL.md +0 -6
- package/src/core/tasks/xiaoma-skill-manifest.yaml +0 -19
- package/src/core/tools/shard-doc.xml +0 -109
- package/src/core/workflows/advanced-elicitation/workflow.xml +0 -118
- package/src/core/workflows/advanced-elicitation/xiaoma-skill-manifest.yaml +0 -3
- package/src/core/workflows/brainstorming/xiaoma-skill-manifest.yaml +0 -3
- package/src/core/workflows/party-mode/xiaoma-skill-manifest.yaml +0 -3
- package/src/utility/agent-components/handler-validate-workflow.txt +0 -7
- package/src/utility/agent-components/handler-workflow.txt +0 -10
- package/src/utility/models/action-command-header.md +0 -0
- package/src/utility/models/agent-activation-ide.xml +0 -51
- package/src/utility/models/agent-activation-web.xml +0 -50
- package/src/utility/models/agent-command-header.md +0 -1
- package/src/utility/models/agent-config-template.md +0 -23
- package/src/utility/models/agent-in-team-activation.xml +0 -3
- package/src/utility/models/fragments/activation-rules.xml +0 -7
- package/src/utility/models/fragments/activation-steps.xml +0 -16
- package/src/utility/models/fragments/handler-action.xml +0 -4
- package/src/utility/models/fragments/handler-data.xml +0 -5
- package/src/utility/models/fragments/handler-exec.xml +0 -6
- package/src/utility/models/fragments/handler-multi.xml +0 -14
- package/src/utility/models/fragments/handler-tmpl.xml +0 -5
- package/src/utility/models/fragments/handler-validate-workflow.xml +0 -7
- package/src/utility/models/fragments/handler-workflow.xml +0 -9
- package/src/utility/models/fragments/menu-handlers.xml +0 -6
- package/src/utility/models/fragments/web-bundle-activation-steps.xml +0 -32
- package/src/utility/templates/agent.customize.template.yaml +0 -42
- package/src/xmc/_module-installer/install-config.yaml +0 -53
- package/src/xmc/_module-installer/installer.js +0 -131
- package/src/xmc/_module-installer/platform-specifics/claude-code.js +0 -35
- package/src/xmc/_module-installer/platform-specifics/windsurf.js +0 -32
- package/src/xmc/sub-modules/claude-code/config.yaml +0 -5
- package/src/xmc/sub-modules/claude-code/injections.yaml +0 -242
- package/src/xmc/sub-modules/claude-code/readme.md +0 -87
- package/src/xmc/sub-modules/claude-code/sub-agents/xiaoma-analysis/api-documenter.md +0 -102
- package/src/xmc/sub-modules/claude-code/sub-agents/xiaoma-analysis/codebase-analyzer.md +0 -82
- package/src/xmc/sub-modules/claude-code/sub-agents/xiaoma-analysis/data-analyst.md +0 -101
- package/src/xmc/sub-modules/claude-code/sub-agents/xiaoma-analysis/pattern-detector.md +0 -84
- package/src/xmc/sub-modules/claude-code/sub-agents/xiaoma-planning/dependency-mapper.md +0 -83
- package/src/xmc/sub-modules/claude-code/sub-agents/xiaoma-planning/epic-optimizer.md +0 -81
- package/src/xmc/sub-modules/claude-code/sub-agents/xiaoma-planning/requirements-analyst.md +0 -61
- package/src/xmc/sub-modules/claude-code/sub-agents/xiaoma-planning/technical-decisions-curator.md +0 -168
- package/src/xmc/sub-modules/claude-code/sub-agents/xiaoma-planning/trend-spotter.md +0 -115
- package/src/xmc/sub-modules/claude-code/sub-agents/xiaoma-planning/user-journey-mapper.md +0 -123
- package/src/xmc/sub-modules/claude-code/sub-agents/xiaoma-planning/user-researcher.md +0 -72
- package/src/xmc/sub-modules/claude-code/sub-agents/xiaoma-research/market-researcher.md +0 -51
- package/src/xmc/sub-modules/claude-code/sub-agents/xiaoma-research/tech-debt-auditor.md +0 -106
- package/src/xmc/sub-modules/claude-code/sub-agents/xiaoma-review/document-reviewer.md +0 -102
- package/src/xmc/sub-modules/claude-code/sub-agents/xiaoma-review/technical-evaluator.md +0 -68
- package/src/xmc/sub-modules/claude-code/sub-agents/xiaoma-review/test-coverage-analyzer.md +0 -108
- package/src/xmc/testarch/knowledge/api-request.md +0 -303
- package/src/xmc/testarch/knowledge/auth-session.md +0 -356
- package/src/xmc/testarch/knowledge/burn-in.md +0 -273
- package/src/xmc/testarch/knowledge/ci-burn-in.md +0 -675
- package/src/xmc/testarch/knowledge/component-tdd.md +0 -486
- package/src/xmc/testarch/knowledge/contract-testing.md +0 -957
- package/src/xmc/testarch/knowledge/data-factories.md +0 -500
- package/src/xmc/testarch/knowledge/email-auth.md +0 -721
- package/src/xmc/testarch/knowledge/error-handling.md +0 -725
- package/src/xmc/testarch/knowledge/feature-flags.md +0 -750
- package/src/xmc/testarch/knowledge/file-utils.md +0 -260
- package/src/xmc/testarch/knowledge/fixture-architecture.md +0 -401
- package/src/xmc/testarch/knowledge/fixtures-composition.md +0 -382
- package/src/xmc/testarch/knowledge/intercept-network-call.md +0 -280
- package/src/xmc/testarch/knowledge/log.md +0 -294
- package/src/xmc/testarch/knowledge/network-error-monitor.md +0 -272
- package/src/xmc/testarch/knowledge/network-first.md +0 -486
- package/src/xmc/testarch/knowledge/network-recorder.md +0 -265
- package/src/xmc/testarch/knowledge/nfr-criteria.md +0 -670
- package/src/xmc/testarch/knowledge/overview.md +0 -284
- package/src/xmc/testarch/knowledge/playwright-config.md +0 -730
- package/src/xmc/testarch/knowledge/probability-impact.md +0 -601
- package/src/xmc/testarch/knowledge/recurse.md +0 -296
- package/src/xmc/testarch/knowledge/risk-governance.md +0 -615
- package/src/xmc/testarch/knowledge/selective-testing.md +0 -732
- package/src/xmc/testarch/knowledge/selector-resilience.md +0 -527
- package/src/xmc/testarch/knowledge/test-healing-patterns.md +0 -644
- package/src/xmc/testarch/knowledge/test-levels-framework.md +0 -473
- package/src/xmc/testarch/knowledge/test-priorities-matrix.md +0 -373
- package/src/xmc/testarch/knowledge/test-quality.md +0 -664
- package/src/xmc/testarch/knowledge/timing-debugging.md +0 -372
- package/src/xmc/testarch/knowledge/visual-debugging.md +0 -524
- package/src/xmc/testarch/tea-index.csv +0 -33
- package/src/xmc/workflows/1-analysis/create-product-brief/xiaoma-skill-manifest.yaml +0 -3
- package/src/xmc/workflows/1-analysis/research/xiaoma-skill-manifest.yaml +0 -14
- package/src/xmc/workflows/2-plan-workflows/create-prd/xiaoma-skill-manifest.yaml +0 -14
- package/src/xmc/workflows/2-plan-workflows/create-ux-design/xiaoma-skill-manifest.yaml +0 -3
- package/src/xmc/workflows/3-solutioning/check-implementation-readiness/xiaoma-skill-manifest.yaml +0 -3
- package/src/xmc/workflows/3-solutioning/create-architecture/xiaoma-skill-manifest.yaml +0 -3
- package/src/xmc/workflows/3-solutioning/create-epics-and-stories/xiaoma-skill-manifest.yaml +0 -3
- package/src/xmc/workflows/4-implementation/code-review/workflow.md +0 -271
- package/src/xmc/workflows/4-implementation/code-review/xiaoma-skill-manifest.yaml +0 -3
- package/src/xmc/workflows/4-implementation/correct-course/xiaoma-skill-manifest.yaml +0 -3
- package/src/xmc/workflows/4-implementation/create-story/xiaoma-skill-manifest.yaml +0 -3
- package/src/xmc/workflows/4-implementation/dev-story/xiaoma-skill-manifest.yaml +0 -3
- package/src/xmc/workflows/4-implementation/retrospective/xiaoma-skill-manifest.yaml +0 -3
- package/src/xmc/workflows/4-implementation/sprint-planning/xiaoma-skill-manifest.yaml +0 -3
- package/src/xmc/workflows/4-implementation/sprint-status/xiaoma-skill-manifest.yaml +0 -3
- package/src/xmc/workflows/document-project/workflow.md +0 -39
- package/src/xmc/workflows/document-project/xiaoma-skill-manifest.yaml +0 -3
- package/src/xmc/workflows/generate-project-context/xiaoma-skill-manifest.yaml +0 -3
- package/src/xmc/workflows/qa-generate-e2e-tests/xiaoma-skill-manifest.yaml +0 -3
- package/src/xmc/workflows/xiaoma-quick-flow/quick-dev/xiaoma-skill-manifest.yaml +0 -3
- package/src/xmc/workflows/xiaoma-quick-flow/quick-spec/xiaoma-skill-manifest.yaml +0 -3
- package/test/README.md +0 -295
- package/test/adversarial-review-tests/README.md +0 -56
- package/test/adversarial-review-tests/sample-content.md +0 -46
- package/test/adversarial-review-tests/test-cases.yaml +0 -103
- package/test/fixtures/agent-schema/invalid/critical-actions/actions-as-string.agent.yaml +0 -27
- package/test/fixtures/agent-schema/invalid/critical-actions/empty-string-in-actions.agent.yaml +0 -30
- package/test/fixtures/agent-schema/invalid/menu/empty-menu.agent.yaml +0 -22
- package/test/fixtures/agent-schema/invalid/menu/missing-menu.agent.yaml +0 -20
- package/test/fixtures/agent-schema/invalid/menu-commands/empty-command-target.agent.yaml +0 -25
- package/test/fixtures/agent-schema/invalid/menu-commands/no-command-target.agent.yaml +0 -24
- package/test/fixtures/agent-schema/invalid/menu-triggers/camel-case.agent.yaml +0 -25
- package/test/fixtures/agent-schema/invalid/menu-triggers/compound-invalid-format.agent.yaml +0 -25
- package/test/fixtures/agent-schema/invalid/menu-triggers/compound-mismatched-kebab.agent.yaml +0 -25
- package/test/fixtures/agent-schema/invalid/menu-triggers/duplicate-triggers.agent.yaml +0 -31
- package/test/fixtures/agent-schema/invalid/menu-triggers/empty-trigger.agent.yaml +0 -25
- package/test/fixtures/agent-schema/invalid/menu-triggers/leading-asterisk.agent.yaml +0 -25
- package/test/fixtures/agent-schema/invalid/menu-triggers/snake-case.agent.yaml +0 -25
- package/test/fixtures/agent-schema/invalid/menu-triggers/trigger-with-spaces.agent.yaml +0 -25
- package/test/fixtures/agent-schema/invalid/metadata/empty-module-string.agent.yaml +0 -26
- package/test/fixtures/agent-schema/invalid/metadata/empty-name.agent.yaml +0 -24
- package/test/fixtures/agent-schema/invalid/metadata/extra-metadata-fields.agent.yaml +0 -27
- package/test/fixtures/agent-schema/invalid/metadata/missing-id.agent.yaml +0 -23
- package/test/fixtures/agent-schema/invalid/persona/empty-principles-array.agent.yaml +0 -24
- package/test/fixtures/agent-schema/invalid/persona/empty-string-in-principles.agent.yaml +0 -27
- package/test/fixtures/agent-schema/invalid/persona/extra-persona-fields.agent.yaml +0 -27
- package/test/fixtures/agent-schema/invalid/persona/missing-role.agent.yaml +0 -24
- package/test/fixtures/agent-schema/invalid/prompts/empty-content.agent.yaml +0 -29
- package/test/fixtures/agent-schema/invalid/prompts/extra-prompt-fields.agent.yaml +0 -31
- package/test/fixtures/agent-schema/invalid/prompts/missing-content.agent.yaml +0 -28
- package/test/fixtures/agent-schema/invalid/prompts/missing-id.agent.yaml +0 -28
- package/test/fixtures/agent-schema/invalid/top-level/empty-file.agent.yaml +0 -5
- package/test/fixtures/agent-schema/invalid/top-level/extra-top-level-keys.agent.yaml +0 -28
- package/test/fixtures/agent-schema/invalid/top-level/missing-agent-key.agent.yaml +0 -11
- package/test/fixtures/agent-schema/invalid/yaml-errors/invalid-indentation.agent.yaml +0 -19
- package/test/fixtures/agent-schema/invalid/yaml-errors/malformed-yaml.agent.yaml +0 -18
- package/test/fixtures/agent-schema/valid/critical-actions/empty-critical-actions.agent.yaml +0 -24
- package/test/fixtures/agent-schema/valid/critical-actions/no-critical-actions.agent.yaml +0 -22
- package/test/fixtures/agent-schema/valid/critical-actions/valid-critical-actions.agent.yaml +0 -27
- package/test/fixtures/agent-schema/valid/menu/multiple-menu-items.agent.yaml +0 -31
- package/test/fixtures/agent-schema/valid/menu/single-menu-item.agent.yaml +0 -22
- package/test/fixtures/agent-schema/valid/menu-commands/all-command-types.agent.yaml +0 -38
- package/test/fixtures/agent-schema/valid/menu-commands/multiple-commands.agent.yaml +0 -23
- package/test/fixtures/agent-schema/valid/menu-triggers/compound-triggers.agent.yaml +0 -31
- package/test/fixtures/agent-schema/valid/menu-triggers/kebab-case-triggers.agent.yaml +0 -34
- package/test/fixtures/agent-schema/valid/metadata/core-agent-with-module.agent.yaml +0 -24
- package/test/fixtures/agent-schema/valid/metadata/empty-module-name-in-path.agent.yaml +0 -24
- package/test/fixtures/agent-schema/valid/metadata/malformed-path-treated-as-core.agent.yaml +0 -24
- package/test/fixtures/agent-schema/valid/metadata/module-agent-correct.agent.yaml +0 -24
- package/test/fixtures/agent-schema/valid/metadata/module-agent-missing-module.agent.yaml +0 -23
- package/test/fixtures/agent-schema/valid/metadata/wrong-module-value.agent.yaml +0 -24
- package/test/fixtures/agent-schema/valid/persona/complete-persona.agent.yaml +0 -24
- package/test/fixtures/agent-schema/valid/prompts/empty-prompts.agent.yaml +0 -24
- package/test/fixtures/agent-schema/valid/prompts/no-prompts.agent.yaml +0 -22
- package/test/fixtures/agent-schema/valid/prompts/valid-prompts-minimal.agent.yaml +0 -28
- package/test/fixtures/agent-schema/valid/prompts/valid-prompts-with-description.agent.yaml +0 -30
- package/test/fixtures/agent-schema/valid/top-level/minimal-core-agent.agent.yaml +0 -24
- package/test/fixtures/file-refs-csv/invalid/all-empty-workflow.csv +0 -3
- package/test/fixtures/file-refs-csv/invalid/empty-data.csv +0 -1
- package/test/fixtures/file-refs-csv/invalid/no-workflow-column.csv +0 -3
- package/test/fixtures/file-refs-csv/invalid/unresolvable-vars.csv +0 -3
- package/test/fixtures/file-refs-csv/valid/core-style.csv +0 -3
- package/test/fixtures/file-refs-csv/valid/minimal.csv +0 -2
- package/test/fixtures/file-refs-csv/valid/xmc-style.csv +0 -3
- package/test/test-agent-schema.js +0 -387
- package/test/test-cli-integration.sh +0 -159
- package/test/test-file-refs-csv.js +0 -133
- package/test/test-install-to-xiaoma.js +0 -154
- package/test/test-installation-components.js +0 -1802
- package/test/test-rehype-plugins.mjs +0 -1050
- package/test/test-workflow-path-regex.js +0 -88
- package/test/unit-test-schema.js +0 -133
- package/tools/build-docs.mjs +0 -464
- package/tools/cli/bundlers/bundle-web.js +0 -179
- package/tools/cli/bundlers/bundlers/bundle-web.js +0 -179
- package/tools/cli/bundlers/bundlers/test-analyst.js +0 -28
- package/tools/cli/bundlers/bundlers/test-bundler.js +0 -119
- package/tools/cli/bundlers/bundlers/web-bundler.js +0 -1754
- package/tools/cli/bundlers/test-analyst.js +0 -28
- package/tools/cli/bundlers/test-bundler.js +0 -119
- package/tools/cli/bundlers/web-bundler.js +0 -1754
- package/tools/cli/commands/agent-install.js +0 -409
- package/tools/cli/commands/build.js +0 -458
- package/tools/cli/commands/cleanup.js +0 -144
- package/tools/cli/commands/list.js +0 -43
- package/tools/cli/commands/update.js +0 -28
- package/tools/cli/installers/lib/ide/antigravity.js +0 -510
- package/tools/cli/installers/lib/ide/auggie.js +0 -232
- package/tools/cli/installers/lib/ide/claude-code.js +0 -512
- package/tools/cli/installers/lib/ide/cline.js +0 -269
- package/tools/cli/installers/lib/ide/codex.js +0 -440
- package/tools/cli/installers/lib/ide/crush.js +0 -287
- package/tools/cli/installers/lib/ide/cursor.js +0 -400
- package/tools/cli/installers/lib/ide/gemini.js +0 -253
- package/tools/cli/installers/lib/ide/github-copilot.js +0 -699
- package/tools/cli/installers/lib/ide/iflow.js +0 -172
- package/tools/cli/installers/lib/ide/kilo.js +0 -269
- package/tools/cli/installers/lib/ide/opencode.js +0 -257
- package/tools/cli/installers/lib/ide/qwen.js +0 -372
- package/tools/cli/installers/lib/ide/roo.js +0 -324
- package/tools/cli/installers/lib/ide/rovo-dev.js +0 -290
- package/tools/cli/installers/lib/ide/rovodev.js +0 -257
- package/tools/cli/installers/lib/ide/templates/combined/default-workflow-yaml.md +0 -14
- package/tools/cli/installers/lib/ide/templates/combined/kiro-workflow-yaml.md +0 -15
- package/tools/cli/installers/lib/ide/templates/gemini-agent-command.toml +0 -14
- package/tools/cli/installers/lib/ide/templates/gemini-task-command.toml +0 -12
- package/tools/cli/installers/lib/ide/templates/workflow-command-template.md +0 -13
- package/tools/cli/installers/lib/ide/templates/workflow-commander.md +0 -5
- package/tools/cli/installers/lib/ide/trae.js +0 -313
- package/tools/cli/installers/lib/ide/windsurf.js +0 -258
- package/tools/cli/lib/replace-project-root.js +0 -239
- package/tools/cli/regenerate-manifests.js +0 -28
- package/tools/cli/test-yaml-builder.js +0 -43
- package/tools/docs/_prompt-external-modules-page.md +0 -59
- package/tools/docs/fix-refs.md +0 -91
- package/tools/docs/native-skills-migration-checklist.md +0 -281
- package/tools/fix-doc-links.js +0 -285
- package/tools/flattener/aggregate.js +0 -76
- package/tools/flattener/binary.js +0 -80
- package/tools/flattener/discovery.js +0 -71
- package/tools/flattener/files.js +0 -35
- package/tools/flattener/flattener/aggregate.js +0 -76
- package/tools/flattener/flattener/binary.js +0 -80
- package/tools/flattener/flattener/discovery.js +0 -71
- package/tools/flattener/flattener/files.js +0 -35
- package/tools/flattener/flattener/ignoreRules.js +0 -172
- package/tools/flattener/flattener/main.js +0 -483
- package/tools/flattener/flattener/projectRoot.js +0 -201
- package/tools/flattener/flattener/prompts.js +0 -44
- package/tools/flattener/flattener/stats.helpers.js +0 -368
- package/tools/flattener/flattener/stats.js +0 -75
- package/tools/flattener/flattener/test-matrix.js +0 -409
- package/tools/flattener/flattener/xml.js +0 -88
- package/tools/flattener/ignoreRules.js +0 -172
- package/tools/flattener/main.js +0 -483
- package/tools/flattener/projectRoot.js +0 -201
- package/tools/flattener/prompts.js +0 -44
- package/tools/flattener/stats.helpers.js +0 -368
- package/tools/flattener/stats.js +0 -75
- package/tools/flattener/test-matrix.js +0 -409
- package/tools/flattener/xml.js +0 -88
- package/tools/format-workflow-md.js +0 -263
- package/tools/migrate-custom-module-paths.js +0 -124
- package/tools/validate-agent-schema.js +0 -110
- package/tools/validate-bundles.js +0 -87
- package/tools/validate-doc-links.js +0 -409
- package/tools/validate-file-refs.js +0 -556
- package/web-bundles/xmc/agents/analyst.xml +0 -109
- package/web-bundles/xmc/agents/architect.xml +0 -101
- package/web-bundles/xmc/agents/dev.xml +0 -106
- package/web-bundles/xmc/agents/pm.xml +0 -112
- package/web-bundles/xmc/agents/qa.xml +0 -126
- package/web-bundles/xmc/agents/quick-flow-solo-dev.xml +0 -104
- package/web-bundles/xmc/agents/sm.xml +0 -109
- package/web-bundles/xmc/agents/ux-designer.xml +0 -100
- package/web-bundles/xmc/teams/team-fullstack.xml +0 -1192
- /package/src/core/{workflows/advanced-elicitation → skills/xiaoma-advanced-elicitation}/methods.csv +0 -0
- /package/src/core/{tasks/xiaoma-help → skills/xiaoma-advanced-elicitation}/xiaoma-skill-manifest.yaml +0 -0
- /package/src/core/{workflows/brainstorming → skills/xiaoma-brainstorming}/brain-methods.csv +0 -0
- /package/src/core/{workflows/brainstorming → skills/xiaoma-brainstorming}/template.md +0 -0
- /package/src/core/{tasks/xiaoma-review-adversarial-general → skills/xiaoma-brainstorming}/xiaoma-skill-manifest.yaml +0 -0
- /package/src/core/{tasks/xiaoma-review-edge-case-hunter → skills/xiaoma-editorial-review-prose}/xiaoma-skill-manifest.yaml +0 -0
- /package/src/core/{workflows/party-mode → skills/xiaoma-party-mode}/steps/step-01-agent-loading.md +0 -0
- /package/src/core/{workflows/party-mode → skills/xiaoma-party-mode}/steps/step-02-discussion-orchestration.md +0 -0
- /package/src/core/{tasks → skills}/xiaoma-review-adversarial-general/workflow.md +0 -0
- /package/src/core/{tasks → skills}/xiaoma-review-edge-case-hunter/workflow.md +0 -0
- /package/src/{xmc/workflows/2-plan-workflows/create-prd → core/tasks/xiaoma-create-prd}/templates/prd-template.md +0 -0
- /package/src/xmc/workflows/1-analysis/research/{domain-steps → xiaoma-domain-research/domain-steps}/step-06-research-synthesis.md +0 -0
- /package/src/xmc/workflows/1-analysis/research/{technical-steps → xiaoma-technical-research/technical-steps}/step-06-research-synthesis.md +0 -0
- /package/src/xmc/workflows/2-plan-workflows/{create-ux-design → xiaoma-create-ux-design}/ux-design-template.md +0 -0
- /package/src/xmc/workflows/3-solutioning/{check-implementation-readiness → xiaoma-check-implementation-readiness}/templates/readiness-report-template.md +0 -0
- /package/src/xmc/workflows/3-solutioning/{create-architecture → xiaoma-create-architecture}/architecture-decision-template.md +0 -0
- /package/src/xmc/workflows/3-solutioning/{create-architecture → xiaoma-create-architecture}/data/domain-complexity.csv +0 -0
- /package/src/xmc/workflows/3-solutioning/{create-architecture → xiaoma-create-architecture}/data/project-types.csv +0 -0
- /package/src/xmc/workflows/3-solutioning/{create-architecture → xiaoma-create-architecture}/steps/step-08-complete.md +0 -0
- /package/src/xmc/workflows/4-implementation/{code-review → xiaoma-code-review}/checklist.md +0 -0
- /package/src/xmc/workflows/4-implementation/{code-review → xiaoma-code-review}/discover-inputs.md +0 -0
- /package/src/xmc/workflows/4-implementation/{create-story → xiaoma-create-story}/discover-inputs.md +0 -0
- /package/src/xmc/workflows/4-implementation/{create-story → xiaoma-create-story}/template.md +0 -0
- /package/src/xmc/workflows/4-implementation/{dev-story → xiaoma-dev-story}/checklist.md +0 -0
- /package/src/xmc/workflows/4-implementation/{sprint-planning → xiaoma-sprint-planning}/checklist.md +0 -0
- /package/src/xmc/workflows/4-implementation/{sprint-planning → xiaoma-sprint-planning}/sprint-status-template.yaml +0 -0
- /package/src/xmc/workflows/{document-project → xiaoma-document-project}/checklist.md +0 -0
- /package/src/xmc/workflows/{document-project → xiaoma-document-project}/documentation-requirements.csv +0 -0
- /package/src/xmc/workflows/{document-project → xiaoma-document-project}/templates/deep-dive-template.md +0 -0
- /package/src/xmc/workflows/{document-project → xiaoma-document-project}/templates/index-template.md +0 -0
- /package/src/xmc/workflows/{document-project → xiaoma-document-project}/templates/project-overview-template.md +0 -0
- /package/src/xmc/workflows/{document-project → xiaoma-document-project}/templates/project-scan-report-schema.json +0 -0
- /package/src/xmc/workflows/{document-project → xiaoma-document-project}/templates/source-tree-template.md +0 -0
- /package/src/xmc/workflows/{generate-project-context → xiaoma-generate-project-context}/project-context-template.md +0 -0
- /package/src/xmc/workflows/{generate-project-context → xiaoma-generate-project-context}/steps/step-03-complete.md +0 -0
- /package/src/xmc/workflows/{qa-generate-e2e-tests → xiaoma-qa-generate-e2e-tests}/checklist.md +0 -0
- /package/src/xmc/workflows/xiaoma-quick-flow/{quick-spec → xiaoma-quick-spec}/tech-spec-template.md +0 -0
|
@@ -32,8 +32,8 @@ This step will generate content and present choices for each decision category:
|
|
|
32
32
|
|
|
33
33
|
## PROTOCOL INTEGRATION:
|
|
34
34
|
|
|
35
|
-
- When 'A' selected:
|
|
36
|
-
- When 'P' selected:
|
|
35
|
+
- When 'A' selected: Invoke the `xiaoma-advanced-elicitation` skill
|
|
36
|
+
- When 'P' selected: Invoke the `xiaoma-party-mode` skill
|
|
37
37
|
- PROTOCOLS always return to display this step's A/P/C menu after the A or P have completed
|
|
38
38
|
- User accepts/rejects protocol changes before proceeding
|
|
39
39
|
|
|
@@ -264,7 +264,7 @@ Show the generated decisions content and present choices:
|
|
|
264
264
|
|
|
265
265
|
#### If 'A' (Advanced Elicitation):
|
|
266
266
|
|
|
267
|
-
-
|
|
267
|
+
- Invoke the `xiaoma-advanced-elicitation` skill with specific decision categories
|
|
268
268
|
- Process enhanced insights about particular decisions
|
|
269
269
|
- Ask user: "Accept these enhancements to the architectural decisions? (y/n)"
|
|
270
270
|
- If yes: Update content, then return to A/P/C menu
|
|
@@ -272,7 +272,7 @@ Show the generated decisions content and present choices:
|
|
|
272
272
|
|
|
273
273
|
#### If 'P' (Party Mode):
|
|
274
274
|
|
|
275
|
-
-
|
|
275
|
+
- Invoke the `xiaoma-party-mode` skill with architectural decisions context
|
|
276
276
|
- Process collaborative insights about decision trade-offs
|
|
277
277
|
- Ask user: "Accept these changes to the architectural decisions? (y/n)"
|
|
278
278
|
- If yes: Update content, then return to A/P/C menu
|
|
@@ -282,7 +282,7 @@ Show the generated decisions content and present choices:
|
|
|
282
282
|
|
|
283
283
|
- Append the final content to `{planning_artifacts}/architecture.md`
|
|
284
284
|
- Update frontmatter: `stepsCompleted: [1, 2, 3, 4]`
|
|
285
|
-
- Load
|
|
285
|
+
- Load `./step-05-patterns.md`
|
|
286
286
|
|
|
287
287
|
## APPEND TO DOCUMENT:
|
|
288
288
|
|
|
@@ -313,6 +313,6 @@ When user selects 'C', append the content directly to the document using the str
|
|
|
313
313
|
|
|
314
314
|
## NEXT STEP:
|
|
315
315
|
|
|
316
|
-
After user selects 'C' and content is saved to document, load
|
|
316
|
+
After user selects 'C' and content is saved to document, load `./step-05-patterns.md` to define implementation patterns that ensure consistency across AI agents.
|
|
317
317
|
|
|
318
318
|
Remember: Do NOT proceed to step-05 until user explicitly selects 'C' from the A/P/C menu and content is saved!
|
|
@@ -32,8 +32,8 @@ This step will generate content and present choices:
|
|
|
32
32
|
|
|
33
33
|
## PROTOCOL INTEGRATION:
|
|
34
34
|
|
|
35
|
-
- When 'A' selected:
|
|
36
|
-
- When 'P' selected:
|
|
35
|
+
- When 'A' selected: Invoke the `xiaoma-advanced-elicitation` skill
|
|
36
|
+
- When 'P' selected: Invoke the `xiaoma-party-mode` skill
|
|
37
37
|
- PROTOCOLS always return to display this step's A/P/C menu after the A or P have completed
|
|
38
38
|
- User accepts/rejects protocol changes before proceeding
|
|
39
39
|
|
|
@@ -305,7 +305,7 @@ Show the generated patterns content and present choices:
|
|
|
305
305
|
|
|
306
306
|
#### If 'A' (Advanced Elicitation):
|
|
307
307
|
|
|
308
|
-
-
|
|
308
|
+
- Invoke the `xiaoma-advanced-elicitation` skill with current patterns
|
|
309
309
|
- Process enhanced consistency rules that come back
|
|
310
310
|
- Ask user: "Accept these additional pattern refinements? (y/n)"
|
|
311
311
|
- If yes: Update content, then return to A/P/C menu
|
|
@@ -313,7 +313,7 @@ Show the generated patterns content and present choices:
|
|
|
313
313
|
|
|
314
314
|
#### If 'P' (Party Mode):
|
|
315
315
|
|
|
316
|
-
-
|
|
316
|
+
- Invoke the `xiaoma-party-mode` skill with implementation patterns context
|
|
317
317
|
- Process collaborative insights about potential conflicts
|
|
318
318
|
- Ask user: "Accept these changes to the implementation patterns? (y/n)"
|
|
319
319
|
- If yes: Update content, then return to A/P/C menu
|
|
@@ -323,7 +323,7 @@ Show the generated patterns content and present choices:
|
|
|
323
323
|
|
|
324
324
|
- Append the final content to `{planning_artifacts}/architecture.md`
|
|
325
325
|
- Update frontmatter: `stepsCompleted: [1, 2, 3, 4, 5]`
|
|
326
|
-
- Load
|
|
326
|
+
- Load `./step-06-structure.md`
|
|
327
327
|
|
|
328
328
|
## APPEND TO DOCUMENT:
|
|
329
329
|
|
|
@@ -354,6 +354,6 @@ When user selects 'C', append the content directly to the document using the str
|
|
|
354
354
|
|
|
355
355
|
## NEXT STEP:
|
|
356
356
|
|
|
357
|
-
After user selects 'C' and content is saved to document, load
|
|
357
|
+
After user selects 'C' and content is saved to document, load `./step-06-structure.md` to define the complete project structure.
|
|
358
358
|
|
|
359
359
|
Remember: Do NOT proceed to step-06 until user explicitly selects 'C' from the A/P/C menu and content is saved!
|
|
@@ -32,8 +32,8 @@ This step will generate content and present choices:
|
|
|
32
32
|
|
|
33
33
|
## PROTOCOL INTEGRATION:
|
|
34
34
|
|
|
35
|
-
- When 'A' selected:
|
|
36
|
-
- When 'P' selected:
|
|
35
|
+
- When 'A' selected: Invoke the `xiaoma-advanced-elicitation` skill
|
|
36
|
+
- When 'P' selected: Invoke the `xiaoma-party-mode` skill
|
|
37
37
|
- PROTOCOLS always return to display this step's A/P/C menu after the A or P have completed
|
|
38
38
|
- User accepts/rejects protocol changes before proceeding
|
|
39
39
|
|
|
@@ -325,7 +325,7 @@ Show the generated project structure content and present choices:
|
|
|
325
325
|
|
|
326
326
|
#### If 'A' (Advanced Elicitation):
|
|
327
327
|
|
|
328
|
-
-
|
|
328
|
+
- Invoke the `xiaoma-advanced-elicitation` skill with current project structure
|
|
329
329
|
- Process enhanced organizational insights that come back
|
|
330
330
|
- Ask user: "Accept these changes to the project structure? (y/n)"
|
|
331
331
|
- If yes: Update content, then return to A/P/C menu
|
|
@@ -333,7 +333,7 @@ Show the generated project structure content and present choices:
|
|
|
333
333
|
|
|
334
334
|
#### If 'P' (Party Mode):
|
|
335
335
|
|
|
336
|
-
-
|
|
336
|
+
- Invoke the `xiaoma-party-mode` skill with project structure context
|
|
337
337
|
- Process collaborative insights about organization trade-offs
|
|
338
338
|
- Ask user: "Accept these changes to the project structure? (y/n)"
|
|
339
339
|
- If yes: Update content, then return to A/P/C menu
|
|
@@ -343,7 +343,7 @@ Show the generated project structure content and present choices:
|
|
|
343
343
|
|
|
344
344
|
- Append the final content to `{planning_artifacts}/architecture.md`
|
|
345
345
|
- Update frontmatter: `stepsCompleted: [1, 2, 3, 4, 5, 6]`
|
|
346
|
-
- Load
|
|
346
|
+
- Load `./step-07-validation.md`
|
|
347
347
|
|
|
348
348
|
## APPEND TO DOCUMENT:
|
|
349
349
|
|
|
@@ -374,6 +374,6 @@ When user selects 'C', append the content directly to the document using the str
|
|
|
374
374
|
|
|
375
375
|
## NEXT STEP:
|
|
376
376
|
|
|
377
|
-
After user selects 'C' and content is saved to document, load
|
|
377
|
+
After user selects 'C' and content is saved to document, load `./step-07-validation.md` to validate architectural coherence and completeness.
|
|
378
378
|
|
|
379
379
|
Remember: Do NOT proceed to step-07 until user explicitly selects 'C' from the A/P/C menu and content is saved!
|
|
@@ -32,8 +32,8 @@ This step will generate content and present choices:
|
|
|
32
32
|
|
|
33
33
|
## PROTOCOL INTEGRATION:
|
|
34
34
|
|
|
35
|
-
- When 'A' selected:
|
|
36
|
-
- When 'P' selected:
|
|
35
|
+
- When 'A' selected: Invoke the `xiaoma-advanced-elicitation` skill
|
|
36
|
+
- When 'P' selected: Invoke the `xiaoma-party-mode` skill
|
|
37
37
|
- PROTOCOLS always return to display this step's A/P/C menu after the A or P have completed
|
|
38
38
|
- User accepts/rejects protocol changes before proceeding
|
|
39
39
|
|
|
@@ -305,7 +305,7 @@ Show the validation results and present choices:
|
|
|
305
305
|
|
|
306
306
|
#### If 'A' (Advanced Elicitation):
|
|
307
307
|
|
|
308
|
-
-
|
|
308
|
+
- Invoke the `xiaoma-advanced-elicitation` skill with validation issues
|
|
309
309
|
- Process enhanced solutions for complex concerns
|
|
310
310
|
- Ask user: "Accept these architectural improvements? (y/n)"
|
|
311
311
|
- If yes: Update content, then return to A/P/C menu
|
|
@@ -313,7 +313,7 @@ Show the validation results and present choices:
|
|
|
313
313
|
|
|
314
314
|
#### If 'P' (Party Mode):
|
|
315
315
|
|
|
316
|
-
-
|
|
316
|
+
- Invoke the `xiaoma-party-mode` skill with validation context
|
|
317
317
|
- Process collaborative insights on implementation readiness
|
|
318
318
|
- Ask user: "Accept these changes to the validation results? (y/n)"
|
|
319
319
|
- If yes: Update content, then return to A/P/C menu
|
|
@@ -323,7 +323,7 @@ Show the validation results and present choices:
|
|
|
323
323
|
|
|
324
324
|
- Append the final content to `{planning_artifacts}/architecture.md`
|
|
325
325
|
- Update frontmatter: `stepsCompleted: [1, 2, 3, 4, 5, 6, 7]`
|
|
326
|
-
- Load
|
|
326
|
+
- Load `./step-08-complete.md`
|
|
327
327
|
|
|
328
328
|
## APPEND TO DOCUMENT:
|
|
329
329
|
|
|
@@ -354,6 +354,6 @@ When user selects 'C', append the content directly to the document using the str
|
|
|
354
354
|
|
|
355
355
|
## NEXT STEP:
|
|
356
356
|
|
|
357
|
-
After user selects 'C' and content is saved to document, load
|
|
357
|
+
After user selects 'C' and content is saved to document, load `./step-08-complete.md` to complete the workflow and provide implementation guidance.
|
|
358
358
|
|
|
359
359
|
Remember: Do NOT proceed to step-08 until user explicitly selects 'C' from the A/P/C menu and content is saved!
|
|
@@ -1,8 +1,3 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: create-architecture
|
|
3
|
-
description: 'Create architecture solution design decisions for AI agent consistency. Use when the user says "lets create architecture" or "create technical architecture" or "create a solution design"'
|
|
4
|
-
---
|
|
5
|
-
|
|
6
1
|
# Architecture Workflow
|
|
7
2
|
|
|
8
3
|
**Goal:** Create comprehensive architecture decisions through collaborative step-by-step discovery that ensures AI agents implement consistently.
|
|
@@ -34,16 +29,10 @@ Load config from `{project-root}/_xiaoma/xmc/config.yaml` and resolve:
|
|
|
34
29
|
- `date` as system-generated current datetime
|
|
35
30
|
- ✅ YOU MUST ALWAYS SPEAK OUTPUT In your Agent communication style with the config `{communication_language}`
|
|
36
31
|
|
|
37
|
-
### Paths
|
|
38
|
-
|
|
39
|
-
- `installed_path` = `{project-root}/_xiaoma/xmc/workflows/3-solutioning/create-architecture`
|
|
40
|
-
- `template_path` = `{installed_path}/architecture-decision-template.md`
|
|
41
|
-
- `data_files_path` = `{installed_path}/data/`
|
|
42
|
-
|
|
43
32
|
---
|
|
44
33
|
|
|
45
34
|
## EXECUTION
|
|
46
35
|
|
|
47
|
-
Read fully and follow:
|
|
36
|
+
Read fully and follow: `./steps/step-01-init.md` to begin the workflow.
|
|
48
37
|
|
|
49
38
|
**Note:** Input document discovery and all initialization protocols are handled in step-01-init.md.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
type: skill
|
|
@@ -1,25 +1,3 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: 'step-01-validate-prerequisites'
|
|
3
|
-
description: 'Validate required documents exist and extract all requirements for epic and story creation'
|
|
4
|
-
|
|
5
|
-
# Path Definitions
|
|
6
|
-
workflow_path: '{project-root}/_xiaoma/xmc/workflows/3-solutioning/create-epics-and-stories'
|
|
7
|
-
|
|
8
|
-
# File References
|
|
9
|
-
thisStepFile: './step-01-validate-prerequisites.md'
|
|
10
|
-
nextStepFile: './step-02-design-epics.md'
|
|
11
|
-
workflowFile: '{workflow_path}/workflow.md'
|
|
12
|
-
outputFile: '{planning_artifacts}/epics.md'
|
|
13
|
-
epicsTemplate: '{workflow_path}/templates/epics-template.md'
|
|
14
|
-
|
|
15
|
-
# Task References
|
|
16
|
-
advancedElicitationTask: '{project-root}/_xiaoma/core/workflows/advanced-elicitation/workflow.md'
|
|
17
|
-
partyModeWorkflow: '{project-root}/_xiaoma/core/workflows/party-mode/workflow.md'
|
|
18
|
-
|
|
19
|
-
# Template References
|
|
20
|
-
epicsTemplate: '{workflow_path}/templates/epics-template.md'
|
|
21
|
-
---
|
|
22
|
-
|
|
23
1
|
# Step 1: Validate Prerequisites and Extract Requirements
|
|
24
2
|
|
|
25
3
|
## STEP GOAL:
|
|
@@ -54,7 +32,7 @@ To validate that all required input documents exist and extract all requirements
|
|
|
54
32
|
## EXECUTION PROTOCOLS:
|
|
55
33
|
|
|
56
34
|
- 🎯 Extract requirements systematically from all documents
|
|
57
|
-
- 💾 Populate {
|
|
35
|
+
- 💾 Populate {planning_artifacts}/epics.md with extracted requirements
|
|
58
36
|
- 📖 Update frontmatter with extraction progress
|
|
59
37
|
- 🚫 FORBIDDEN to load next step until user selects 'C' and requirements are extracted
|
|
60
38
|
|
|
@@ -91,7 +69,7 @@ Search for required documents using these patterns (sharded means a large docume
|
|
|
91
69
|
1. `{planning_artifacts}/*ux*.md` (whole document)
|
|
92
70
|
2. `{planning_artifacts}/*ux*/index.md` (sharded version)
|
|
93
71
|
|
|
94
|
-
Before proceeding, Ask the user if there are any other documents to include for analysis, and if anything found should be excluded. Wait for user confirmation. Once confirmed, create the {
|
|
72
|
+
Before proceeding, Ask the user if there are any other documents to include for analysis, and if anything found should be excluded. Wait for user confirmation. Once confirmed, create the {planning_artifacts}/epics.md from the ../templates/epics-template.md and in the front matter list the files in the array of `inputDocuments: []`.
|
|
95
73
|
|
|
96
74
|
### 3. Extract Functional Requirements (FRs)
|
|
97
75
|
|
|
@@ -154,31 +132,43 @@ Review the Architecture document for technical requirements that impact epic and
|
|
|
154
132
|
...
|
|
155
133
|
```
|
|
156
134
|
|
|
157
|
-
### 6. Extract
|
|
135
|
+
### 6. Extract UX Design Requirements (if UX document exists)
|
|
136
|
+
|
|
137
|
+
**IMPORTANT**: The UX Design Specification is a first-class input document, not supplementary material. Requirements from the UX spec must be extracted with the same rigor as PRD functional requirements.
|
|
158
138
|
|
|
159
|
-
|
|
139
|
+
Read the FULL UX Design document and extract ALL actionable work items:
|
|
160
140
|
|
|
161
141
|
**Look for:**
|
|
162
142
|
|
|
163
|
-
-
|
|
164
|
-
-
|
|
165
|
-
-
|
|
166
|
-
-
|
|
167
|
-
-
|
|
168
|
-
-
|
|
143
|
+
- **Design token work**: Color systems, spacing scales, typography tokens that need implementation or consolidation
|
|
144
|
+
- **Component proposals**: Reusable UI components identified in the UX spec (e.g., ConfirmActions, StatusMessage, EmptyState, FocusIndicator)
|
|
145
|
+
- **Visual standardization**: Semantic CSS classes, consistent color palette usage, design pattern consolidation
|
|
146
|
+
- **Accessibility requirements**: Contrast audit fixes, ARIA patterns, keyboard navigation, screen reader support
|
|
147
|
+
- **Responsive design requirements**: Breakpoints, layout adaptations, mobile-specific interactions
|
|
148
|
+
- **Interaction patterns**: Animations, transitions, loading states, error handling UX
|
|
149
|
+
- **Browser/device compatibility**: Target platforms, progressive enhancement requirements
|
|
169
150
|
|
|
170
|
-
**
|
|
151
|
+
**Format UX Design Requirements as a SEPARATE section (not merged into Additional Requirements):**
|
|
152
|
+
|
|
153
|
+
```
|
|
154
|
+
UX-DR1: [Actionable UX design requirement with clear implementation scope]
|
|
155
|
+
UX-DR2: [Actionable UX design requirement with clear implementation scope]
|
|
156
|
+
...
|
|
157
|
+
```
|
|
158
|
+
|
|
159
|
+
**🚨 CRITICAL**: Do NOT reduce UX requirements to vague summaries. Each UX-DR must be specific enough to generate a story with testable acceptance criteria. If the UX spec identifies 6 reusable components, list all 6 — not "create reusable components."
|
|
171
160
|
|
|
172
161
|
### 7. Load and Initialize Template
|
|
173
162
|
|
|
174
|
-
Load
|
|
163
|
+
Load ../templates/epics-template.md and initialize {planning_artifacts}/epics.md:
|
|
175
164
|
|
|
176
|
-
1. Copy the entire template to {
|
|
165
|
+
1. Copy the entire template to {planning_artifacts}/epics.md
|
|
177
166
|
2. Replace {{project_name}} with the actual project name
|
|
178
167
|
3. Replace placeholder sections with extracted requirements:
|
|
179
168
|
- {{fr_list}} → extracted FRs
|
|
180
169
|
- {{nfr_list}} → extracted NFRs
|
|
181
|
-
- {{additional_requirements}} → extracted additional requirements
|
|
170
|
+
- {{additional_requirements}} → extracted additional requirements (from Architecture)
|
|
171
|
+
- {{ux_design_requirements}} → extracted UX Design Requirements (if UX document exists)
|
|
182
172
|
4. Leave {{requirements_coverage_map}} and {{epics_list}} as placeholders for now
|
|
183
173
|
|
|
184
174
|
### 8. Present Extracted Requirements
|
|
@@ -197,12 +187,17 @@ Display to user:
|
|
|
197
187
|
- Display key NFRs
|
|
198
188
|
- Ask if any constraints were missed
|
|
199
189
|
|
|
200
|
-
**Additional Requirements:**
|
|
190
|
+
**Additional Requirements (Architecture):**
|
|
201
191
|
|
|
202
192
|
- Summarize technical requirements from Architecture
|
|
203
|
-
- Summarize UX requirements (if applicable)
|
|
204
193
|
- Verify completeness
|
|
205
194
|
|
|
195
|
+
**UX Design Requirements (if applicable):**
|
|
196
|
+
|
|
197
|
+
- Show count of UX-DRs found
|
|
198
|
+
- Display key UX Design requirements (design tokens, components, accessibility)
|
|
199
|
+
- Verify each UX-DR is specific enough for story creation
|
|
200
|
+
|
|
206
201
|
### 9. Get User Confirmation
|
|
207
202
|
|
|
208
203
|
Ask: "Do these extracted requirements accurately represent what needs to be built? Any additions or corrections?"
|
|
@@ -211,11 +206,12 @@ Update the requirements based on user feedback until confirmation is received.
|
|
|
211
206
|
|
|
212
207
|
## CONTENT TO SAVE TO DOCUMENT:
|
|
213
208
|
|
|
214
|
-
After extraction and confirmation, update {
|
|
209
|
+
After extraction and confirmation, update {planning_artifacts}/epics.md with:
|
|
215
210
|
|
|
216
211
|
- Complete FR list in {{fr_list}} section
|
|
217
212
|
- Complete NFR list in {{nfr_list}} section
|
|
218
213
|
- All additional requirements in {{additional_requirements}} section
|
|
214
|
+
- UX Design requirements in {{ux_design_requirements}} section (if UX document exists)
|
|
219
215
|
|
|
220
216
|
### 10. Present MENU OPTIONS
|
|
221
217
|
|
|
@@ -229,12 +225,12 @@ Display: `**Confirm the Requirements are complete and correct to [C] continue:**
|
|
|
229
225
|
|
|
230
226
|
#### Menu Handling Logic:
|
|
231
227
|
|
|
232
|
-
- IF C: Save all to {
|
|
228
|
+
- IF C: Save all to {planning_artifacts}/epics.md, update frontmatter, then read fully and follow: ./step-02-design-epics.md
|
|
233
229
|
- IF Any other comments or queries: help user respond then [Redisplay Menu Options](#10-present-menu-options)
|
|
234
230
|
|
|
235
231
|
## CRITICAL STEP COMPLETION NOTE
|
|
236
232
|
|
|
237
|
-
ONLY WHEN C is selected and all requirements are saved to document and frontmatter is updated, will you then read fully and follow:
|
|
233
|
+
ONLY WHEN C is selected and all requirements are saved to document and frontmatter is updated, will you then read fully and follow: ./step-02-design-epics.md to begin epic design step.
|
|
238
234
|
|
|
239
235
|
---
|
|
240
236
|
|
|
@@ -1,24 +1,3 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: 'step-02-design-epics'
|
|
3
|
-
description: 'Design and approve the epics_list that will organize all requirements into user-value-focused epics'
|
|
4
|
-
|
|
5
|
-
# Path Definitions
|
|
6
|
-
workflow_path: '{project-root}/_xiaoma/xmc/workflows/3-solutioning/create-epics-and-stories'
|
|
7
|
-
|
|
8
|
-
# File References
|
|
9
|
-
thisStepFile: './step-02-design-epics.md'
|
|
10
|
-
nextStepFile: './step-03-create-stories.md'
|
|
11
|
-
workflowFile: '{workflow_path}/workflow.md'
|
|
12
|
-
outputFile: '{planning_artifacts}/epics.md'
|
|
13
|
-
|
|
14
|
-
# Task References
|
|
15
|
-
advancedElicitationTask: '{project-root}/_xiaoma/core/workflows/advanced-elicitation/workflow.md'
|
|
16
|
-
partyModeWorkflow: '{project-root}/_xiaoma/core/workflows/party-mode/workflow.md'
|
|
17
|
-
|
|
18
|
-
# Template References
|
|
19
|
-
epicsTemplate: '{workflow_path}/templates/epics-template.md'
|
|
20
|
-
---
|
|
21
|
-
|
|
22
1
|
# Step 2: Design Epic List
|
|
23
2
|
|
|
24
3
|
## STEP GOAL:
|
|
@@ -54,7 +33,7 @@ To design and get approval for the epics_list that will organize all requirement
|
|
|
54
33
|
## EXECUTION PROTOCOLS:
|
|
55
34
|
|
|
56
35
|
- 🎯 Design epics collaboratively based on extracted requirements
|
|
57
|
-
- 💾 Update {{epics_list}} in {
|
|
36
|
+
- 💾 Update {{epics_list}} in {planning_artifacts}/epics.md
|
|
58
37
|
- 📖 Document the FR coverage mapping
|
|
59
38
|
- 🚫 FORBIDDEN to load next step until user approves epics_list
|
|
60
39
|
|
|
@@ -62,7 +41,7 @@ To design and get approval for the epics_list that will organize all requirement
|
|
|
62
41
|
|
|
63
42
|
### 1. Review Extracted Requirements
|
|
64
43
|
|
|
65
|
-
Load {
|
|
44
|
+
Load {planning_artifacts}/epics.md and review:
|
|
66
45
|
|
|
67
46
|
- **Functional Requirements:** Count and review FRs from Step 1
|
|
68
47
|
- **Non-Functional Requirements:** Review NFRs that need to be addressed
|
|
@@ -182,7 +161,7 @@ If user wants changes:
|
|
|
182
161
|
|
|
183
162
|
## CONTENT TO UPDATE IN DOCUMENT:
|
|
184
163
|
|
|
185
|
-
After approval, update {
|
|
164
|
+
After approval, update {planning_artifacts}/epics.md:
|
|
186
165
|
|
|
187
166
|
1. Replace {{epics_list}} placeholder with the approved epic list
|
|
188
167
|
2. Replace {{requirements_coverage_map}} with the coverage map
|
|
@@ -194,9 +173,9 @@ Display: "**Select an Option:** [A] Advanced Elicitation [P] Party Mode [C] Cont
|
|
|
194
173
|
|
|
195
174
|
#### Menu Handling Logic:
|
|
196
175
|
|
|
197
|
-
- IF A:
|
|
198
|
-
- IF P:
|
|
199
|
-
- IF C: Save approved epics_list to {
|
|
176
|
+
- IF A: Invoke the `xiaoma-advanced-elicitation` skill
|
|
177
|
+
- IF P: Invoke the `xiaoma-party-mode` skill
|
|
178
|
+
- IF C: Save approved epics_list to {planning_artifacts}/epics.md, update frontmatter, then read fully and follow: ./step-03-create-stories.md
|
|
200
179
|
- IF Any other comments or queries: help user respond then [Redisplay Menu Options](#8-present-menu-options)
|
|
201
180
|
|
|
202
181
|
#### EXECUTION RULES:
|
|
@@ -208,7 +187,7 @@ Display: "**Select an Option:** [A] Advanced Elicitation [P] Party Mode [C] Cont
|
|
|
208
187
|
|
|
209
188
|
## CRITICAL STEP COMPLETION NOTE
|
|
210
189
|
|
|
211
|
-
ONLY WHEN C is selected and the approved epics_list is saved to document, will you then read fully and follow:
|
|
190
|
+
ONLY WHEN C is selected and the approved epics_list is saved to document, will you then read fully and follow: ./step-03-create-stories.md to begin story creation step.
|
|
212
191
|
|
|
213
192
|
---
|
|
214
193
|
|
|
@@ -1,24 +1,3 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: 'step-03-create-stories'
|
|
3
|
-
description: 'Generate all epics with their stories following the template structure'
|
|
4
|
-
|
|
5
|
-
# Path Definitions
|
|
6
|
-
workflow_path: '{project-root}/_xiaoma/xmc/workflows/3-solutioning/create-epics-and-stories'
|
|
7
|
-
|
|
8
|
-
# File References
|
|
9
|
-
thisStepFile: './step-03-create-stories.md'
|
|
10
|
-
nextStepFile: './step-04-final-validation.md'
|
|
11
|
-
workflowFile: '{workflow_path}/workflow.md'
|
|
12
|
-
outputFile: '{planning_artifacts}/epics.md'
|
|
13
|
-
|
|
14
|
-
# Task References
|
|
15
|
-
advancedElicitationTask: '{project-root}/_xiaoma/core/workflows/advanced-elicitation/workflow.md'
|
|
16
|
-
partyModeWorkflow: '{project-root}/_xiaoma/core/workflows/party-mode/workflow.md'
|
|
17
|
-
|
|
18
|
-
# Template References
|
|
19
|
-
epicsTemplate: '{workflow_path}/templates/epics-template.md'
|
|
20
|
-
---
|
|
21
|
-
|
|
22
1
|
# Step 3: Generate Epics and Stories
|
|
23
2
|
|
|
24
3
|
## STEP GOAL:
|
|
@@ -54,7 +33,7 @@ To generate all epics with their stories based on the approved epics_list, follo
|
|
|
54
33
|
## EXECUTION PROTOCOLS:
|
|
55
34
|
|
|
56
35
|
- 🎯 Generate stories collaboratively with user input
|
|
57
|
-
- 💾 Append epics and stories to {
|
|
36
|
+
- 💾 Append epics and stories to {planning_artifacts}/epics.md following template
|
|
58
37
|
- 📖 Process epics one at a time in sequence
|
|
59
38
|
- 🚫 FORBIDDEN to skip any epic or rush through stories
|
|
60
39
|
|
|
@@ -62,13 +41,15 @@ To generate all epics with their stories based on the approved epics_list, follo
|
|
|
62
41
|
|
|
63
42
|
### 1. Load Approved Epic Structure
|
|
64
43
|
|
|
65
|
-
Load {
|
|
44
|
+
Load {planning_artifacts}/epics.md and review:
|
|
66
45
|
|
|
67
46
|
- Approved epics_list from Step 2
|
|
68
47
|
- FR coverage map
|
|
69
|
-
- All requirements (FRs, NFRs, additional)
|
|
48
|
+
- All requirements (FRs, NFRs, additional, **UX Design requirements if present**)
|
|
70
49
|
- Template structure at the end of the document
|
|
71
50
|
|
|
51
|
+
**UX Design Integration**: If UX Design Requirements (UX-DRs) were extracted in Step 1, ensure they are visible during story creation. UX-DRs must be covered by stories — either within existing epics (e.g., accessibility fixes for a feature epic) or in a dedicated "Design System / UX Polish" epic.
|
|
52
|
+
|
|
72
53
|
### 2. Explain Story Creation Approach
|
|
73
54
|
|
|
74
55
|
**STORY CREATION GUIDELINES:**
|
|
@@ -146,6 +127,7 @@ Display:
|
|
|
146
127
|
- Epic goal statement
|
|
147
128
|
- FRs covered by this epic
|
|
148
129
|
- Any NFRs or additional requirements relevant
|
|
130
|
+
- Any UX Design Requirements (UX-DRs) relevant to this epic
|
|
149
131
|
|
|
150
132
|
#### B. Story Breakdown
|
|
151
133
|
|
|
@@ -183,7 +165,7 @@ After writing each story:
|
|
|
183
165
|
|
|
184
166
|
When story is approved:
|
|
185
167
|
|
|
186
|
-
- Append it to {
|
|
168
|
+
- Append it to {planning_artifacts}/epics.md following template structure
|
|
187
169
|
- Use correct numbering (Epic N, Story M)
|
|
188
170
|
- Maintain proper markdown formatting
|
|
189
171
|
|
|
@@ -207,11 +189,12 @@ After all epics and stories are generated:
|
|
|
207
189
|
- Verify the document follows template structure exactly
|
|
208
190
|
- Ensure all placeholders are replaced
|
|
209
191
|
- Confirm all FRs are covered
|
|
192
|
+
- **Confirm all UX Design Requirements (UX-DRs) are covered by at least one story** (if UX document was an input)
|
|
210
193
|
- Check formatting consistency
|
|
211
194
|
|
|
212
195
|
## TEMPLATE STRUCTURE COMPLIANCE:
|
|
213
196
|
|
|
214
|
-
The final {
|
|
197
|
+
The final {planning_artifacts}/epics.md must follow this structure exactly:
|
|
215
198
|
|
|
216
199
|
1. **Overview** section with project name
|
|
217
200
|
2. **Requirements Inventory** with all three subsections populated
|
|
@@ -231,9 +214,9 @@ Display: "**Select an Option:** [A] Advanced Elicitation [P] Party Mode [C] Cont
|
|
|
231
214
|
|
|
232
215
|
#### Menu Handling Logic:
|
|
233
216
|
|
|
234
|
-
- IF A:
|
|
235
|
-
- IF P:
|
|
236
|
-
- IF C: Save content to {
|
|
217
|
+
- IF A: Invoke the `xiaoma-advanced-elicitation` skill
|
|
218
|
+
- IF P: Invoke the `xiaoma-party-mode` skill
|
|
219
|
+
- IF C: Save content to {planning_artifacts}/epics.md, update frontmatter, then read fully and follow: ./step-04-final-validation.md
|
|
237
220
|
- IF Any other comments or queries: help user respond then [Redisplay Menu Options](#7-present-final-menu-options)
|
|
238
221
|
|
|
239
222
|
#### EXECUTION RULES:
|
|
@@ -245,7 +228,7 @@ Display: "**Select an Option:** [A] Advanced Elicitation [P] Party Mode [C] Cont
|
|
|
245
228
|
|
|
246
229
|
## CRITICAL STEP COMPLETION NOTE
|
|
247
230
|
|
|
248
|
-
ONLY WHEN [C continue option] is selected and [all epics and stories saved to document following the template structure exactly], will you then read fully and follow: `
|
|
231
|
+
ONLY WHEN [C continue option] is selected and [all epics and stories saved to document following the template structure exactly], will you then read fully and follow: `./step-04-final-validation.md` to begin final validation phase.
|
|
249
232
|
|
|
250
233
|
---
|
|
251
234
|
|
|
@@ -1,23 +1,3 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: 'step-04-final-validation'
|
|
3
|
-
description: 'Validate complete coverage of all requirements and ensure implementation readiness'
|
|
4
|
-
|
|
5
|
-
# Path Definitions
|
|
6
|
-
workflow_path: '{project-root}/_xiaoma/xmc/workflows/3-solutioning/create-epics-and-stories'
|
|
7
|
-
|
|
8
|
-
# File References
|
|
9
|
-
thisStepFile: './step-04-final-validation.md'
|
|
10
|
-
workflowFile: '{workflow_path}/workflow.md'
|
|
11
|
-
outputFile: '{planning_artifacts}/epics.md'
|
|
12
|
-
|
|
13
|
-
# Task References
|
|
14
|
-
advancedElicitationTask: '{project-root}/_xiaoma/core/workflows/advanced-elicitation/workflow.md'
|
|
15
|
-
partyModeWorkflow: '{project-root}/_xiaoma/core/workflows/party-mode/workflow.md'
|
|
16
|
-
|
|
17
|
-
# Template References
|
|
18
|
-
epicsTemplate: '{workflow_path}/templates/epics-template.md'
|
|
19
|
-
---
|
|
20
|
-
|
|
21
1
|
# Step 4: Final Validation
|
|
22
2
|
|
|
23
3
|
## STEP GOAL:
|
|
@@ -142,6 +122,8 @@ If all validations pass:
|
|
|
142
122
|
**Present Final Menu:**
|
|
143
123
|
**All validations complete!** [C] Complete Workflow
|
|
144
124
|
|
|
125
|
+
HALT — wait for user input before proceeding.
|
|
126
|
+
|
|
145
127
|
When C is selected, the workflow is complete and the epics.md is ready for development.
|
|
146
128
|
|
|
147
129
|
Epics and Stories complete. Invoke the `xiaoma-help` skill.
|
|
@@ -1,8 +1,3 @@
|
|
|
1
|
-
---
|
|
2
|
-
name: create-epics-and-stories
|
|
3
|
-
description: 'Break requirements into epics and user stories. Use when the user says "create the epics and stories list"'
|
|
4
|
-
---
|
|
5
|
-
|
|
6
1
|
# Create Epics and Stories
|
|
7
2
|
|
|
8
3
|
**Goal:** Transform PRD requirements and Architecture decisions into comprehensive stories organized by user value, creating detailed, actionable stories with complete acceptance criteria for development teams.
|
|
@@ -55,4 +50,4 @@ Load and read full config from {project-root}/_xiaoma/xmc/config.yaml and resolv
|
|
|
55
50
|
|
|
56
51
|
### 2. First Step EXECUTION
|
|
57
52
|
|
|
58
|
-
Read fully and follow:
|
|
53
|
+
Read fully and follow: `./steps/step-01-validate-prerequisites.md` to begin the workflow.
|
package/src/xmc/workflows/3-solutioning/xiaoma-create-epics-and-stories/xiaoma-skill-manifest.yaml
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
type: skill
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: xiaoma-auto-story-pipeline
|
|
3
|
+
description: "Automated end-to-end story development pipeline: create → validate → develop → review → test → fix → done. Use when the user says 'run auto pipeline', 'automate story development', or 'auto story pipeline'"
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
Follow the instructions in [workflow.md](workflow.md).
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# Auto Story Pipeline Completion Checklist
|
|
2
|
+
|
|
3
|
+
Use this checklist to validate the pipeline completed successfully for each story.
|
|
4
|
+
|
|
5
|
+
## Per-Story Validation
|
|
6
|
+
|
|
7
|
+
- [ ] **Story Created** — Story file exists at `{implementation_artifacts}/{story_key}.md`
|
|
8
|
+
- [ ] **Story Validated** — PM validation passed (GO decision, readiness score >= 7/10)
|
|
9
|
+
- [ ] **Implementation Complete** — All tasks/subtasks marked [x] in story file
|
|
10
|
+
- [ ] **Tests Pass** — All unit, integration, and regression tests pass
|
|
11
|
+
- [ ] **Code Review Passed** — All HIGH and MEDIUM issues resolved
|
|
12
|
+
- [ ] **QA Test Passed** — All acceptance criteria verified with real data
|
|
13
|
+
- [ ] **Status Updated** — Story status set to "done" in story file
|
|
14
|
+
- [ ] **Sprint Status Synced** — `sprint-status.yaml` updated with "done" for story key
|
|
15
|
+
|
|
16
|
+
## Pipeline-Level Validation
|
|
17
|
+
|
|
18
|
+
- [ ] **All Stories Processed** — Every backlog story in sprint-status.yaml has been processed
|
|
19
|
+
- [ ] **No Orphaned States** — No stories stuck in intermediate states (in-progress, review)
|
|
20
|
+
- [ ] **Sprint Status Consistent** — All story statuses in sprint-status.yaml match story files
|
|
21
|
+
- [ ] **Fix Iterations Within Limits** — No story exceeded `{max_fix_iterations}` fix iterations (default: 5, configurable via config.yaml)
|
|
22
|
+
- [ ] **Epic Completion Verified** — All epics where every story is "done" have been marked "done" in sprint-status.yaml
|