@zeyue0329/xiaoma-cli 1.13.0 → 1.15.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/package.json +24 -14
- package/src/core-skills/module-help.csv +13 -0
- package/src/{core → core-skills}/module.yaml +8 -0
- package/src/{core/skills/xiaoma-advanced-elicitation/workflow.md → core-skills/xiaoma-advanced-elicitation/SKILL.md} +10 -3
- package/src/core-skills/xiaoma-advanced-elicitation/methods.csv +70 -0
- package/src/{core/skills → core-skills}/xiaoma-brainstorming/steps/step-03-technique-execution.md +6 -4
- package/src/{core/skills → core-skills}/xiaoma-brainstorming/workflow.md +1 -1
- package/src/core-skills/xiaoma-customize/SKILL.md +111 -0
- package/src/core-skills/xiaoma-customize/scripts/list_customizable_skills.js +172 -0
- package/src/{core/skills → core-skills}/xiaoma-distillator/resources/distillate-format-reference.md +1 -1
- package/src/{core/skills → core-skills}/xiaoma-distillator/scripts/analyze_sources.py +2 -2
- package/src/{core/skills/xiaoma-editorial-review-prose/workflow.md → core-skills/xiaoma-editorial-review-prose/SKILL.md} +5 -0
- package/src/{core/skills/xiaoma-editorial-review-structure/workflow.md → core-skills/xiaoma-editorial-review-structure/SKILL.md} +5 -0
- package/src/core-skills/xiaoma-help/SKILL.md +75 -0
- package/src/{core/skills/xiaoma-index-docs/workflow.md → core-skills/xiaoma-index-docs/SKILL.md} +5 -0
- package/src/core-skills/xiaoma-party-mode/SKILL.md +128 -0
- package/src/{core/skills/xiaoma-review-adversarial-general/workflow.md → core-skills/xiaoma-review-adversarial-general/SKILL.md} +5 -0
- package/src/{core/skills/xiaoma-review-edge-case-hunter/workflow.md → core-skills/xiaoma-review-edge-case-hunter/SKILL.md} +5 -0
- package/src/{core/skills/xiaoma-shard-doc/workflow.md → core-skills/xiaoma-shard-doc/SKILL.md} +5 -0
- package/src/core-skills/xiaoma-spec/SKILL.md +129 -0
- package/src/core-skills/xiaoma-spec/assets/headless-schemas.md +33 -0
- package/src/core-skills/xiaoma-spec/assets/spec-template.md +49 -0
- package/src/core-skills/xiaoma-spec/customize.toml +53 -0
- package/src/scripts/resolve_config.js +163 -0
- package/src/scripts/resolve_customization.js +188 -0
- package/src/scripts/toml.js +338 -0
- package/src/xmc-skills/1-analysis/research/xiaoma-domain-research/SKILL.md +96 -0
- package/src/xmc-skills/1-analysis/research/xiaoma-domain-research/customize.toml +41 -0
- package/src/{xmc/workflows → xmc-skills}/1-analysis/research/xiaoma-domain-research/domain-steps/step-06-research-synthesis.md +6 -0
- package/src/xmc-skills/1-analysis/research/xiaoma-market-research/SKILL.md +96 -0
- package/src/xmc-skills/1-analysis/research/xiaoma-market-research/customize.toml +41 -0
- package/src/{xmc/workflows → xmc-skills}/1-analysis/research/xiaoma-market-research/steps/step-06-research-completion.md +6 -0
- package/src/xmc-skills/1-analysis/research/xiaoma-technical-research/SKILL.md +96 -0
- package/src/xmc-skills/1-analysis/research/xiaoma-technical-research/customize.toml +41 -0
- package/src/{xmc/workflows → xmc-skills}/1-analysis/research/xiaoma-technical-research/technical-steps/step-06-research-synthesis.md +6 -0
- package/src/xmc-skills/1-analysis/xiaoma-agent-analyst/SKILL.md +76 -0
- package/src/xmc-skills/1-analysis/xiaoma-agent-analyst/customize.toml +90 -0
- package/src/xmc-skills/1-analysis/xiaoma-agent-tech-writer/SKILL.md +76 -0
- package/src/xmc-skills/1-analysis/xiaoma-agent-tech-writer/customize.toml +81 -0
- package/src/xmc-skills/1-analysis/xiaoma-agent-tech-writer/explain-concept.md +20 -0
- package/src/xmc-skills/1-analysis/xiaoma-agent-tech-writer/mermaid-gen.md +20 -0
- package/src/xmc-skills/1-analysis/xiaoma-agent-tech-writer/validate-doc.md +19 -0
- package/src/xmc-skills/1-analysis/xiaoma-agent-tech-writer/write-document.md +20 -0
- package/src/{xmc/workflows/1-analysis/auto-requirements-pipeline → xmc-skills/1-analysis/xiaoma-auto-requirements-pipeline}/checklist.md +5 -2
- package/src/{xmc/workflows/1-analysis/auto-requirements-pipeline → xmc-skills/1-analysis/xiaoma-auto-requirements-pipeline}/steps/step-01-init-and-validate.md +18 -1
- package/src/{xmc/workflows/1-analysis/auto-requirements-pipeline → xmc-skills/1-analysis/xiaoma-auto-requirements-pipeline}/steps/step-02-requirements-analysis.md +3 -1
- package/src/{xmc/workflows/1-analysis/auto-requirements-pipeline → xmc-skills/1-analysis/xiaoma-auto-requirements-pipeline}/steps/step-03-architecture-analysis.md +5 -3
- package/src/{xmc/workflows/1-analysis/auto-requirements-pipeline → xmc-skills/1-analysis/xiaoma-auto-requirements-pipeline}/steps/step-04-create-prd.md +12 -14
- package/src/{xmc/workflows/1-analysis/auto-requirements-pipeline → xmc-skills/1-analysis/xiaoma-auto-requirements-pipeline}/steps/step-05-validate-prd.md +18 -15
- package/src/{xmc/workflows/1-analysis/auto-requirements-pipeline → xmc-skills/1-analysis/xiaoma-auto-requirements-pipeline}/steps/step-06-create-epics.md +9 -5
- package/src/{xmc/workflows/1-analysis/auto-requirements-pipeline → xmc-skills/1-analysis/xiaoma-auto-requirements-pipeline}/steps/step-07-create-architecture.md +10 -7
- package/src/xmc-skills/1-analysis/xiaoma-auto-requirements-pipeline/steps/step-08-finalize.md +184 -0
- package/src/xmc-skills/1-analysis/xiaoma-auto-requirements-pipeline/workflow.md +140 -0
- package/src/xmc-skills/1-analysis/xiaoma-auto-requirements-pipeline/xiaoma-skill-manifest.yaml +24 -0
- package/src/xmc-skills/1-analysis/xiaoma-document-project/SKILL.md +62 -0
- package/src/xmc-skills/1-analysis/xiaoma-document-project/customize.toml +41 -0
- package/src/{xmc/workflows → xmc-skills/1-analysis}/xiaoma-document-project/workflows/deep-dive-instructions.md +1 -0
- package/src/{xmc/workflows → xmc-skills/1-analysis}/xiaoma-document-project/workflows/full-scan-instructions.md +1 -0
- package/src/xmc-skills/1-analysis/xiaoma-prfaq/SKILL.md +135 -0
- package/src/xmc-skills/1-analysis/xiaoma-prfaq/agents/artifact-analyzer.md +60 -0
- package/src/xmc-skills/1-analysis/xiaoma-prfaq/agents/web-researcher.md +49 -0
- package/src/xmc-skills/1-analysis/xiaoma-prfaq/assets/prfaq-template.md +62 -0
- package/src/xmc-skills/1-analysis/xiaoma-prfaq/customize.toml +41 -0
- package/src/xmc-skills/1-analysis/xiaoma-prfaq/references/customer-faq.md +55 -0
- package/src/xmc-skills/1-analysis/xiaoma-prfaq/references/internal-faq.md +51 -0
- package/src/xmc-skills/1-analysis/xiaoma-prfaq/references/press-release.md +60 -0
- package/src/xmc-skills/1-analysis/xiaoma-prfaq/references/verdict.md +83 -0
- package/src/xmc-skills/1-analysis/xiaoma-prfaq/xiaoma-manifest.json +16 -0
- package/src/xmc-skills/1-analysis/xiaoma-product-brief/SKILL.md +91 -0
- package/src/xmc-skills/1-analysis/xiaoma-product-brief/assets/brief-template.md +41 -0
- package/src/xmc-skills/1-analysis/xiaoma-product-brief/customize.toml +99 -0
- package/src/xmc-skills/2-plan-workflows/xiaoma-agent-pm/SKILL.md +76 -0
- package/src/xmc-skills/2-plan-workflows/xiaoma-agent-pm/customize.toml +75 -0
- package/src/xmc-skills/2-plan-workflows/xiaoma-agent-ux-designer/SKILL.md +76 -0
- package/src/xmc-skills/2-plan-workflows/xiaoma-agent-ux-designer/customize.toml +60 -0
- package/src/xmc-skills/2-plan-workflows/xiaoma-create-prd/SKILL.md +30 -0
- package/src/xmc-skills/2-plan-workflows/xiaoma-create-prd/customize.toml +41 -0
- package/src/xmc-skills/2-plan-workflows/xiaoma-edit-prd/SKILL.md +30 -0
- package/src/xmc-skills/2-plan-workflows/xiaoma-edit-prd/customize.toml +42 -0
- package/src/xmc-skills/2-plan-workflows/xiaoma-prd/SKILL.md +92 -0
- package/src/xmc-skills/2-plan-workflows/xiaoma-prd/assets/headless-schemas.md +76 -0
- package/src/xmc-skills/2-plan-workflows/xiaoma-prd/assets/prd-template.md +165 -0
- package/src/xmc-skills/2-plan-workflows/xiaoma-prd/assets/prd-validation-checklist.md +217 -0
- package/src/xmc-skills/2-plan-workflows/xiaoma-prd/assets/validation-report-template.html +325 -0
- package/src/xmc-skills/2-plan-workflows/xiaoma-prd/customize.toml +147 -0
- package/src/xmc-skills/2-plan-workflows/xiaoma-prd/references/headless.md +39 -0
- package/src/xmc-skills/2-plan-workflows/xiaoma-prd/references/validate.md +97 -0
- package/src/xmc-skills/2-plan-workflows/xiaoma-ux/SKILL.md +90 -0
- package/src/xmc-skills/2-plan-workflows/xiaoma-ux/assets/color-themes.md +9 -0
- package/src/xmc-skills/2-plan-workflows/xiaoma-ux/assets/design-directions.md +9 -0
- package/src/xmc-skills/2-plan-workflows/xiaoma-ux/assets/design-example-editorial.md +158 -0
- package/src/xmc-skills/2-plan-workflows/xiaoma-ux/assets/design-example-mobile.md +93 -0
- package/src/xmc-skills/2-plan-workflows/xiaoma-ux/assets/design-example-shadcn.md +109 -0
- package/src/xmc-skills/2-plan-workflows/xiaoma-ux/assets/excalidraw-wireframe.md +19 -0
- package/src/xmc-skills/2-plan-workflows/xiaoma-ux/assets/experience-example-mobile.md +112 -0
- package/src/xmc-skills/2-plan-workflows/xiaoma-ux/assets/experience-example-shadcn.md +133 -0
- package/src/xmc-skills/2-plan-workflows/xiaoma-ux/assets/headless-schemas.md +84 -0
- package/src/xmc-skills/2-plan-workflows/xiaoma-ux/assets/key-screens.md +29 -0
- package/src/xmc-skills/2-plan-workflows/xiaoma-ux/assets/validation-report-template.html +319 -0
- package/src/xmc-skills/2-plan-workflows/xiaoma-ux/customize.toml +100 -0
- package/src/xmc-skills/2-plan-workflows/xiaoma-ux/references/creative-tools.md +19 -0
- package/src/xmc-skills/2-plan-workflows/xiaoma-ux/references/design-md-spec.md +50 -0
- package/src/xmc-skills/2-plan-workflows/xiaoma-ux/references/headless.md +37 -0
- package/src/xmc-skills/2-plan-workflows/xiaoma-ux/references/validate.md +115 -0
- package/src/xmc-skills/2-plan-workflows/xiaoma-validate-prd/SKILL.md +30 -0
- package/src/xmc-skills/2-plan-workflows/xiaoma-validate-prd/customize.toml +31 -0
- package/src/xmc-skills/3-solutioning/xiaoma-agent-architect/SKILL.md +76 -0
- package/src/xmc-skills/3-solutioning/xiaoma-agent-architect/customize.toml +65 -0
- package/src/xmc-skills/3-solutioning/xiaoma-check-implementation-readiness/SKILL.md +91 -0
- package/src/xmc-skills/3-solutioning/xiaoma-check-implementation-readiness/customize.toml +41 -0
- package/src/{xmc/workflows → xmc-skills}/3-solutioning/xiaoma-check-implementation-readiness/steps/step-01-document-discovery.md +1 -1
- package/src/{xmc/workflows → xmc-skills}/3-solutioning/xiaoma-check-implementation-readiness/steps/step-02-prd-analysis.md +1 -1
- package/src/{xmc/workflows → xmc-skills}/3-solutioning/xiaoma-check-implementation-readiness/steps/step-03-epic-coverage-validation.md +1 -1
- package/src/{xmc/workflows → xmc-skills}/3-solutioning/xiaoma-check-implementation-readiness/steps/step-06-final-assessment.md +6 -0
- package/src/xmc-skills/3-solutioning/xiaoma-create-architecture/SKILL.md +74 -0
- package/src/xmc-skills/3-solutioning/xiaoma-create-architecture/customize.toml +41 -0
- package/src/xmc-skills/3-solutioning/xiaoma-create-architecture/references/headless.md +37 -0
- package/src/{xmc/workflows → xmc-skills}/3-solutioning/xiaoma-create-architecture/steps/step-07-validation.md +23 -21
- package/src/{xmc/workflows → xmc-skills}/3-solutioning/xiaoma-create-architecture/steps/step-08-complete.md +6 -0
- package/src/xmc-skills/3-solutioning/xiaoma-create-epics-and-stories/SKILL.md +93 -0
- package/src/xmc-skills/3-solutioning/xiaoma-create-epics-and-stories/customize.toml +41 -0
- package/src/xmc-skills/3-solutioning/xiaoma-create-epics-and-stories/references/headless.md +35 -0
- package/src/{xmc/workflows → xmc-skills}/3-solutioning/xiaoma-create-epics-and-stories/steps/step-02-design-epics.md +34 -4
- package/src/{xmc/workflows → xmc-skills}/3-solutioning/xiaoma-create-epics-and-stories/steps/step-04-final-validation.md +12 -0
- package/src/xmc-skills/3-solutioning/xiaoma-generate-project-context/SKILL.md +81 -0
- package/src/xmc-skills/3-solutioning/xiaoma-generate-project-context/customize.toml +41 -0
- package/src/{xmc/workflows → xmc-skills/3-solutioning}/xiaoma-generate-project-context/steps/step-03-complete.md +6 -0
- package/src/xmc-skills/4-implementation/xiaoma-agent-dev/SKILL.md +76 -0
- package/src/xmc-skills/4-implementation/xiaoma-agent-dev/customize.toml +131 -0
- package/src/xmc-skills/4-implementation/xiaoma-auto-story-pipeline/checklist.md +29 -0
- package/src/{xmc/workflows/4-implementation/auto-story-pipeline → xmc-skills/4-implementation/xiaoma-auto-story-pipeline}/steps/step-01-init-and-validate.md +16 -8
- package/src/xmc-skills/4-implementation/xiaoma-auto-story-pipeline/steps/step-02-create-story.md +111 -0
- package/src/{xmc/workflows/4-implementation/auto-story-pipeline → xmc-skills/4-implementation/xiaoma-auto-story-pipeline}/steps/step-03-validate-story.md +4 -2
- package/src/{xmc/workflows/4-implementation/auto-story-pipeline → xmc-skills/4-implementation/xiaoma-auto-story-pipeline}/steps/step-04-develop-story.md +10 -6
- package/src/xmc-skills/4-implementation/xiaoma-auto-story-pipeline/steps/step-05-code-review.md +99 -0
- package/src/{xmc/workflows/4-implementation/auto-story-pipeline → xmc-skills/4-implementation/xiaoma-auto-story-pipeline}/steps/step-06-test-story.md +25 -12
- package/src/{xmc/workflows/4-implementation/auto-story-pipeline → xmc-skills/4-implementation/xiaoma-auto-story-pipeline}/steps/step-07-fix-and-retest.md +28 -13
- package/src/xmc-skills/4-implementation/xiaoma-auto-story-pipeline/steps/step-08-complete-story.md +174 -0
- package/src/xmc-skills/4-implementation/xiaoma-auto-story-pipeline/steps/step-09-finalize.md +145 -0
- package/src/xmc-skills/4-implementation/xiaoma-auto-story-pipeline/workflow.md +127 -0
- package/src/xmc-skills/4-implementation/xiaoma-auto-story-pipeline/xiaoma-skill-manifest.yaml +27 -0
- package/src/{xmc/workflows/4-implementation/auto-story-pipeline-batch → xmc-skills/4-implementation/xiaoma-auto-story-pipeline-batch}/SKILL.md +2 -2
- package/src/xmc-skills/4-implementation/xiaoma-auto-story-pipeline-batch/checklist.md +45 -0
- package/src/{xmc/workflows/4-implementation/auto-story-pipeline-batch → xmc-skills/4-implementation/xiaoma-auto-story-pipeline-batch}/workflow.md +150 -7
- package/src/{xmc/workflows/4-implementation/auto-story-pipeline-batch → xmc-skills/4-implementation/xiaoma-auto-story-pipeline-batch}/xiaoma-skill-manifest.yaml +2 -2
- package/src/xmc-skills/4-implementation/xiaoma-checkpoint-preview/SKILL.md +68 -0
- package/src/xmc-skills/4-implementation/xiaoma-checkpoint-preview/customize.toml +41 -0
- package/src/xmc-skills/4-implementation/xiaoma-checkpoint-preview/generate-trail.md +38 -0
- package/src/xmc-skills/4-implementation/xiaoma-checkpoint-preview/step-01-orientation.md +105 -0
- package/src/xmc-skills/4-implementation/xiaoma-checkpoint-preview/step-02-walkthrough.md +89 -0
- package/src/xmc-skills/4-implementation/xiaoma-checkpoint-preview/step-03-detail-pass.md +106 -0
- package/src/xmc-skills/4-implementation/xiaoma-checkpoint-preview/step-04-testing.md +74 -0
- package/src/xmc-skills/4-implementation/xiaoma-checkpoint-preview/step-05-wrapup.md +30 -0
- package/src/xmc-skills/4-implementation/xiaoma-code-review/SKILL.md +90 -0
- package/src/xmc-skills/4-implementation/xiaoma-code-review/customize.toml +41 -0
- package/src/xmc-skills/4-implementation/xiaoma-code-review/steps/step-01-gather-context.md +85 -0
- package/src/xmc-skills/4-implementation/xiaoma-code-review/steps/step-02-review.md +35 -0
- package/src/{xmc/workflows → xmc-skills}/4-implementation/xiaoma-code-review/steps/step-03-triage.md +7 -8
- package/src/xmc-skills/4-implementation/xiaoma-code-review/steps/step-04-present.md +132 -0
- package/src/{xmc/workflows/4-implementation/xiaoma-correct-course/workflow.md → xmc-skills/4-implementation/xiaoma-correct-course/SKILL.md} +65 -31
- package/src/{xmc/workflows → xmc-skills}/4-implementation/xiaoma-correct-course/checklist.md +2 -2
- package/src/xmc-skills/4-implementation/xiaoma-correct-course/customize.toml +41 -0
- package/src/{xmc/workflows/4-implementation/xiaoma-create-story/workflow.md → xmc-skills/4-implementation/xiaoma-create-story/SKILL.md} +60 -11
- package/src/xmc-skills/4-implementation/xiaoma-create-story/customize.toml +41 -0
- package/src/xmc-skills/4-implementation/xiaoma-create-story/references/headless.md +32 -0
- package/src/{xmc/workflows/4-implementation/xiaoma-dev-story/workflow.md → xmc-skills/4-implementation/xiaoma-dev-story/SKILL.md} +70 -20
- package/src/xmc-skills/4-implementation/xiaoma-dev-story/customize.toml +41 -0
- package/src/xmc-skills/4-implementation/xiaoma-investigate/SKILL.md +196 -0
- package/src/xmc-skills/4-implementation/xiaoma-investigate/customize.toml +62 -0
- package/src/xmc-skills/4-implementation/xiaoma-investigate/references/case-file-template.md +127 -0
- package/src/{xmc/workflows/xiaoma-qa-generate-e2e-tests/workflow.md → xmc-skills/4-implementation/xiaoma-qa-generate-e2e-tests/SKILL.md} +51 -23
- package/src/{xmc/workflows → xmc-skills/4-implementation}/xiaoma-qa-generate-e2e-tests/checklist.md +1 -5
- package/src/xmc-skills/4-implementation/xiaoma-qa-generate-e2e-tests/customize.toml +41 -0
- package/src/xmc-skills/4-implementation/xiaoma-quick-dev/SKILL.md +111 -0
- package/src/xmc-skills/4-implementation/xiaoma-quick-dev/compile-epic-context.md +62 -0
- package/src/xmc-skills/4-implementation/xiaoma-quick-dev/customize.toml +41 -0
- package/src/xmc-skills/4-implementation/xiaoma-quick-dev/spec-template.md +88 -0
- package/src/xmc-skills/4-implementation/xiaoma-quick-dev/step-01-clarify-and-route.md +100 -0
- package/src/xmc-skills/4-implementation/xiaoma-quick-dev/step-02-plan.md +47 -0
- package/src/xmc-skills/4-implementation/xiaoma-quick-dev/step-03-implement.md +41 -0
- package/src/xmc-skills/4-implementation/xiaoma-quick-dev/step-04-review.md +50 -0
- package/src/xmc-skills/4-implementation/xiaoma-quick-dev/step-05-present.md +78 -0
- package/src/xmc-skills/4-implementation/xiaoma-quick-dev/step-oneshot.md +71 -0
- package/src/xmc-skills/4-implementation/xiaoma-quick-dev/sync-sprint-status.md +19 -0
- package/src/{xmc/workflows/4-implementation/xiaoma-retrospective/workflow.md → xmc-skills/4-implementation/xiaoma-retrospective/SKILL.md} +185 -152
- package/src/xmc-skills/4-implementation/xiaoma-retrospective/customize.toml +41 -0
- package/src/{xmc/workflows/4-implementation/xiaoma-sprint-planning/workflow.md → xmc-skills/4-implementation/xiaoma-sprint-planning/SKILL.md} +59 -15
- package/src/xmc-skills/4-implementation/xiaoma-sprint-planning/customize.toml +41 -0
- package/src/xmc-skills/4-implementation/xiaoma-sprint-planning/references/headless.md +28 -0
- package/src/{xmc/workflows → xmc-skills}/4-implementation/xiaoma-sprint-planning/sprint-status-template.yaml +3 -3
- package/src/{xmc/workflows/4-implementation/xiaoma-sprint-status/workflow.md → xmc-skills/4-implementation/xiaoma-sprint-status/SKILL.md} +57 -20
- package/src/xmc-skills/4-implementation/xiaoma-sprint-status/customize.toml +41 -0
- package/src/{xmc/workflows/5-full-pipeline/auto-full-pipeline → xmc-skills/5-full-pipeline/xiaoma-auto-full-pipeline}/checklist.md +6 -0
- package/src/{xmc/workflows/5-full-pipeline/auto-full-pipeline → xmc-skills/5-full-pipeline/xiaoma-auto-full-pipeline}/steps/step-01-init-and-validate.md +28 -4
- package/src/{xmc/workflows/5-full-pipeline/auto-full-pipeline → xmc-skills/5-full-pipeline/xiaoma-auto-full-pipeline}/steps/step-02-run-requirements-pipeline.md +2 -1
- package/src/{xmc/workflows/5-full-pipeline/auto-full-pipeline → xmc-skills/5-full-pipeline/xiaoma-auto-full-pipeline}/steps/step-03-bridge-sprint-planning.md +63 -9
- package/src/{xmc/workflows/5-full-pipeline/auto-full-pipeline → xmc-skills/5-full-pipeline/xiaoma-auto-full-pipeline}/steps/step-04-run-story-pipeline.md +2 -1
- package/src/{xmc/workflows/5-full-pipeline/auto-full-pipeline → xmc-skills/5-full-pipeline/xiaoma-auto-full-pipeline}/steps/step-05-finalize.md +30 -3
- package/src/{xmc/workflows/5-full-pipeline/auto-full-pipeline → xmc-skills/5-full-pipeline/xiaoma-auto-full-pipeline}/workflow.md +7 -8
- package/src/{xmc/workflows/5-full-pipeline/auto-prd-to-stories → xmc-skills/5-full-pipeline/xiaoma-auto-prd-to-stories}/checklist.md +4 -0
- package/src/{xmc/workflows/5-full-pipeline/auto-prd-to-stories → xmc-skills/5-full-pipeline/xiaoma-auto-prd-to-stories}/steps/step-01-init-and-validate.md +8 -7
- package/src/{xmc/workflows/5-full-pipeline/auto-prd-to-stories → xmc-skills/5-full-pipeline/xiaoma-auto-prd-to-stories}/steps/step-02-create-epics.md +3 -2
- package/src/{xmc/workflows/5-full-pipeline/auto-prd-to-stories → xmc-skills/5-full-pipeline/xiaoma-auto-prd-to-stories}/steps/step-03-bridge-sprint-planning.md +68 -14
- package/src/{xmc/workflows/5-full-pipeline/auto-prd-to-stories → xmc-skills/5-full-pipeline/xiaoma-auto-prd-to-stories}/steps/step-04-batch-create-stories.md +6 -5
- package/src/{xmc/workflows/5-full-pipeline/auto-prd-to-stories → xmc-skills/5-full-pipeline/xiaoma-auto-prd-to-stories}/steps/step-05-finalize.md +48 -8
- package/src/{xmc/workflows/5-full-pipeline/auto-prd-to-stories → xmc-skills/5-full-pipeline/xiaoma-auto-prd-to-stories}/workflow.md +7 -8
- package/src/xmc-skills/module-help.csv +32 -0
- package/src/xmc-skills/module.yaml +95 -0
- package/src/xpm-skills/module-help.csv +3 -0
- package/src/xpm-skills/module.yaml +36 -0
- package/src/xpm-skills/xiaoma-agent-patent-advisor/SKILL.md +75 -0
- package/src/xpm-skills/xiaoma-agent-patent-advisor/customize.toml +46 -0
- package/src/xpm-skills/xiaoma-patent-mining/SKILL.md +6 -0
- package/src/xpm-skills/xiaoma-patent-mining/steps/step-01-project-analysis.md +65 -0
- package/src/xpm-skills/xiaoma-patent-mining/steps/step-02-patent-mining.md +87 -0
- package/src/xpm-skills/xiaoma-patent-mining/steps/step-03-disclosure-writing.md +110 -0
- package/src/xpm-skills/xiaoma-patent-mining/steps/step-04-ai-taste-removal.md +85 -0
- package/src/xpm-skills/xiaoma-patent-mining/steps/step-05-docx-generation.md +111 -0
- package/src/xpm-skills/xiaoma-patent-mining/workflow.md +94 -0
- package/tools/format-workflow-md.js +263 -0
- package/tools/{cli → installer}/README.md +2 -2
- package/tools/installer/cli-utils.js +57 -0
- package/tools/installer/commands/install.js +146 -0
- package/tools/{cli → installer}/commands/status.js +15 -7
- package/tools/{cli → installer}/commands/uninstall.js +7 -7
- package/tools/installer/core/config.js +73 -0
- package/tools/installer/core/existing-install.js +121 -0
- package/tools/installer/core/install-paths.js +132 -0
- package/tools/installer/core/installer.js +1624 -0
- package/tools/installer/core/legacy-warnings.js +156 -0
- package/tools/installer/core/manifest-generator.js +859 -0
- package/tools/installer/core/manifest.js +434 -0
- package/tools/{cli/lib → installer}/file-ops.js +1 -1
- package/tools/installer/fs-native.js +116 -0
- package/tools/installer/ide/_config-driven.js +972 -0
- package/tools/{cli/installers/lib → installer}/ide/manager.js +82 -62
- package/tools/installer/ide/platform-codes.js +80 -0
- package/tools/installer/ide/platform-codes.yaml +322 -0
- package/tools/installer/ide/shared/installed-skills.js +50 -0
- package/tools/{cli/installers/lib → installer}/ide/shared/path-utils.js +0 -145
- package/tools/{cli/installers/lib → installer}/ide/shared/skill-manifest.js +3 -36
- package/tools/installer/list-options.js +210 -0
- package/tools/{cli/installers/lib → installer}/message-loader.js +3 -3
- package/tools/installer/modules/channel-plan.js +203 -0
- package/tools/installer/modules/channel-resolver.js +241 -0
- package/tools/installer/modules/custom-module-manager.js +912 -0
- package/tools/installer/modules/external-manager.js +533 -0
- package/tools/installer/modules/module-help-schema.js +13 -0
- package/tools/{cli/installers/lib/core/config-collector.js → installer/modules/official-modules.js} +1052 -110
- package/tools/installer/modules/plugin-resolver.js +398 -0
- package/tools/installer/modules/version-resolver.js +336 -0
- package/tools/installer/project-root.js +230 -0
- package/tools/{cli/lib → installer}/prompts.js +143 -100
- package/tools/installer/set-overrides.js +330 -0
- package/tools/installer/ui.js +2078 -0
- package/tools/{cli → installer}/xiaoma-cli.js +9 -10
- package/tools/{cli/lib → installer}/yaml-format.js +1 -1
- package/tools/migrate-custom-module-paths.js +124 -0
- package/tools/schema/step.js +855 -0
- package/tools/skill-validator.md +323 -0
- package/tools/validate-file-refs.js +566 -0
- package/tools/validate-frontmatter-prose-routing.js +334 -0
- package/tools/validate-skills.js +702 -0
- package/tools/validate-step-schemas.js +401 -0
- package/tools/validate-svg-changes.sh +1 -1
- package/tools/validate-trigger-column-vs-emits.js +375 -0
- package/tools/validate-warnings-samples.js +261 -0
- package/tools/xiaoma/rebrand.mjs +0 -0
- package/tools/xiaoma-npx-wrapper.js +2 -2
- package/.playwright-cli/console-2026-05-13T06-36-26-793Z.log +0 -2
- package/.playwright-cli/page-2026-05-13T06-36-27-725Z.yml +0 -1
- package/CLAUDE.md +0 -111
- package/README.md +0 -128
- package/XiaoMa-CLI-2026H2-/350/277/255/344/273/243/350/247/204/345/210/222.pptx +0 -0
- package/demo/xiaoma-bug-circle-resolve/SKILL.md +0 -6
- package/demo/xiaoma-bug-circle-resolve/workflow.md +0 -254
- package/demo/xiaoma-bug-resolve/SKILL.md +0 -6
- package/demo/xiaoma-bug-resolve/workflow.md +0 -269
- package/demo/xiaoma-prd-saas-zh/README.md +0 -57
- package/demo/xiaoma-prd-saas-zh/domain-research.md +0 -128
- package/demo/xiaoma-prd-saas-zh/epics.md +0 -303
- package/demo/xiaoma-prd-saas-zh/market-research-2026-q1.md +0 -183
- package/demo/xiaoma-prd-saas-zh/prd-bad-examples.md +0 -268
- package/demo/xiaoma-prd-saas-zh/prd.md +0 -409
- package/demo/xiaoma-prd-saas-zh/product-brief.md +0 -97
- package/demo/xiaoma-prd-saas-zh/validation-report.md +0 -279
- package/docs/roadshow/01-/351/241/271/347/233/256/346/246/202/350/247/210/344/270/216/346/236/266/346/236/204.md +0 -189
- package/docs/roadshow/02-/346/231/272/350/203/275/344/275/223/347/263/273/347/273/237/350/257/246/350/247/243.md +0 -464
- package/docs/roadshow/03-/346/231/272/350/203/275/344/275/223/344/272/244/344/272/222/346/265/201/347/250/213/345/233/276.md +0 -334
- package/docs/roadshow/04-/345/267/245/344/275/234/346/265/201/346/211/247/350/241/214/350/257/246/350/247/243.md +0 -1038
- package/docs/roadshow/05-/346/212/200/346/234/257/345/256/236/347/216/260/344/270/216/345/210/233/346/226/260/344/272/256/347/202/271.md +0 -205
- package/docs/roadshow/06-/350/267/257/346/274/224/346/200/273/347/273/223/344/270/216/346/274/224/347/244/272/345/273/272/350/256/256.md +0 -167
- package/media/doc1_fig1.png +0 -0
- package/media/doc1_fig2.png +0 -0
- package/media/doc1_fig3.png +0 -0
- package/media/doc1_fig4.png +0 -0
- package/media/doc2_fig1.png +0 -0
- package/media/doc2_fig2.png +0 -0
- package/media/doc2_fig3.png +0 -0
- package/media/doc2_fig4.png +0 -0
- package/media/doc3_fig1.png +0 -0
- package/media/doc3_fig2.png +0 -0
- package/media/doc3_fig3.png +0 -0
- package/media/doc3_fig4.png +0 -0
- package/media/doc4_fig1.png +0 -0
- package/media/doc4_fig2.png +0 -0
- package/media/doc4_fig3.png +0 -0
- package/media/doc5_fig1.png +0 -0
- package/media/doc5_fig2.png +0 -0
- package/media/doc5_fig3.png +0 -0
- package/patent-disclosure-optimized/SKILL.md +0 -416
- package/src/core/module-help.csv +0 -11
- package/src/core/skills/xiaoma-advanced-elicitation/SKILL.md +0 -6
- package/src/core/skills/xiaoma-advanced-elicitation/methods.csv +0 -51
- package/src/core/skills/xiaoma-editorial-review-prose/SKILL.md +0 -6
- package/src/core/skills/xiaoma-editorial-review-structure/SKILL.md +0 -6
- package/src/core/skills/xiaoma-help/SKILL.md +0 -6
- package/src/core/skills/xiaoma-help/workflow.md +0 -88
- package/src/core/skills/xiaoma-help/xiaoma-skill-manifest.yaml +0 -1
- package/src/core/skills/xiaoma-index-docs/SKILL.md +0 -6
- package/src/core/skills/xiaoma-index-docs/xiaoma-skill-manifest.yaml +0 -1
- package/src/core/skills/xiaoma-party-mode/SKILL.md +0 -6
- package/src/core/skills/xiaoma-party-mode/steps/step-01-agent-loading.md +0 -138
- package/src/core/skills/xiaoma-party-mode/steps/step-02-discussion-orchestration.md +0 -187
- package/src/core/skills/xiaoma-party-mode/steps/step-03-graceful-exit.md +0 -167
- package/src/core/skills/xiaoma-party-mode/workflow.md +0 -190
- package/src/core/skills/xiaoma-party-mode/xiaoma-skill-manifest.yaml +0 -1
- package/src/core/skills/xiaoma-review-adversarial-general/SKILL.md +0 -6
- package/src/core/skills/xiaoma-review-adversarial-general/xiaoma-skill-manifest.yaml +0 -1
- package/src/core/skills/xiaoma-review-edge-case-hunter/SKILL.md +0 -6
- package/src/core/skills/xiaoma-review-edge-case-hunter/xiaoma-skill-manifest.yaml +0 -1
- package/src/core/skills/xiaoma-shard-doc/SKILL.md +0 -6
- package/src/core/skills/xiaoma-shard-doc/xiaoma-skill-manifest.yaml +0 -1
- package/src/core/tasks/xiaoma-create-prd/SKILL.md +0 -6
- package/src/core/tasks/xiaoma-create-prd/data/prd-purpose.md +0 -354
- package/src/core/tasks/xiaoma-create-prd/data/upstream-input-contract.md +0 -168
- package/src/core/tasks/xiaoma-create-prd/steps-c/step-01-init.md +0 -178
- package/src/core/tasks/xiaoma-create-prd/steps-c/step-01b-continue.md +0 -161
- package/src/core/tasks/xiaoma-create-prd/steps-c/step-02-discovery.md +0 -208
- package/src/core/tasks/xiaoma-create-prd/steps-c/step-02b-vision.md +0 -142
- package/src/core/tasks/xiaoma-create-prd/steps-c/step-02c-executive-summary.md +0 -158
- package/src/core/tasks/xiaoma-create-prd/steps-c/step-03-success.md +0 -214
- package/src/core/tasks/xiaoma-create-prd/steps-c/step-04-journeys.md +0 -201
- package/src/core/tasks/xiaoma-create-prd/steps-c/step-05-domain.md +0 -194
- package/src/core/tasks/xiaoma-create-prd/steps-c/step-06-innovation.md +0 -211
- package/src/core/tasks/xiaoma-create-prd/steps-c/step-07-project-type.md +0 -222
- package/src/core/tasks/xiaoma-create-prd/steps-c/step-08-scoping.md +0 -216
- package/src/core/tasks/xiaoma-create-prd/steps-c/step-09-functional.md +0 -219
- package/src/core/tasks/xiaoma-create-prd/steps-c/step-10-nonfunctional.md +0 -230
- package/src/core/tasks/xiaoma-create-prd/steps-c/step-11-polish.md +0 -221
- package/src/core/tasks/xiaoma-create-prd/steps-c/step-12-complete.md +0 -115
- package/src/core/tasks/xiaoma-create-prd/templates/prd-skeleton-reference.md +0 -428
- package/src/core/tasks/xiaoma-create-prd/templates/prd-template.md +0 -108
- package/src/core/tasks/xiaoma-create-prd/workflow.md +0 -62
- package/src/core/tasks/xiaoma-create-prd/xiaoma-skill-manifest.yaml +0 -1
- package/src/utility/agent-components/activation-rules.txt +0 -6
- package/src/utility/agent-components/activation-steps.txt +0 -14
- package/src/utility/agent-components/agent-command-header.md +0 -1
- package/src/utility/agent-components/agent.customize.template.yaml +0 -41
- package/src/utility/agent-components/handler-action.txt +0 -4
- package/src/utility/agent-components/handler-data.txt +0 -5
- package/src/utility/agent-components/handler-exec.txt +0 -6
- package/src/utility/agent-components/handler-multi.txt +0 -13
- package/src/utility/agent-components/handler-tmpl.txt +0 -5
- package/src/utility/agent-components/menu-handlers.txt +0 -6
- package/src/xmc/agents/analyst.agent.yaml +0 -47
- package/src/xmc/agents/architect.agent.yaml +0 -29
- package/src/xmc/agents/dev.agent.yaml +0 -38
- package/src/xmc/agents/pm.agent.yaml +0 -44
- package/src/xmc/agents/qa.agent.yaml +0 -58
- package/src/xmc/agents/quick-flow-solo-dev.agent.yaml +0 -36
- package/src/xmc/agents/sm.agent.yaml +0 -53
- package/src/xmc/agents/tech-writer/tech-writer-sidecar/documentation-standards.md +0 -224
- package/src/xmc/agents/tech-writer/tech-writer.agent.yaml +0 -46
- package/src/xmc/agents/tech-writer/xiaoma-skill-manifest.yaml +0 -3
- package/src/xmc/agents/ux-designer.agent.yaml +0 -27
- package/src/xmc/agents/xiaoma-skill-manifest.yaml +0 -39
- package/src/xmc/data/project-context-template.md +0 -26
- package/src/xmc/module-help.csv +0 -32
- package/src/xmc/module.yaml +0 -50
- package/src/xmc/teams/default-party.csv +0 -20
- package/src/xmc/teams/team-fullstack.yaml +0 -12
- package/src/xmc/workflows/1-analysis/auto-requirements-pipeline/steps/step-08-finalize.md +0 -124
- package/src/xmc/workflows/1-analysis/auto-requirements-pipeline/workflow.md +0 -107
- package/src/xmc/workflows/1-analysis/auto-requirements-pipeline/xiaoma-skill-manifest.yaml +0 -3
- package/src/xmc/workflows/1-analysis/research/market-steps/step-01-init.md +0 -182
- package/src/xmc/workflows/1-analysis/research/market-steps/step-02-customer-behavior.md +0 -237
- package/src/xmc/workflows/1-analysis/research/market-steps/step-03-customer-pain-points.md +0 -249
- package/src/xmc/workflows/1-analysis/research/market-steps/step-04-customer-decisions.md +0 -259
- package/src/xmc/workflows/1-analysis/research/market-steps/step-05-competitive-analysis.md +0 -177
- package/src/xmc/workflows/1-analysis/research/market-steps/step-06-research-completion.md +0 -476
- package/src/xmc/workflows/1-analysis/research/xiaoma-domain-research/SKILL.md +0 -6
- package/src/xmc/workflows/1-analysis/research/xiaoma-domain-research/workflow.md +0 -49
- package/src/xmc/workflows/1-analysis/research/xiaoma-domain-research/xiaoma-skill-manifest.yaml +0 -1
- package/src/xmc/workflows/1-analysis/research/xiaoma-market-research/SKILL.md +0 -6
- package/src/xmc/workflows/1-analysis/research/xiaoma-market-research/workflow.md +0 -49
- package/src/xmc/workflows/1-analysis/research/xiaoma-market-research/xiaoma-skill-manifest.yaml +0 -1
- package/src/xmc/workflows/1-analysis/research/xiaoma-technical-research/SKILL.md +0 -6
- package/src/xmc/workflows/1-analysis/research/xiaoma-technical-research/research.template.md +0 -29
- package/src/xmc/workflows/1-analysis/research/xiaoma-technical-research/workflow.md +0 -50
- package/src/xmc/workflows/1-analysis/research/xiaoma-technical-research/xiaoma-skill-manifest.yaml +0 -1
- package/src/xmc/workflows/1-analysis/xiaoma-create-product-brief/SKILL.md +0 -6
- package/src/xmc/workflows/1-analysis/xiaoma-create-product-brief/product-brief.template.md +0 -10
- package/src/xmc/workflows/1-analysis/xiaoma-create-product-brief/steps/step-01-init.md +0 -170
- package/src/xmc/workflows/1-analysis/xiaoma-create-product-brief/steps/step-01b-continue.md +0 -158
- package/src/xmc/workflows/1-analysis/xiaoma-create-product-brief/steps/step-02-vision.md +0 -193
- package/src/xmc/workflows/1-analysis/xiaoma-create-product-brief/steps/step-03-users.md +0 -196
- package/src/xmc/workflows/1-analysis/xiaoma-create-product-brief/steps/step-04-metrics.md +0 -199
- package/src/xmc/workflows/1-analysis/xiaoma-create-product-brief/steps/step-05-scope.md +0 -213
- package/src/xmc/workflows/1-analysis/xiaoma-create-product-brief/steps/step-06-complete.md +0 -159
- package/src/xmc/workflows/1-analysis/xiaoma-create-product-brief/workflow.md +0 -55
- package/src/xmc/workflows/1-analysis/xiaoma-create-product-brief/xiaoma-skill-manifest.yaml +0 -1
- package/src/xmc/workflows/1-analysis/xiaoma-product-brief-preview/xiaoma-skill-manifest.yaml +0 -1
- package/src/xmc/workflows/2-plan-workflows/create-prd/data/domain-complexity.csv +0 -15
- package/src/xmc/workflows/2-plan-workflows/create-prd/data/prd-purpose.md +0 -197
- package/src/xmc/workflows/2-plan-workflows/create-prd/data/project-types.csv +0 -11
- package/src/xmc/workflows/2-plan-workflows/create-prd/steps-v/step-v-01-discovery.md +0 -224
- package/src/xmc/workflows/2-plan-workflows/create-prd/steps-v/step-v-02-format-detection.md +0 -191
- package/src/xmc/workflows/2-plan-workflows/create-prd/steps-v/step-v-02b-parity-check.md +0 -209
- package/src/xmc/workflows/2-plan-workflows/create-prd/steps-v/step-v-03-density-validation.md +0 -174
- package/src/xmc/workflows/2-plan-workflows/create-prd/steps-v/step-v-04-brief-coverage-validation.md +0 -214
- package/src/xmc/workflows/2-plan-workflows/create-prd/steps-v/step-v-05-measurability-validation.md +0 -228
- package/src/xmc/workflows/2-plan-workflows/create-prd/steps-v/step-v-06-traceability-validation.md +0 -217
- package/src/xmc/workflows/2-plan-workflows/create-prd/steps-v/step-v-07-implementation-leakage-validation.md +0 -205
- package/src/xmc/workflows/2-plan-workflows/create-prd/steps-v/step-v-08-domain-compliance-validation.md +0 -243
- package/src/xmc/workflows/2-plan-workflows/create-prd/steps-v/step-v-09-project-type-validation.md +0 -263
- package/src/xmc/workflows/2-plan-workflows/create-prd/steps-v/step-v-10-smart-validation.md +0 -209
- package/src/xmc/workflows/2-plan-workflows/create-prd/steps-v/step-v-11-holistic-quality-validation.md +0 -264
- package/src/xmc/workflows/2-plan-workflows/create-prd/steps-v/step-v-12-completeness-validation.md +0 -242
- package/src/xmc/workflows/2-plan-workflows/create-prd/steps-v/step-v-13-report-complete.md +0 -232
- package/src/xmc/workflows/2-plan-workflows/create-prd/workflow-validate-prd.md +0 -65
- package/src/xmc/workflows/2-plan-workflows/xiaoma-create-ux-design/SKILL.md +0 -6
- package/src/xmc/workflows/2-plan-workflows/xiaoma-create-ux-design/steps/step-01-init.md +0 -135
- package/src/xmc/workflows/2-plan-workflows/xiaoma-create-ux-design/steps/step-01b-continue.md +0 -127
- package/src/xmc/workflows/2-plan-workflows/xiaoma-create-ux-design/steps/step-02-discovery.md +0 -190
- package/src/xmc/workflows/2-plan-workflows/xiaoma-create-ux-design/steps/step-03-core-experience.md +0 -217
- package/src/xmc/workflows/2-plan-workflows/xiaoma-create-ux-design/steps/step-04-emotional-response.md +0 -220
- package/src/xmc/workflows/2-plan-workflows/xiaoma-create-ux-design/steps/step-05-inspiration.md +0 -235
- package/src/xmc/workflows/2-plan-workflows/xiaoma-create-ux-design/steps/step-06-design-system.md +0 -253
- package/src/xmc/workflows/2-plan-workflows/xiaoma-create-ux-design/steps/step-07-defining-experience.md +0 -255
- package/src/xmc/workflows/2-plan-workflows/xiaoma-create-ux-design/steps/step-08-visual-foundation.md +0 -225
- package/src/xmc/workflows/2-plan-workflows/xiaoma-create-ux-design/steps/step-09-design-directions.md +0 -225
- package/src/xmc/workflows/2-plan-workflows/xiaoma-create-ux-design/steps/step-10-user-journeys.md +0 -242
- package/src/xmc/workflows/2-plan-workflows/xiaoma-create-ux-design/steps/step-11-component-strategy.md +0 -249
- package/src/xmc/workflows/2-plan-workflows/xiaoma-create-ux-design/steps/step-12-ux-patterns.md +0 -238
- package/src/xmc/workflows/2-plan-workflows/xiaoma-create-ux-design/steps/step-13-responsive-accessibility.md +0 -265
- package/src/xmc/workflows/2-plan-workflows/xiaoma-create-ux-design/steps/step-14-complete.md +0 -171
- package/src/xmc/workflows/2-plan-workflows/xiaoma-create-ux-design/ux-design-template.md +0 -13
- package/src/xmc/workflows/2-plan-workflows/xiaoma-create-ux-design/workflow.md +0 -36
- package/src/xmc/workflows/2-plan-workflows/xiaoma-create-ux-design/xiaoma-skill-manifest.yaml +0 -1
- package/src/xmc/workflows/2-plan-workflows/xiaoma-edit-prd/SKILL.md +0 -6
- package/src/xmc/workflows/2-plan-workflows/xiaoma-edit-prd/steps-e/step-e-01-discovery.md +0 -242
- package/src/xmc/workflows/2-plan-workflows/xiaoma-edit-prd/steps-e/step-e-01b-legacy-conversion.md +0 -204
- package/src/xmc/workflows/2-plan-workflows/xiaoma-edit-prd/steps-e/step-e-02-review.md +0 -245
- package/src/xmc/workflows/2-plan-workflows/xiaoma-edit-prd/steps-e/step-e-03-edit.md +0 -250
- package/src/xmc/workflows/2-plan-workflows/xiaoma-edit-prd/steps-e/step-e-04-complete.md +0 -165
- package/src/xmc/workflows/2-plan-workflows/xiaoma-edit-prd/workflow.md +0 -63
- package/src/xmc/workflows/2-plan-workflows/xiaoma-edit-prd/xiaoma-skill-manifest.yaml +0 -1
- package/src/xmc/workflows/2-plan-workflows/xiaoma-validate-prd/SKILL.md +0 -6
- package/src/xmc/workflows/2-plan-workflows/xiaoma-validate-prd/data/domain-complexity.csv +0 -15
- package/src/xmc/workflows/2-plan-workflows/xiaoma-validate-prd/data/prd-purpose.md +0 -197
- package/src/xmc/workflows/2-plan-workflows/xiaoma-validate-prd/data/prd-quality-rubric.csv +0 -14
- package/src/xmc/workflows/2-plan-workflows/xiaoma-validate-prd/data/project-types.csv +0 -11
- package/src/xmc/workflows/2-plan-workflows/xiaoma-validate-prd/steps-v/step-v-01-discovery.md +0 -221
- package/src/xmc/workflows/2-plan-workflows/xiaoma-validate-prd/steps-v/step-v-02-format-detection.md +0 -188
- package/src/xmc/workflows/2-plan-workflows/xiaoma-validate-prd/steps-v/step-v-02b-parity-check.md +0 -206
- package/src/xmc/workflows/2-plan-workflows/xiaoma-validate-prd/steps-v/step-v-03-density-validation.md +0 -171
- package/src/xmc/workflows/2-plan-workflows/xiaoma-validate-prd/steps-v/step-v-04-brief-coverage-validation.md +0 -211
- package/src/xmc/workflows/2-plan-workflows/xiaoma-validate-prd/steps-v/step-v-05-measurability-validation.md +0 -225
- package/src/xmc/workflows/2-plan-workflows/xiaoma-validate-prd/steps-v/step-v-06-traceability-validation.md +0 -214
- package/src/xmc/workflows/2-plan-workflows/xiaoma-validate-prd/steps-v/step-v-07-implementation-leakage-validation.md +0 -202
- package/src/xmc/workflows/2-plan-workflows/xiaoma-validate-prd/steps-v/step-v-08-domain-compliance-validation.md +0 -240
- package/src/xmc/workflows/2-plan-workflows/xiaoma-validate-prd/steps-v/step-v-09-project-type-validation.md +0 -260
- package/src/xmc/workflows/2-plan-workflows/xiaoma-validate-prd/steps-v/step-v-10-smart-validation.md +0 -206
- package/src/xmc/workflows/2-plan-workflows/xiaoma-validate-prd/steps-v/step-v-11-holistic-quality-validation.md +0 -261
- package/src/xmc/workflows/2-plan-workflows/xiaoma-validate-prd/steps-v/step-v-12-completeness-validation.md +0 -239
- package/src/xmc/workflows/2-plan-workflows/xiaoma-validate-prd/steps-v/step-v-13-report-complete.md +0 -229
- package/src/xmc/workflows/2-plan-workflows/xiaoma-validate-prd/workflow.md +0 -62
- package/src/xmc/workflows/2-plan-workflows/xiaoma-validate-prd/xiaoma-skill-manifest.yaml +0 -1
- package/src/xmc/workflows/3-solutioning/xiaoma-check-implementation-readiness/SKILL.md +0 -6
- package/src/xmc/workflows/3-solutioning/xiaoma-check-implementation-readiness/workflow.md +0 -49
- package/src/xmc/workflows/3-solutioning/xiaoma-check-implementation-readiness/xiaoma-skill-manifest.yaml +0 -1
- package/src/xmc/workflows/3-solutioning/xiaoma-create-architecture/SKILL.md +0 -6
- package/src/xmc/workflows/3-solutioning/xiaoma-create-architecture/workflow.md +0 -38
- package/src/xmc/workflows/3-solutioning/xiaoma-create-architecture/xiaoma-skill-manifest.yaml +0 -1
- package/src/xmc/workflows/3-solutioning/xiaoma-create-epics-and-stories/SKILL.md +0 -6
- package/src/xmc/workflows/3-solutioning/xiaoma-create-epics-and-stories/workflow.md +0 -53
- package/src/xmc/workflows/3-solutioning/xiaoma-create-epics-and-stories/xiaoma-skill-manifest.yaml +0 -1
- package/src/xmc/workflows/4-implementation/auto-story-pipeline/checklist.md +0 -22
- package/src/xmc/workflows/4-implementation/auto-story-pipeline/steps/step-02-create-story.md +0 -102
- package/src/xmc/workflows/4-implementation/auto-story-pipeline/steps/step-05-code-review.md +0 -95
- package/src/xmc/workflows/4-implementation/auto-story-pipeline/steps/step-08-complete-story.md +0 -114
- package/src/xmc/workflows/4-implementation/auto-story-pipeline/steps/step-09-finalize.md +0 -69
- package/src/xmc/workflows/4-implementation/auto-story-pipeline/workflow.md +0 -89
- package/src/xmc/workflows/4-implementation/auto-story-pipeline/xiaoma-skill-manifest.yaml +0 -3
- package/src/xmc/workflows/4-implementation/xiaoma-code-review/SKILL.md +0 -6
- package/src/xmc/workflows/4-implementation/xiaoma-code-review/checklist.md +0 -23
- package/src/xmc/workflows/4-implementation/xiaoma-code-review/steps/step-01-gather-context.md +0 -61
- package/src/xmc/workflows/4-implementation/xiaoma-code-review/steps/step-02-review.md +0 -41
- package/src/xmc/workflows/4-implementation/xiaoma-code-review/steps/step-04-present.md +0 -38
- package/src/xmc/workflows/4-implementation/xiaoma-code-review/workflow.md +0 -54
- package/src/xmc/workflows/4-implementation/xiaoma-code-review/xiaoma-skill-manifest.yaml +0 -1
- package/src/xmc/workflows/4-implementation/xiaoma-correct-course/SKILL.md +0 -6
- package/src/xmc/workflows/4-implementation/xiaoma-correct-course/xiaoma-skill-manifest.yaml +0 -1
- package/src/xmc/workflows/4-implementation/xiaoma-create-story/SKILL.md +0 -6
- package/src/xmc/workflows/4-implementation/xiaoma-create-story/discover-inputs.md +0 -88
- package/src/xmc/workflows/4-implementation/xiaoma-create-story/xiaoma-skill-manifest.yaml +0 -1
- package/src/xmc/workflows/4-implementation/xiaoma-dev-story/SKILL.md +0 -6
- package/src/xmc/workflows/4-implementation/xiaoma-dev-story/xiaoma-skill-manifest.yaml +0 -1
- package/src/xmc/workflows/4-implementation/xiaoma-retrospective/SKILL.md +0 -6
- package/src/xmc/workflows/4-implementation/xiaoma-retrospective/xiaoma-skill-manifest.yaml +0 -1
- package/src/xmc/workflows/4-implementation/xiaoma-sprint-planning/SKILL.md +0 -6
- package/src/xmc/workflows/4-implementation/xiaoma-sprint-planning/xiaoma-skill-manifest.yaml +0 -1
- package/src/xmc/workflows/4-implementation/xiaoma-sprint-status/SKILL.md +0 -6
- package/src/xmc/workflows/4-implementation/xiaoma-sprint-status/xiaoma-skill-manifest.yaml +0 -1
- package/src/xmc/workflows/xiaoma-document-project/SKILL.md +0 -6
- package/src/xmc/workflows/xiaoma-document-project/workflow.md +0 -27
- package/src/xmc/workflows/xiaoma-document-project/xiaoma-skill-manifest.yaml +0 -1
- package/src/xmc/workflows/xiaoma-generate-project-context/SKILL.md +0 -6
- package/src/xmc/workflows/xiaoma-generate-project-context/workflow.md +0 -43
- package/src/xmc/workflows/xiaoma-generate-project-context/xiaoma-skill-manifest.yaml +0 -1
- package/src/xmc/workflows/xiaoma-qa-generate-e2e-tests/SKILL.md +0 -6
- package/src/xmc/workflows/xiaoma-qa-generate-e2e-tests/xiaoma-skill-manifest.yaml +0 -1
- package/src/xmc/workflows/xiaoma-quick-flow/xiaoma-quick-dev/SKILL.md +0 -6
- package/src/xmc/workflows/xiaoma-quick-flow/xiaoma-quick-dev/steps/step-01-mode-detection.md +0 -169
- package/src/xmc/workflows/xiaoma-quick-flow/xiaoma-quick-dev/steps/step-02-context-gathering.md +0 -114
- package/src/xmc/workflows/xiaoma-quick-flow/xiaoma-quick-dev/steps/step-03-execute.md +0 -107
- package/src/xmc/workflows/xiaoma-quick-flow/xiaoma-quick-dev/steps/step-04-self-check.md +0 -107
- package/src/xmc/workflows/xiaoma-quick-flow/xiaoma-quick-dev/steps/step-05-adversarial-review.md +0 -94
- package/src/xmc/workflows/xiaoma-quick-flow/xiaoma-quick-dev/steps/step-06-resolve-findings.md +0 -144
- package/src/xmc/workflows/xiaoma-quick-flow/xiaoma-quick-dev/workflow.md +0 -38
- package/src/xmc/workflows/xiaoma-quick-flow/xiaoma-quick-dev/xiaoma-skill-manifest.yaml +0 -1
- package/src/xmc/workflows/xiaoma-quick-flow/xiaoma-quick-dev-new-preview/xiaoma-skill-manifest.yaml +0 -1
- package/src/xmc/workflows/xiaoma-quick-flow/xiaoma-quick-spec/xiaoma-skill-manifest.yaml +0 -1
- package/tools/cli/commands/install.js +0 -87
- package/tools/cli/external-official-modules.yaml +0 -4
- package/tools/cli/installers/lib/core/custom-module-cache.js +0 -260
- package/tools/cli/installers/lib/core/dependency-resolver.js +0 -743
- package/tools/cli/installers/lib/core/detector.js +0 -223
- package/tools/cli/installers/lib/core/ide-config-manager.js +0 -157
- package/tools/cli/installers/lib/core/installer.js +0 -3212
- package/tools/cli/installers/lib/core/manifest-generator.js +0 -1374
- package/tools/cli/installers/lib/core/manifest.js +0 -1040
- package/tools/cli/installers/lib/custom/handler.js +0 -358
- package/tools/cli/installers/lib/ide/_base-ide.js +0 -673
- package/tools/cli/installers/lib/ide/_config-driven.js +0 -1058
- package/tools/cli/installers/lib/ide/platform-codes.js +0 -100
- package/tools/cli/installers/lib/ide/platform-codes.yaml +0 -321
- package/tools/cli/installers/lib/ide/shared/agent-command-generator.js +0 -181
- package/tools/cli/installers/lib/ide/shared/module-injections.js +0 -136
- package/tools/cli/installers/lib/ide/shared/task-tool-command-generator.js +0 -368
- package/tools/cli/installers/lib/ide/shared/workflow-command-generator.js +0 -179
- package/tools/cli/installers/lib/ide/shared/xiaoma-artifacts.js +0 -181
- package/tools/cli/installers/lib/ide/templates/agent-command-template.md +0 -14
- package/tools/cli/installers/lib/ide/templates/combined/antigravity.md +0 -8
- package/tools/cli/installers/lib/ide/templates/combined/default-agent.md +0 -15
- package/tools/cli/installers/lib/ide/templates/combined/default-task.md +0 -10
- package/tools/cli/installers/lib/ide/templates/combined/default-tool.md +0 -10
- package/tools/cli/installers/lib/ide/templates/combined/default-workflow.md +0 -6
- package/tools/cli/installers/lib/ide/templates/combined/gemini-agent.toml +0 -14
- package/tools/cli/installers/lib/ide/templates/combined/gemini-task.toml +0 -11
- package/tools/cli/installers/lib/ide/templates/combined/gemini-tool.toml +0 -11
- package/tools/cli/installers/lib/ide/templates/combined/gemini-workflow-yaml.toml +0 -16
- package/tools/cli/installers/lib/ide/templates/combined/gemini-workflow.toml +0 -14
- package/tools/cli/installers/lib/ide/templates/combined/kiro-agent.md +0 -16
- package/tools/cli/installers/lib/ide/templates/combined/kiro-task.md +0 -9
- package/tools/cli/installers/lib/ide/templates/combined/kiro-tool.md +0 -9
- package/tools/cli/installers/lib/ide/templates/combined/kiro-workflow.md +0 -7
- package/tools/cli/installers/lib/ide/templates/combined/opencode-agent.md +0 -15
- package/tools/cli/installers/lib/ide/templates/combined/opencode-task.md +0 -13
- package/tools/cli/installers/lib/ide/templates/combined/opencode-tool.md +0 -13
- package/tools/cli/installers/lib/ide/templates/combined/opencode-workflow-yaml.md +0 -16
- package/tools/cli/installers/lib/ide/templates/combined/opencode-workflow.md +0 -16
- package/tools/cli/installers/lib/ide/templates/combined/rovodev.md +0 -9
- package/tools/cli/installers/lib/ide/templates/combined/trae.md +0 -9
- package/tools/cli/installers/lib/ide/templates/combined/windsurf-workflow.md +0 -10
- package/tools/cli/installers/lib/ide/templates/split/.gitkeep +0 -0
- package/tools/cli/installers/lib/modules/external-manager.js +0 -136
- package/tools/cli/installers/lib/modules/manager.js +0 -1382
- package/tools/cli/lib/activation-builder.js +0 -165
- package/tools/cli/lib/agent/compiler.js +0 -516
- package/tools/cli/lib/agent/installer.js +0 -680
- package/tools/cli/lib/agent/template-engine.js +0 -152
- package/tools/cli/lib/agent-analyzer.js +0 -97
- package/tools/cli/lib/agent-party-generator.js +0 -194
- package/tools/cli/lib/cli-utils.js +0 -182
- package/tools/cli/lib/config.js +0 -213
- package/tools/cli/lib/platform-codes.js +0 -116
- package/tools/cli/lib/project-root.js +0 -77
- package/tools/cli/lib/ui.js +0 -1960
- package/tools/cli/lib/xml-handler.js +0 -177
- package/tools/cli/lib/xml-to-markdown.js +0 -82
- package/tools/cli/lib/yaml-xml-builder.js +0 -570
- package/tools/platform-codes.yaml +0 -157
- package/tools/schema/agent.js +0 -489
- package//344/270/223/345/210/251/344/272/244/345/272/225/344/271/246_1_/351/235/242/345/220/221AI/346/231/272/350/203/275/344/275/223/347/232/204/345/244/232/351/200/232/351/201/223/344/276/235/350/265/226_20260318.md +0 -483
- package//344/270/223/345/210/251/344/272/244/345/272/225/344/271/246_2_/345/237/272/344/272/216/351/205/215/347/275/256/351/251/261/345/212/250/347/232/204/350/267/250/345/271/263/345/217/260IDE/346/231/272/350/203/275_20260318.md +0 -592
- package//344/270/223/345/210/251/344/272/244/345/272/225/344/271/246_3_AI/346/231/272/350/203/275/344/275/223/345/243/260/346/230/216/345/274/217/345/256/232/344/271/211/347/232/204/347/274/226/350/257/221/346/265/201/346/260/264_20260318.md +0 -624
- package//344/270/223/345/210/251/344/272/244/345/272/225/344/271/246_4_/345/237/272/344/272/216/345/223/210/345/270/214/346/214/207/347/272/271/347/232/204/346/231/272/350/203/275/344/275/223/351/231/204/345/261/236/350/265/204/346/272/220/351/200/211_20260318.md +0 -628
- package//344/270/223/345/210/251/344/272/244/345/272/225/344/271/246_5_AI/346/231/272/350/203/275/344/275/223/350/247/246/345/217/221/346/214/207/344/273/244/347/232/204/345/244/215/345/220/210/346/240/274/345/274/217/346/240/241_20260318.md +0 -652
- /package/src/{core/skills → core-skills}/xiaoma-brainstorming/SKILL.md +0 -0
- /package/src/{core/skills → core-skills}/xiaoma-brainstorming/brain-methods.csv +0 -0
- /package/src/{core/skills → core-skills}/xiaoma-brainstorming/steps/step-01-session-setup.md +0 -0
- /package/src/{core/skills → core-skills}/xiaoma-brainstorming/steps/step-01b-continue.md +0 -0
- /package/src/{core/skills → core-skills}/xiaoma-brainstorming/steps/step-02a-user-selected.md +0 -0
- /package/src/{core/skills → core-skills}/xiaoma-brainstorming/steps/step-02b-ai-recommended.md +0 -0
- /package/src/{core/skills → core-skills}/xiaoma-brainstorming/steps/step-02c-random-selection.md +0 -0
- /package/src/{core/skills → core-skills}/xiaoma-brainstorming/steps/step-02d-progressive-flow.md +0 -0
- /package/src/{core/skills → core-skills}/xiaoma-brainstorming/steps/step-04-idea-organization.md +0 -0
- /package/src/{core/skills → core-skills}/xiaoma-brainstorming/template.md +0 -0
- /package/src/{core/skills → core-skills}/xiaoma-distillator/SKILL.md +0 -0
- /package/src/{core/skills → core-skills}/xiaoma-distillator/agents/distillate-compressor.md +0 -0
- /package/src/{core/skills → core-skills}/xiaoma-distillator/agents/round-trip-reconstructor.md +0 -0
- /package/src/{core/skills → core-skills}/xiaoma-distillator/resources/compression-rules.md +0 -0
- /package/src/{core/skills → core-skills}/xiaoma-distillator/resources/splitting-strategy.md +0 -0
- /package/src/{core/skills → core-skills}/xiaoma-distillator/scripts/tests/test_analyze_sources.py +0 -0
- /package/src/{core/skills → core-skills}/xiaoma-distillator/xiaoma-skill-manifest.yaml +0 -0
- /package/src/{xmc/workflows → xmc-skills}/1-analysis/research/xiaoma-domain-research/domain-steps/step-01-init.md +0 -0
- /package/src/{xmc/workflows → xmc-skills}/1-analysis/research/xiaoma-domain-research/domain-steps/step-02-domain-analysis.md +0 -0
- /package/src/{xmc/workflows → xmc-skills}/1-analysis/research/xiaoma-domain-research/domain-steps/step-03-competitive-landscape.md +0 -0
- /package/src/{xmc/workflows → xmc-skills}/1-analysis/research/xiaoma-domain-research/domain-steps/step-04-regulatory-focus.md +0 -0
- /package/src/{xmc/workflows → xmc-skills}/1-analysis/research/xiaoma-domain-research/domain-steps/step-05-technical-trends.md +0 -0
- /package/src/{xmc/workflows/1-analysis/research → xmc-skills/1-analysis/research/xiaoma-domain-research}/research.template.md +0 -0
- /package/src/{xmc/workflows/1-analysis/research/xiaoma-domain-research → xmc-skills/1-analysis/research/xiaoma-market-research}/research.template.md +0 -0
- /package/src/{xmc/workflows → xmc-skills}/1-analysis/research/xiaoma-market-research/steps/step-01-init.md +0 -0
- /package/src/{xmc/workflows → xmc-skills}/1-analysis/research/xiaoma-market-research/steps/step-02-customer-behavior.md +0 -0
- /package/src/{xmc/workflows → xmc-skills}/1-analysis/research/xiaoma-market-research/steps/step-03-customer-pain-points.md +0 -0
- /package/src/{xmc/workflows → xmc-skills}/1-analysis/research/xiaoma-market-research/steps/step-04-customer-decisions.md +0 -0
- /package/src/{xmc/workflows → xmc-skills}/1-analysis/research/xiaoma-market-research/steps/step-05-competitive-analysis.md +0 -0
- /package/src/{xmc/workflows/1-analysis/research/xiaoma-market-research → xmc-skills/1-analysis/research/xiaoma-technical-research}/research.template.md +0 -0
- /package/src/{xmc/workflows → xmc-skills}/1-analysis/research/xiaoma-technical-research/technical-steps/step-01-init.md +0 -0
- /package/src/{xmc/workflows → xmc-skills}/1-analysis/research/xiaoma-technical-research/technical-steps/step-02-technical-overview.md +0 -0
- /package/src/{xmc/workflows → xmc-skills}/1-analysis/research/xiaoma-technical-research/technical-steps/step-03-integration-patterns.md +0 -0
- /package/src/{xmc/workflows → xmc-skills}/1-analysis/research/xiaoma-technical-research/technical-steps/step-04-architectural-patterns.md +0 -0
- /package/src/{xmc/workflows → xmc-skills}/1-analysis/research/xiaoma-technical-research/technical-steps/step-05-implementation-research.md +0 -0
- /package/src/{xmc/workflows/1-analysis/auto-requirements-pipeline → xmc-skills/1-analysis/xiaoma-auto-requirements-pipeline}/SKILL.md +0 -0
- /package/src/{xmc/workflows → xmc-skills/1-analysis}/xiaoma-document-project/checklist.md +0 -0
- /package/src/{xmc/workflows → xmc-skills/1-analysis}/xiaoma-document-project/documentation-requirements.csv +0 -0
- /package/src/{xmc/workflows → xmc-skills/1-analysis}/xiaoma-document-project/instructions.md +0 -0
- /package/src/{xmc/workflows → xmc-skills/1-analysis}/xiaoma-document-project/templates/deep-dive-template.md +0 -0
- /package/src/{xmc/workflows → xmc-skills/1-analysis}/xiaoma-document-project/templates/index-template.md +0 -0
- /package/src/{xmc/workflows → xmc-skills/1-analysis}/xiaoma-document-project/templates/project-overview-template.md +0 -0
- /package/src/{xmc/workflows → xmc-skills/1-analysis}/xiaoma-document-project/templates/project-scan-report-schema.json +0 -0
- /package/src/{xmc/workflows → xmc-skills/1-analysis}/xiaoma-document-project/templates/source-tree-template.md +0 -0
- /package/src/{xmc/workflows → xmc-skills/1-analysis}/xiaoma-document-project/workflows/deep-dive-workflow.md +0 -0
- /package/src/{xmc/workflows → xmc-skills/1-analysis}/xiaoma-document-project/workflows/full-scan-workflow.md +0 -0
- /package/src/{xmc/workflows → xmc-skills}/1-analysis/xiaoma-product-brief-preview/SKILL.md +0 -0
- /package/src/{xmc/workflows → xmc-skills}/1-analysis/xiaoma-product-brief-preview/agents/artifact-analyzer.md +0 -0
- /package/src/{xmc/workflows → xmc-skills}/1-analysis/xiaoma-product-brief-preview/agents/opportunity-reviewer.md +0 -0
- /package/src/{xmc/workflows → xmc-skills}/1-analysis/xiaoma-product-brief-preview/agents/skeptic-reviewer.md +0 -0
- /package/src/{xmc/workflows → xmc-skills}/1-analysis/xiaoma-product-brief-preview/agents/web-researcher.md +0 -0
- /package/src/{xmc/workflows → xmc-skills}/1-analysis/xiaoma-product-brief-preview/prompts/contextual-discovery.md +0 -0
- /package/src/{xmc/workflows → xmc-skills}/1-analysis/xiaoma-product-brief-preview/prompts/draft-and-review.md +0 -0
- /package/src/{xmc/workflows → xmc-skills}/1-analysis/xiaoma-product-brief-preview/prompts/finalize.md +0 -0
- /package/src/{xmc/workflows → xmc-skills}/1-analysis/xiaoma-product-brief-preview/prompts/guided-elicitation.md +0 -0
- /package/src/{xmc/workflows → xmc-skills}/1-analysis/xiaoma-product-brief-preview/resources/brief-template.md +0 -0
- /package/src/{xmc/workflows → xmc-skills}/1-analysis/xiaoma-product-brief-preview/xiaoma-manifest.json +0 -0
- /package/src/{core/skills/xiaoma-advanced-elicitation → xmc-skills/1-analysis/xiaoma-product-brief-preview}/xiaoma-skill-manifest.yaml +0 -0
- /package/src/{core/tasks/xiaoma-create-prd/data → xmc-skills/2-plan-workflows/xiaoma-prd/assets}/domain-complexity.csv +0 -0
- /package/src/{core/tasks/xiaoma-create-prd/data → xmc-skills/2-plan-workflows/xiaoma-prd/assets}/project-types.csv +0 -0
- /package/src/{xmc/workflows → xmc-skills}/3-solutioning/xiaoma-check-implementation-readiness/steps/step-04-ux-alignment.md +0 -0
- /package/src/{xmc/workflows → xmc-skills}/3-solutioning/xiaoma-check-implementation-readiness/steps/step-05-epic-quality-review.md +0 -0
- /package/src/{xmc/workflows → xmc-skills}/3-solutioning/xiaoma-check-implementation-readiness/templates/readiness-report-template.md +0 -0
- /package/src/{xmc/workflows → xmc-skills}/3-solutioning/xiaoma-create-architecture/architecture-decision-template.md +0 -0
- /package/src/{xmc/workflows → xmc-skills}/3-solutioning/xiaoma-create-architecture/data/domain-complexity.csv +0 -0
- /package/src/{xmc/workflows → xmc-skills}/3-solutioning/xiaoma-create-architecture/data/project-types.csv +0 -0
- /package/src/{xmc/workflows → xmc-skills}/3-solutioning/xiaoma-create-architecture/steps/step-01-init.md +0 -0
- /package/src/{xmc/workflows → xmc-skills}/3-solutioning/xiaoma-create-architecture/steps/step-01b-continue.md +0 -0
- /package/src/{xmc/workflows → xmc-skills}/3-solutioning/xiaoma-create-architecture/steps/step-02-context.md +0 -0
- /package/src/{xmc/workflows → xmc-skills}/3-solutioning/xiaoma-create-architecture/steps/step-03-starter.md +0 -0
- /package/src/{xmc/workflows → xmc-skills}/3-solutioning/xiaoma-create-architecture/steps/step-04-decisions.md +0 -0
- /package/src/{xmc/workflows → xmc-skills}/3-solutioning/xiaoma-create-architecture/steps/step-05-patterns.md +0 -0
- /package/src/{xmc/workflows → xmc-skills}/3-solutioning/xiaoma-create-architecture/steps/step-06-structure.md +0 -0
- /package/src/{xmc/workflows → xmc-skills}/3-solutioning/xiaoma-create-epics-and-stories/steps/step-01-validate-prerequisites.md +0 -0
- /package/src/{xmc/workflows → xmc-skills}/3-solutioning/xiaoma-create-epics-and-stories/steps/step-03-create-stories.md +0 -0
- /package/src/{xmc/workflows → xmc-skills}/3-solutioning/xiaoma-create-epics-and-stories/templates/epics-template.md +0 -0
- /package/src/{xmc/workflows → xmc-skills/3-solutioning}/xiaoma-generate-project-context/project-context-template.md +0 -0
- /package/src/{xmc/workflows → xmc-skills/3-solutioning}/xiaoma-generate-project-context/steps/step-01-discover.md +0 -0
- /package/src/{xmc/workflows → xmc-skills/3-solutioning}/xiaoma-generate-project-context/steps/step-02-generate.md +0 -0
- /package/src/{xmc/workflows/4-implementation/auto-story-pipeline → xmc-skills/4-implementation/xiaoma-auto-story-pipeline}/SKILL.md +0 -0
- /package/src/{xmc/workflows → xmc-skills}/4-implementation/xiaoma-create-story/checklist.md +0 -0
- /package/src/{xmc/workflows/4-implementation/xiaoma-code-review → xmc-skills/4-implementation/xiaoma-create-story}/discover-inputs.md +0 -0
- /package/src/{xmc/workflows → xmc-skills}/4-implementation/xiaoma-create-story/template.md +0 -0
- /package/src/{xmc/workflows → xmc-skills}/4-implementation/xiaoma-dev-story/checklist.md +0 -0
- /package/src/{xmc/workflows/xiaoma-quick-flow → xmc-skills/4-implementation}/xiaoma-quick-dev-new-preview/SKILL.md +0 -0
- /package/src/{xmc/workflows/xiaoma-quick-flow → xmc-skills/4-implementation}/xiaoma-quick-dev-new-preview/steps/step-01-clarify-and-route.md +0 -0
- /package/src/{xmc/workflows/xiaoma-quick-flow → xmc-skills/4-implementation}/xiaoma-quick-dev-new-preview/steps/step-02-plan.md +0 -0
- /package/src/{xmc/workflows/xiaoma-quick-flow → xmc-skills/4-implementation}/xiaoma-quick-dev-new-preview/steps/step-03-implement.md +0 -0
- /package/src/{xmc/workflows/xiaoma-quick-flow → xmc-skills/4-implementation}/xiaoma-quick-dev-new-preview/steps/step-04-review.md +0 -0
- /package/src/{xmc/workflows/xiaoma-quick-flow → xmc-skills/4-implementation}/xiaoma-quick-dev-new-preview/steps/step-05-present.md +0 -0
- /package/src/{xmc/workflows/xiaoma-quick-flow → xmc-skills/4-implementation}/xiaoma-quick-dev-new-preview/tech-spec-template.md +0 -0
- /package/src/{xmc/workflows/xiaoma-quick-flow → xmc-skills/4-implementation}/xiaoma-quick-dev-new-preview/workflow.md +0 -0
- /package/src/{core/skills/xiaoma-brainstorming → xmc-skills/4-implementation/xiaoma-quick-dev-new-preview}/xiaoma-skill-manifest.yaml +0 -0
- /package/src/{xmc/workflows/xiaoma-quick-flow → xmc-skills/4-implementation}/xiaoma-quick-spec/SKILL.md +0 -0
- /package/src/{xmc/workflows/xiaoma-quick-flow → xmc-skills/4-implementation}/xiaoma-quick-spec/steps/step-01-understand.md +0 -0
- /package/src/{xmc/workflows/xiaoma-quick-flow → xmc-skills/4-implementation}/xiaoma-quick-spec/steps/step-02-investigate.md +0 -0
- /package/src/{xmc/workflows/xiaoma-quick-flow → xmc-skills/4-implementation}/xiaoma-quick-spec/steps/step-03-generate.md +0 -0
- /package/src/{xmc/workflows/xiaoma-quick-flow → xmc-skills/4-implementation}/xiaoma-quick-spec/steps/step-04-review.md +0 -0
- /package/src/{xmc/workflows/xiaoma-quick-flow → xmc-skills/4-implementation}/xiaoma-quick-spec/tech-spec-template.md +0 -0
- /package/src/{xmc/workflows/xiaoma-quick-flow → xmc-skills/4-implementation}/xiaoma-quick-spec/workflow.md +0 -0
- /package/src/{core/skills/xiaoma-editorial-review-prose → xmc-skills/4-implementation/xiaoma-quick-spec}/xiaoma-skill-manifest.yaml +0 -0
- /package/src/{xmc/workflows → xmc-skills}/4-implementation/xiaoma-sprint-planning/checklist.md +0 -0
- /package/src/{xmc/workflows/5-full-pipeline/auto-full-pipeline → xmc-skills/5-full-pipeline/xiaoma-auto-full-pipeline}/SKILL.md +0 -0
- /package/src/{xmc/workflows/5-full-pipeline/auto-full-pipeline → xmc-skills/5-full-pipeline/xiaoma-auto-full-pipeline}/xiaoma-skill-manifest.yaml +0 -0
- /package/src/{xmc/workflows/5-full-pipeline/auto-prd-to-stories → xmc-skills/5-full-pipeline/xiaoma-auto-prd-to-stories}/SKILL.md +0 -0
- /package/src/{xmc/workflows/5-full-pipeline/auto-prd-to-stories → xmc-skills/5-full-pipeline/xiaoma-auto-prd-to-stories}/xiaoma-skill-manifest.yaml +0 -0
- /package/{patent-disclosure-optimized → src/xpm-skills/xiaoma-patent-mining}/references/disclosure-template.md +0 -0
- /package/{patent-disclosure-optimized → src/xpm-skills/xiaoma-patent-mining}/references/docx-format-spec.md +0 -0
- /package/{patent-disclosure-optimized → src/xpm-skills/xiaoma-patent-mining}/references/mining-principles.md +0 -0
- /package/{patent-disclosure-optimized → src/xpm-skills/xiaoma-patent-mining}/scripts/md2docx.js +0 -0
- /package/src/{core/skills/xiaoma-editorial-review-structure → xpm-skills/xiaoma-patent-mining}/xiaoma-skill-manifest.yaml +0 -0
- /package/tools/{cli/installers → installer}/install-messages.yaml +0 -0
|
@@ -1,8 +1,13 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: xiaoma-retrospective
|
|
3
|
+
description: 'Post-epic review to extract lessons and assess success. Use when the user says "run a retrospective" or "lets retro the epic [epic]"'
|
|
4
|
+
---
|
|
5
|
+
|
|
1
6
|
# Retrospective Workflow
|
|
2
7
|
|
|
3
8
|
**Goal:** Post-epic review to extract lessons and assess success.
|
|
4
9
|
|
|
5
|
-
**Your Role:**
|
|
10
|
+
**Your Role:** Developer facilitating retrospective.
|
|
6
11
|
- No time estimates — NEVER mention hours, days, weeks, months, or ANY time-based predictions. AI has fundamentally changed development speed.
|
|
7
12
|
- Communicate all responses in {communication_language} and language MUST be tailored to {user_skill_level}
|
|
8
13
|
- Generate all documents in {document_output_language}
|
|
@@ -15,16 +20,41 @@
|
|
|
15
20
|
- Two-part format: (1) Epic Review + (2) Next Epic Preparation
|
|
16
21
|
- Party mode protocol:
|
|
17
22
|
- ALL agent dialogue MUST use format: "Name (Role): dialogue"
|
|
18
|
-
- Example:
|
|
23
|
+
- Example: xiaokai (Developer): "Let's begin..."
|
|
19
24
|
- Example: {user_name} (Project Lead): [User responds]
|
|
20
25
|
- Create natural back-and-forth with user actively participating
|
|
21
26
|
- Show disagreements, diverse perspectives, authentic team dynamics
|
|
22
27
|
|
|
23
|
-
|
|
28
|
+
## Conventions
|
|
29
|
+
|
|
30
|
+
- Bare paths resolve from the skill root.
|
|
31
|
+
- `{skill-root}` resolves to this skill's installed directory (where `customize.toml` lives).
|
|
32
|
+
- `{project-root}`-prefixed paths resolve from the project working directory.
|
|
33
|
+
- `{skill-name}` resolves to the skill directory's basename.
|
|
34
|
+
|
|
35
|
+
## On Activation
|
|
36
|
+
|
|
37
|
+
### Step 1: Resolve the Workflow Block
|
|
38
|
+
|
|
39
|
+
Run: `node {project-root}/_xiaoma/scripts/resolve_customization.js --skill {skill-root} --key workflow`
|
|
40
|
+
|
|
41
|
+
**If the script fails**, resolve the `workflow` block yourself by reading these three files in base → team → user order and applying the same structural merge rules as the resolver:
|
|
42
|
+
|
|
43
|
+
1. `{skill-root}/customize.toml` — defaults
|
|
44
|
+
2. `{project-root}/_xiaoma/custom/{skill-name}.toml` — team overrides
|
|
45
|
+
3. `{project-root}/_xiaoma/custom/{skill-name}.user.toml` — personal overrides
|
|
46
|
+
|
|
47
|
+
Any missing file is skipped. Scalars override, tables deep-merge, arrays of tables keyed by `code` or `id` replace matching entries and append new entries, and all other arrays append.
|
|
48
|
+
|
|
49
|
+
### Step 2: Execute Prepend Steps
|
|
24
50
|
|
|
25
|
-
|
|
51
|
+
Execute each entry in `{workflow.activation_steps_prepend}` in order before proceeding.
|
|
26
52
|
|
|
27
|
-
###
|
|
53
|
+
### Step 3: Load Persistent Facts
|
|
54
|
+
|
|
55
|
+
Treat every entry in `{workflow.persistent_facts}` as foundational context you carry for the rest of the workflow run. Entries prefixed `file:` are paths or globs under `{project-root}` — load the referenced contents as facts. All other entries are facts verbatim.
|
|
56
|
+
|
|
57
|
+
### Step 4: Load Config
|
|
28
58
|
|
|
29
59
|
Load config from `{project-root}/_xiaoma/xmc/config.yaml` and resolve:
|
|
30
60
|
|
|
@@ -35,11 +65,21 @@ Load config from `{project-root}/_xiaoma/xmc/config.yaml` and resolve:
|
|
|
35
65
|
- `date` as system-generated current datetime
|
|
36
66
|
- YOU MUST ALWAYS SPEAK OUTPUT in your Agent communication style with the config `{communication_language}`
|
|
37
67
|
|
|
38
|
-
###
|
|
68
|
+
### Step 5: Greet the User
|
|
69
|
+
|
|
70
|
+
Greet `{user_name}`, speaking in `{communication_language}`.
|
|
71
|
+
|
|
72
|
+
### Step 6: Execute Append Steps
|
|
73
|
+
|
|
74
|
+
Execute each entry in `{workflow.activation_steps_append}` in order.
|
|
75
|
+
|
|
76
|
+
Activation is complete. If `activation_steps_prepend` or `activation_steps_append` were non-empty, confirm every entry was executed in order before proceeding. Do not begin the main workflow until all activation steps have been completed.
|
|
77
|
+
|
|
78
|
+
## Paths
|
|
39
79
|
|
|
40
80
|
- `sprint_status_file` = `{implementation_artifacts}/sprint-status.yaml`
|
|
41
81
|
|
|
42
|
-
|
|
82
|
+
## Input Files
|
|
43
83
|
|
|
44
84
|
| Input | Description | Path Pattern(s) | Load Strategy |
|
|
45
85
|
|-------|-------------|------------------|---------------|
|
|
@@ -49,27 +89,20 @@ Load config from `{project-root}/_xiaoma/xmc/config.yaml` and resolve:
|
|
|
49
89
|
| prd | Product requirements for context | whole: `{planning_artifacts}/*prd*.md`, sharded: `{planning_artifacts}/*prd*/*.md` | FULL_LOAD |
|
|
50
90
|
| document_project | Brownfield project documentation (optional) | sharded: `{planning_artifacts}/*.md` | INDEX_GUIDED |
|
|
51
91
|
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
- `agent_manifest` = `{project-root}/_xiaoma/_config/agent-manifest.csv`
|
|
55
|
-
|
|
56
|
-
### Context
|
|
92
|
+
## Required Inputs
|
|
57
93
|
|
|
58
|
-
- `
|
|
94
|
+
- `agent_roster` = resolved via `node {project-root}/_xiaoma/scripts/resolve_config.js --project-root {project-root} --key agents` (merges four layers in order: `_xiaoma/config.toml`, `_xiaoma/config.user.toml`, `_xiaoma/custom/config.toml`, `_xiaoma/custom/config.user.toml`)
|
|
59
95
|
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
## EXECUTION
|
|
96
|
+
## Execution
|
|
63
97
|
|
|
64
98
|
<workflow>
|
|
65
99
|
|
|
66
100
|
<step n="1" goal="Epic Discovery - Find Completed Epic with Priority Logic">
|
|
67
101
|
|
|
68
|
-
<action>Load {project_context} for project-wide patterns and conventions (if exists)</action>
|
|
69
102
|
<action>Explain to {user_name} the epic discovery process using natural dialogue</action>
|
|
70
103
|
|
|
71
104
|
<output>
|
|
72
|
-
|
|
105
|
+
xiaokai (Developer): "Welcome to the retrospective, {user_name}. Let me help you identify which epic we just completed. I'll check sprint-status first, but you're the ultimate authority on what we're reviewing today."
|
|
73
106
|
</output>
|
|
74
107
|
|
|
75
108
|
<action>PRIORITY 1: Check {sprint_status_file} first</action>
|
|
@@ -84,7 +117,7 @@ xiaomin (Scrum Master): "Welcome to the retrospective, {user_name}. Let me help
|
|
|
84
117
|
<action>Present finding to user with context</action>
|
|
85
118
|
|
|
86
119
|
<output>
|
|
87
|
-
|
|
120
|
+
xiaokai (Developer): "Based on {sprint_status_file}, it looks like Epic {{detected_epic}} was recently completed. Is that the epic you want to review today, {user_name}?"
|
|
88
121
|
</output>
|
|
89
122
|
|
|
90
123
|
<action>WAIT for {user_name} to confirm or correct</action>
|
|
@@ -96,7 +129,7 @@ xiaomin (Scrum Master): "Based on {sprint_status_file}, it looks like Epic {{det
|
|
|
96
129
|
<check if="{user_name} provides different epic number">
|
|
97
130
|
<action>Set {{epic_number}} = user-provided number</action>
|
|
98
131
|
<output>
|
|
99
|
-
|
|
132
|
+
xiaokai (Developer): "Got it, we're reviewing Epic {{epic_number}}. Let me gather that information."
|
|
100
133
|
</output>
|
|
101
134
|
</check>
|
|
102
135
|
</check>
|
|
@@ -105,7 +138,7 @@ xiaomin (Scrum Master): "Got it, we're reviewing Epic {{epic_number}}. Let me ga
|
|
|
105
138
|
<action>PRIORITY 2: Ask user directly</action>
|
|
106
139
|
|
|
107
140
|
<output>
|
|
108
|
-
|
|
141
|
+
xiaokai (Developer): "I'm having trouble detecting the completed epic from {sprint_status_file}. {user_name}, which epic number did you just complete?"
|
|
109
142
|
</output>
|
|
110
143
|
|
|
111
144
|
<action>WAIT for {user_name} to provide epic number</action>
|
|
@@ -120,7 +153,7 @@ xiaomin (Scrum Master): "I'm having trouble detecting the completed epic from {s
|
|
|
120
153
|
<action>Set {{detected_epic}} = highest epic number found</action>
|
|
121
154
|
|
|
122
155
|
<output>
|
|
123
|
-
|
|
156
|
+
xiaokai (Developer): "I found stories for Epic {{detected_epic}} in the stories folder. Is that the epic we're reviewing, {user_name}?"
|
|
124
157
|
</output>
|
|
125
158
|
|
|
126
159
|
<action>WAIT for {user_name} to confirm or correct</action>
|
|
@@ -143,9 +176,9 @@ xiaomin (Scrum Master): "I found stories for Epic {{detected_epic}} in the stori
|
|
|
143
176
|
|
|
144
177
|
<check if="epic is not complete">
|
|
145
178
|
<output>
|
|
146
|
-
Alice (Product Owner): "Wait,
|
|
179
|
+
Alice (Product Owner): "Wait, xiaokai - I'm seeing that Epic {{epic_number}} isn't actually complete yet."
|
|
147
180
|
|
|
148
|
-
|
|
181
|
+
xiaokai (Developer): "Let me check... you're right, Alice."
|
|
149
182
|
|
|
150
183
|
**Epic Status:**
|
|
151
184
|
|
|
@@ -156,7 +189,7 @@ xiaomin (Scrum Master): "Let me check... you're right, Alice."
|
|
|
156
189
|
**Pending Stories:**
|
|
157
190
|
{{pending_story_list}}
|
|
158
191
|
|
|
159
|
-
|
|
192
|
+
xiaokai (Developer): "{user_name}, we typically run retrospectives after all stories are done. What would you like to do?"
|
|
160
193
|
|
|
161
194
|
**Options:**
|
|
162
195
|
|
|
@@ -169,7 +202,7 @@ xiaomin (Scrum Master): "{user_name}, we typically run retrospectives after all
|
|
|
169
202
|
|
|
170
203
|
<check if="user says no">
|
|
171
204
|
<output>
|
|
172
|
-
|
|
205
|
+
xiaokai (Developer): "Smart call, {user_name}. Let's finish those stories first and then have a proper retrospective."
|
|
173
206
|
</output>
|
|
174
207
|
<action>HALT</action>
|
|
175
208
|
</check>
|
|
@@ -178,7 +211,7 @@ xiaomin (Scrum Master): "Smart call, {user_name}. Let's finish those stories fir
|
|
|
178
211
|
<output>
|
|
179
212
|
Charlie (Senior Dev): "Just so everyone knows, this partial retro might miss some important lessons from those pending stories."
|
|
180
213
|
|
|
181
|
-
|
|
214
|
+
xiaokai (Developer): "Good point, Charlie. {user_name}, we'll document what we can now, but we may want to revisit after everything's done."
|
|
182
215
|
</output>
|
|
183
216
|
</check>
|
|
184
217
|
|
|
@@ -186,21 +219,21 @@ xiaomin (Scrum Master): "Good point, Charlie. {user_name}, we'll document what w
|
|
|
186
219
|
<output>
|
|
187
220
|
Alice (Product Owner): "Excellent! All {{done_stories}} stories are marked done."
|
|
188
221
|
|
|
189
|
-
|
|
222
|
+
xiaokai (Developer): "Perfect. Epic {{epic_number}} is complete and ready for retrospective, {user_name}."
|
|
190
223
|
</output>
|
|
191
224
|
</check>
|
|
192
225
|
|
|
193
226
|
</step>
|
|
194
227
|
|
|
195
228
|
<step n="0.5" goal="Discover and load project documents">
|
|
196
|
-
<action>Load input files according to the Input Files table
|
|
229
|
+
<action>Load input files according to the Input Files table above. For SELECTIVE_LOAD inputs, load only the epic matching {{epic_number}}. For FULL_LOAD inputs, load the complete document. For INDEX_GUIDED inputs, check the index first and load relevant sections. After discovery, these content variables are available: {epics_content} (selective load for this epic), {architecture_content}, {prd_content}, {document_project_content}</action>
|
|
197
230
|
<note>After discovery, these content variables are available: {epics_content} (selective load for this epic), {architecture_content}, {prd_content}, {document_project_content}</note>
|
|
198
231
|
</step>
|
|
199
232
|
|
|
200
233
|
<step n="2" goal="Deep Story Analysis - Extract Lessons from Implementation">
|
|
201
234
|
|
|
202
235
|
<output>
|
|
203
|
-
|
|
236
|
+
xiaokai (Developer): "Before we start the team discussion, let me review all the story records to surface key themes. This'll help us have a richer conversation."
|
|
204
237
|
|
|
205
238
|
Charlie (Senior Dev): "Good idea - those dev notes always have gold in them."
|
|
206
239
|
</output>
|
|
@@ -219,7 +252,7 @@ Charlie (Senior Dev): "Good idea - those dev notes always have gold in them."
|
|
|
219
252
|
|
|
220
253
|
**Review Feedback Patterns:**
|
|
221
254
|
|
|
222
|
-
- Look for "## Review", "## Code Review", "##
|
|
255
|
+
- Look for "## Review", "## Code Review", "## Dev Review" sections
|
|
223
256
|
- Identify recurring feedback themes across stories
|
|
224
257
|
- Note which types of issues came up repeatedly
|
|
225
258
|
- Track quality concerns or architectural misalignments
|
|
@@ -282,11 +315,11 @@ Charlie (Senior Dev): "Good idea - those dev notes always have gold in them."
|
|
|
282
315
|
<action>Store this synthesis - these patterns will drive the retrospective discussion</action>
|
|
283
316
|
|
|
284
317
|
<output>
|
|
285
|
-
|
|
318
|
+
xiaokai (Developer): "Okay, I've reviewed all {{total_stories}} story records. I found some really interesting patterns we should discuss."
|
|
286
319
|
|
|
287
|
-
Dana (QA Engineer): "I'm curious what you found,
|
|
320
|
+
Dana (QA Engineer): "I'm curious what you found, xiaokai. I noticed some things in my testing too."
|
|
288
321
|
|
|
289
|
-
|
|
322
|
+
xiaokai (Developer): "We'll get to all of it. But first, let me load the previous epic's retro to see if we learned from last time."
|
|
290
323
|
</output>
|
|
291
324
|
|
|
292
325
|
</step>
|
|
@@ -300,7 +333,7 @@ xiaomin (Scrum Master): "We'll get to all of it. But first, let me load the prev
|
|
|
300
333
|
|
|
301
334
|
<check if="previous retrospectives found">
|
|
302
335
|
<output>
|
|
303
|
-
|
|
336
|
+
xiaokai (Developer): "I found our retrospectives from Epic {{prev_epic_num}}. Let me see what we committed to back then..."
|
|
304
337
|
</output>
|
|
305
338
|
|
|
306
339
|
<action>Read the previous retrospectives</action>
|
|
@@ -349,26 +382,26 @@ xiaomin (Scrum Master): "I found our retrospectives from Epic {{prev_epic_num}}.
|
|
|
349
382
|
|
|
350
383
|
<output>
|
|
351
384
|
|
|
352
|
-
|
|
385
|
+
xiaokai (Developer): "Interesting... in Epic {{prev_epic_num}}'s retro, we committed to {{action_count}} action items."
|
|
353
386
|
|
|
354
|
-
Alice (Product Owner): "How'd we do on those,
|
|
387
|
+
Alice (Product Owner): "How'd we do on those, xiaokai?"
|
|
355
388
|
|
|
356
|
-
|
|
389
|
+
xiaokai (Developer): "We completed {{completed_count}}, made progress on {{in_progress_count}}, but didn't address {{not_addressed_count}}."
|
|
357
390
|
|
|
358
391
|
Charlie (Senior Dev): _looking concerned_ "Which ones didn't we address?"
|
|
359
392
|
|
|
360
|
-
|
|
393
|
+
xiaokai (Developer): "We'll discuss that in the retro. Some of them might explain challenges we had this epic."
|
|
361
394
|
|
|
362
395
|
Elena (Junior Dev): "That's... actually pretty insightful."
|
|
363
396
|
|
|
364
|
-
|
|
397
|
+
xiaokai (Developer): "That's why we track this stuff. Pattern recognition helps us improve."
|
|
365
398
|
</output>
|
|
366
399
|
|
|
367
400
|
</check>
|
|
368
401
|
|
|
369
402
|
<check if="no previous retro found">
|
|
370
403
|
<output>
|
|
371
|
-
|
|
404
|
+
xiaokai (Developer): "I don't see a retrospective for Epic {{prev_epic_num}}. Either we skipped it, or this is your first retro."
|
|
372
405
|
|
|
373
406
|
Alice (Product Owner): "Probably our first one. Good time to start the habit!"
|
|
374
407
|
</output>
|
|
@@ -378,7 +411,7 @@ Alice (Product Owner): "Probably our first one. Good time to start the habit!"
|
|
|
378
411
|
|
|
379
412
|
<check if="{{prev_epic_num}} < 1">
|
|
380
413
|
<output>
|
|
381
|
-
|
|
414
|
+
xiaokai (Developer): "This is Epic 1, so naturally there's no previous retro to reference. We're starting fresh!"
|
|
382
415
|
|
|
383
416
|
Charlie (Senior Dev): "First epic, first retro. Let's make it count."
|
|
384
417
|
</output>
|
|
@@ -392,7 +425,7 @@ Charlie (Senior Dev): "First epic, first retro. Let's make it count."
|
|
|
392
425
|
<action>Calculate next epic number: {{next_epic_num}} = {{epic_number}} + 1</action>
|
|
393
426
|
|
|
394
427
|
<output>
|
|
395
|
-
|
|
428
|
+
xiaokai (Developer): "Before we dive into the discussion, let me take a quick look at Epic {{next_epic_num}} to understand what's coming."
|
|
396
429
|
|
|
397
430
|
Alice (Product Owner): "Good thinking - helps us connect what we learned to what we're about to do."
|
|
398
431
|
</output>
|
|
@@ -448,15 +481,15 @@ Alice (Product Owner): "Good thinking - helps us connect what we learned to what
|
|
|
448
481
|
- Deployment or environment setup
|
|
449
482
|
|
|
450
483
|
<output>
|
|
451
|
-
|
|
484
|
+
xiaokai (Developer): "Alright, I've reviewed Epic {{next_epic_num}}: '{{next_epic_title}}'"
|
|
452
485
|
|
|
453
486
|
Alice (Product Owner): "What are we looking at?"
|
|
454
487
|
|
|
455
|
-
|
|
488
|
+
xiaokai (Developer): "{{next_epic_num}} stories planned, building on the {{dependency_description}} from Epic {{epic_number}}."
|
|
456
489
|
|
|
457
490
|
Charlie (Senior Dev): "Dependencies concern me. Did we finish everything we need for that?"
|
|
458
491
|
|
|
459
|
-
|
|
492
|
+
xiaokai (Developer): "Good question - that's exactly what we need to explore in this retro."
|
|
460
493
|
</output>
|
|
461
494
|
|
|
462
495
|
<action>Set {{next_epic_exists}} = true</action>
|
|
@@ -464,11 +497,11 @@ xiaomin (Scrum Master): "Good question - that's exactly what we need to explore
|
|
|
464
497
|
|
|
465
498
|
<check if="next epic NOT found">
|
|
466
499
|
<output>
|
|
467
|
-
|
|
500
|
+
xiaokai (Developer): "Hmm, I don't see Epic {{next_epic_num}} defined yet."
|
|
468
501
|
|
|
469
502
|
Alice (Product Owner): "We might be at the end of the roadmap, or we haven't planned that far ahead yet."
|
|
470
503
|
|
|
471
|
-
|
|
504
|
+
xiaokai (Developer): "No problem. We'll still do a thorough retro on Epic {{epic_number}}. The lessons will be valuable whenever we plan the next work."
|
|
472
505
|
</output>
|
|
473
506
|
|
|
474
507
|
<action>Set {{next_epic_exists}} = false</action>
|
|
@@ -478,18 +511,18 @@ xiaomin (Scrum Master): "No problem. We'll still do a thorough retro on Epic {{e
|
|
|
478
511
|
|
|
479
512
|
<step n="5" goal="Initialize Retrospective with Rich Context">
|
|
480
513
|
|
|
481
|
-
<action>Load agent
|
|
514
|
+
<action>Load agent roster from {agent_roster}</action>
|
|
482
515
|
<action>Identify which agents participated in Epic {{epic_number}} based on story records</action>
|
|
483
|
-
<action>Ensure key roles present: Product Owner,
|
|
516
|
+
<action>Ensure key roles present: Product Owner, Developer (facilitating), Testing/QA, Architect</action>
|
|
484
517
|
|
|
485
518
|
<output>
|
|
486
|
-
|
|
519
|
+
xiaokai (Developer): "Alright team, everyone's here. Let me set the stage for our retrospective."
|
|
487
520
|
|
|
488
521
|
═══════════════════════════════════════════════════════════
|
|
489
522
|
🔄 TEAM RETROSPECTIVE - Epic {{epic_number}}: {{epic_title}}
|
|
490
523
|
═══════════════════════════════════════════════════════════
|
|
491
524
|
|
|
492
|
-
|
|
525
|
+
xiaokai (Developer): "Here's what we accomplished together."
|
|
493
526
|
|
|
494
527
|
**EPIC {{epic_number}} SUMMARY:**
|
|
495
528
|
|
|
@@ -533,7 +566,7 @@ Preparation Needed:
|
|
|
533
566
|
Technical Prerequisites:
|
|
534
567
|
{{list_technical_prereqs}}
|
|
535
568
|
|
|
536
|
-
|
|
569
|
+
xiaokai (Developer): "And here's what's coming next. Epic {{next_epic_num}} builds on what we just finished."
|
|
537
570
|
|
|
538
571
|
Elena (Junior Dev): "Wow, that's a lot of dependencies on our work."
|
|
539
572
|
|
|
@@ -542,24 +575,24 @@ Charlie (Senior Dev): "Which means we better make sure Epic {{epic_number}} is a
|
|
|
542
575
|
|
|
543
576
|
═══════════════════════════════════════════════════════════
|
|
544
577
|
|
|
545
|
-
|
|
578
|
+
xiaokai (Developer): "Team assembled for this retrospective:"
|
|
546
579
|
|
|
547
580
|
{{list_participating_agents}}
|
|
548
581
|
|
|
549
|
-
|
|
582
|
+
xiaokai (Developer): "{user_name}, you're joining us as Project Lead. Your perspective is crucial here."
|
|
550
583
|
|
|
551
584
|
{user_name} (Project Lead): [Participating in the retrospective]
|
|
552
585
|
|
|
553
|
-
|
|
586
|
+
xiaokai (Developer): "Our focus today:"
|
|
554
587
|
|
|
555
588
|
1. Learning from Epic {{epic_number}} execution
|
|
556
589
|
{{#if next_epic_exists}}2. Preparing for Epic {{next_epic_num}} success{{/if}}
|
|
557
590
|
|
|
558
|
-
|
|
591
|
+
xiaokai (Developer): "Ground rules: psychological safety first. No blame, no judgment. We focus on systems and processes, not individuals. Everyone's voice matters. Specific examples are better than generalizations."
|
|
559
592
|
|
|
560
593
|
Alice (Product Owner): "And everything shared here stays in this room - unless we decide together to escalate something."
|
|
561
594
|
|
|
562
|
-
|
|
595
|
+
xiaokai (Developer): "Exactly. {user_name}, any questions before we dive in?"
|
|
563
596
|
</output>
|
|
564
597
|
|
|
565
598
|
<action>WAIT for {user_name} to respond or indicate readiness</action>
|
|
@@ -569,25 +602,25 @@ xiaomin (Scrum Master): "Exactly. {user_name}, any questions before we dive in?"
|
|
|
569
602
|
<step n="6" goal="Epic Review Discussion - What Went Well, What Didn't">
|
|
570
603
|
|
|
571
604
|
<output>
|
|
572
|
-
|
|
605
|
+
xiaokai (Developer): "Let's start with the good stuff. What went well in Epic {{epic_number}}?"
|
|
573
606
|
|
|
574
|
-
|
|
607
|
+
xiaokai (Developer): _pauses, creating space_
|
|
575
608
|
|
|
576
609
|
Alice (Product Owner): "I'll start. The user authentication flow we delivered exceeded my expectations. The UX is smooth, and early user feedback has been really positive."
|
|
577
610
|
|
|
578
611
|
Charlie (Senior Dev): "I'll add to that - the caching strategy we implemented in Story {{breakthrough_story_num}} was a game-changer. We cut API calls by 60% and it set the pattern for the rest of the epic."
|
|
579
612
|
|
|
580
|
-
Dana (QA Engineer): "From my side, testing went smoother than usual. The
|
|
613
|
+
Dana (QA Engineer): "From my side, testing went smoother than usual. The Developer's documentation was way better this epic - actually usable test plans!"
|
|
581
614
|
|
|
582
615
|
Elena (Junior Dev): _smiling_ "That's because Charlie made me document everything after Story 1's code review!"
|
|
583
616
|
|
|
584
617
|
Charlie (Senior Dev): _laughing_ "Tough love pays off."
|
|
585
618
|
</output>
|
|
586
619
|
|
|
587
|
-
<action>
|
|
620
|
+
<action>xiaokai (Developer) naturally turns to {user_name} to engage them in the discussion</action>
|
|
588
621
|
|
|
589
622
|
<output>
|
|
590
|
-
|
|
623
|
+
xiaokai (Developer): "{user_name}, what stood out to you as going well in this epic?"
|
|
591
624
|
</output>
|
|
592
625
|
|
|
593
626
|
<action>WAIT for {user_name} to respond - this is a KEY USER INTERACTION moment</action>
|
|
@@ -605,9 +638,9 @@ Charlie (Senior Dev): [Builds on the discussion, perhaps adding technical detail
|
|
|
605
638
|
<action>After covering successes, guide the transition to challenges with care</action>
|
|
606
639
|
|
|
607
640
|
<output>
|
|
608
|
-
|
|
641
|
+
xiaokai (Developer): "Okay, we've celebrated some real wins. Now let's talk about challenges - where did we struggle? What slowed us down?"
|
|
609
642
|
|
|
610
|
-
|
|
643
|
+
xiaokai (Developer): _creates safe space with tone and pacing_
|
|
611
644
|
|
|
612
645
|
Elena (Junior Dev): _hesitates_ "Well... I really struggled with the database migrations in Story {{difficult_story_num}}. The documentation wasn't clear, and I had to redo it three times. Lost almost a full sprint on that story alone."
|
|
613
646
|
|
|
@@ -617,11 +650,11 @@ Alice (Product Owner): _frustrated_ "That's not fair, Charlie. We only clarified
|
|
|
617
650
|
|
|
618
651
|
Charlie (Senior Dev): _heat rising_ "We asked plenty of questions! You said the schema was finalized, then two days into development you wanted to add three new fields!"
|
|
619
652
|
|
|
620
|
-
|
|
653
|
+
xiaokai (Developer): _intervening calmly_ "Let's take a breath here. This is exactly the kind of thing we need to unpack."
|
|
621
654
|
|
|
622
|
-
|
|
655
|
+
xiaokai (Developer): "Elena, you spent almost a full sprint on Story {{difficult_story_num}}. Charlie, you're saying requirements changed. Alice, you feel the right questions weren't asked up front."
|
|
623
656
|
|
|
624
|
-
|
|
657
|
+
xiaokai (Developer): "{user_name}, you have visibility across the whole project. What's your take on this situation?"
|
|
625
658
|
</output>
|
|
626
659
|
|
|
627
660
|
<action>WAIT for {user_name} to respond and help facilitate the conflict resolution</action>
|
|
@@ -629,7 +662,7 @@ xiaomin (Scrum Master): "{user_name}, you have visibility across the whole proje
|
|
|
629
662
|
<action>Use {user_name}'s response to guide the discussion toward systemic understanding rather than blame</action>
|
|
630
663
|
|
|
631
664
|
<output>
|
|
632
|
-
|
|
665
|
+
xiaokai (Developer): [Synthesizes {user_name}'s input with what the team shared] "So it sounds like the core issue was {{root_cause_based_on_discussion}}, not any individual person's fault."
|
|
633
666
|
|
|
634
667
|
Elena (Junior Dev): "That makes sense. If we'd had {{preventive_measure}}, I probably could have avoided those redos."
|
|
635
668
|
|
|
@@ -637,23 +670,23 @@ Charlie (Senior Dev): _softening_ "Yeah, and I could have been clearer about ass
|
|
|
637
670
|
|
|
638
671
|
Alice (Product Owner): "I appreciate that. I could've been more proactive about flagging the schema additions earlier, too."
|
|
639
672
|
|
|
640
|
-
|
|
673
|
+
xiaokai (Developer): "This is good. We're identifying systemic improvements, not assigning blame."
|
|
641
674
|
</output>
|
|
642
675
|
|
|
643
676
|
<action>Continue the discussion, weaving in patterns discovered from the deep story analysis (Step 2)</action>
|
|
644
677
|
|
|
645
678
|
<output>
|
|
646
|
-
|
|
679
|
+
xiaokai (Developer): "Speaking of patterns, I noticed something when reviewing all the story records..."
|
|
647
680
|
|
|
648
|
-
|
|
681
|
+
xiaokai (Developer): "{{pattern_1_description}} - this showed up in {{pattern_1_count}} out of {{total_stories}} stories."
|
|
649
682
|
|
|
650
683
|
Dana (QA Engineer): "Oh wow, I didn't realize it was that widespread."
|
|
651
684
|
|
|
652
|
-
|
|
685
|
+
xiaokai (Developer): "Yeah. And there's more - {{pattern_2_description}} came up in almost every code review."
|
|
653
686
|
|
|
654
687
|
Charlie (Senior Dev): "That's... actually embarrassing. We should've caught that pattern earlier."
|
|
655
688
|
|
|
656
|
-
|
|
689
|
+
xiaokai (Developer): "No shame, Charlie. Now we know, and we can improve. {user_name}, did you notice these patterns during the epic?"
|
|
657
690
|
</output>
|
|
658
691
|
|
|
659
692
|
<action>WAIT for {user_name} to share their observations</action>
|
|
@@ -669,21 +702,21 @@ xiaomin (Scrum Master): "No shame, Charlie. Now we know, and we can improve. {us
|
|
|
669
702
|
|
|
670
703
|
<check if="previous retrospective exists">
|
|
671
704
|
<output>
|
|
672
|
-
|
|
705
|
+
xiaokai (Developer): "Before we move on, I want to circle back to Epic {{prev_epic_num}}'s retrospective."
|
|
673
706
|
|
|
674
|
-
|
|
707
|
+
xiaokai (Developer): "We made some commitments in that retro. Let's see how we did."
|
|
675
708
|
|
|
676
|
-
|
|
709
|
+
xiaokai (Developer): "Action item 1: {{prev_action_1}}. Status: {{prev_action_1_status}}"
|
|
677
710
|
|
|
678
711
|
Alice (Product Owner): {{#if prev_action_1_status == "completed"}}"We nailed that one!"{{else}}"We... didn't do that one."{{/if}}
|
|
679
712
|
|
|
680
713
|
Charlie (Senior Dev): {{#if prev_action_1_status == "completed"}}"And it helped! I noticed {{evidence_of_impact}}"{{else}}"Yeah, and I think that's why we had {{consequence_of_not_doing_it}} this epic."{{/if}}
|
|
681
714
|
|
|
682
|
-
|
|
715
|
+
xiaokai (Developer): "Action item 2: {{prev_action_2}}. Status: {{prev_action_2_status}}"
|
|
683
716
|
|
|
684
717
|
Dana (QA Engineer): {{#if prev_action_2_status == "completed"}}"This one made testing so much easier this time."{{else}}"If we'd done this, I think testing would've gone faster."{{/if}}
|
|
685
718
|
|
|
686
|
-
|
|
719
|
+
xiaokai (Developer): "{user_name}, looking at what we committed to last time and what we actually did - what's your reaction?"
|
|
687
720
|
</output>
|
|
688
721
|
|
|
689
722
|
<action>WAIT for {user_name} to respond</action>
|
|
@@ -692,18 +725,18 @@ xiaomin (Scrum Master): "{user_name}, looking at what we committed to last time
|
|
|
692
725
|
</check>
|
|
693
726
|
|
|
694
727
|
<output>
|
|
695
|
-
|
|
728
|
+
xiaokai (Developer): "Alright, we've covered a lot of ground. Let me summarize what I'm hearing..."
|
|
696
729
|
|
|
697
|
-
|
|
730
|
+
xiaokai (Developer): "**Successes:**"
|
|
698
731
|
{{list_success_themes}}
|
|
699
732
|
|
|
700
|
-
|
|
733
|
+
xiaokai (Developer): "**Challenges:**"
|
|
701
734
|
{{list_challenge_themes}}
|
|
702
735
|
|
|
703
|
-
|
|
736
|
+
xiaokai (Developer): "**Key Insights:**"
|
|
704
737
|
{{list_insight_themes}}
|
|
705
738
|
|
|
706
|
-
|
|
739
|
+
xiaokai (Developer): "Does that capture it? Anyone have something important we missed?"
|
|
707
740
|
</output>
|
|
708
741
|
|
|
709
742
|
<action>Allow team members to add any final thoughts on the epic review</action>
|
|
@@ -715,15 +748,15 @@ xiaomin (Scrum Master): "Does that capture it? Anyone have something important w
|
|
|
715
748
|
|
|
716
749
|
<check if="{{next_epic_exists}} == false">
|
|
717
750
|
<output>
|
|
718
|
-
|
|
751
|
+
xiaokai (Developer): "Normally we'd discuss preparing for the next epic, but since Epic {{next_epic_num}} isn't defined yet, let's skip to action items."
|
|
719
752
|
</output>
|
|
720
753
|
<action>Skip to Step 8</action>
|
|
721
754
|
</check>
|
|
722
755
|
|
|
723
756
|
<output>
|
|
724
|
-
|
|
757
|
+
xiaokai (Developer): "Now let's shift gears. Epic {{next_epic_num}} is coming up: '{{next_epic_title}}'"
|
|
725
758
|
|
|
726
|
-
|
|
759
|
+
xiaokai (Developer): "The question is: are we ready? What do we need to prepare?"
|
|
727
760
|
|
|
728
761
|
Alice (Product Owner): "From my perspective, we need to make sure {{dependency_concern_1}} from Epic {{epic_number}} is solid before we start building on it."
|
|
729
762
|
|
|
@@ -733,7 +766,7 @@ Dana (QA Engineer): "And I need {{testing_infrastructure_need}} in place, or we'
|
|
|
733
766
|
|
|
734
767
|
Elena (Junior Dev): "I'm less worried about infrastructure and more about knowledge. I don't understand {{knowledge_gap}} well enough to work on Epic {{next_epic_num}}'s stories."
|
|
735
768
|
|
|
736
|
-
|
|
769
|
+
xiaokai (Developer): "{user_name}, the team is surfacing some real concerns here. What's your sense of our readiness?"
|
|
737
770
|
</output>
|
|
738
771
|
|
|
739
772
|
<action>WAIT for {user_name} to share their assessment</action>
|
|
@@ -755,13 +788,13 @@ Charlie (Senior Dev): "Exactly. We can't just jump into Epic {{next_epic_num}} o
|
|
|
755
788
|
|
|
756
789
|
Alice (Product Owner): _frustrated_ "But we have stakeholder pressure to keep shipping features. They're not going to be happy about a 'prep sprint.'"
|
|
757
790
|
|
|
758
|
-
|
|
791
|
+
xiaokai (Developer): "Let's think about this differently. What happens if we DON'T do this prep work?"
|
|
759
792
|
|
|
760
793
|
Dana (QA Engineer): "We'll hit blockers in the middle of Epic {{next_epic_num}}, velocity will tank, and we'll ship late anyway."
|
|
761
794
|
|
|
762
795
|
Charlie (Senior Dev): "Worse - we'll ship something built on top of {{technical_concern_1}}, and it'll be fragile."
|
|
763
796
|
|
|
764
|
-
|
|
797
|
+
xiaokai (Developer): "{user_name}, you're balancing stakeholder pressure against technical reality. How do you want to handle this?"
|
|
765
798
|
</output>
|
|
766
799
|
|
|
767
800
|
<action>WAIT for {user_name} to provide direction on preparation approach</action>
|
|
@@ -773,9 +806,9 @@ Alice (Product Owner): [Potentially disagrees with {user_name}'s approach] "I he
|
|
|
773
806
|
|
|
774
807
|
Charlie (Senior Dev): [Potentially supports or challenges Alice's point] "The business perspective is valid, but {{technical_counter_argument}}."
|
|
775
808
|
|
|
776
|
-
|
|
809
|
+
xiaokai (Developer): "We have healthy tension here between business needs and technical reality. That's good - it means we're being honest."
|
|
777
810
|
|
|
778
|
-
|
|
811
|
+
xiaokai (Developer): "Let's explore a middle ground. Charlie, which of your prep items are absolutely critical vs. nice-to-have?"
|
|
779
812
|
|
|
780
813
|
Charlie (Senior Dev): "{{critical_prep_item_1}} and {{critical_prep_item_2}} are non-negotiable. {{nice_to_have_prep_item}} can wait."
|
|
781
814
|
|
|
@@ -787,7 +820,7 @@ Dana (QA Engineer): "But that means Story 1 of Epic {{next_epic_num}} can't depe
|
|
|
787
820
|
|
|
788
821
|
Alice (Product Owner): _looking at epic plan_ "Actually, Stories 1 and 2 are about {{independent_work}}, so they don't depend on it. We could make that work."
|
|
789
822
|
|
|
790
|
-
|
|
823
|
+
xiaokai (Developer): "{user_name}, the team is finding a workable compromise here. Does this approach make sense to you?"
|
|
791
824
|
</output>
|
|
792
825
|
|
|
793
826
|
<action>WAIT for {user_name} to validate or adjust the preparation strategy</action>
|
|
@@ -813,7 +846,7 @@ xiaomin (Scrum Master): "{user_name}, the team is finding a workable compromise
|
|
|
813
846
|
- Brings {user_name} in for key decisions
|
|
814
847
|
|
|
815
848
|
<output>
|
|
816
|
-
|
|
849
|
+
xiaokai (Developer): "I'm hearing a clear picture of what we need before Epic {{next_epic_num}}. Let me summarize..."
|
|
817
850
|
|
|
818
851
|
**CRITICAL PREPARATION (Must complete before epic starts):**
|
|
819
852
|
{{list_critical_prep_items_with_owners_and_estimates}}
|
|
@@ -824,11 +857,11 @@ xiaomin (Scrum Master): "I'm hearing a clear picture of what we need before Epic
|
|
|
824
857
|
**NICE-TO-HAVE PREPARATION (Would help but not blocking):**
|
|
825
858
|
{{list_nice_to_have_prep_items}}
|
|
826
859
|
|
|
827
|
-
|
|
860
|
+
xiaokai (Developer): "Total critical prep effort: {{critical_hours}} hours ({{critical_days}} days)"
|
|
828
861
|
|
|
829
862
|
Alice (Product Owner): "That's manageable. We can communicate that to stakeholders."
|
|
830
863
|
|
|
831
|
-
|
|
864
|
+
xiaokai (Developer): "{user_name}, does this preparation plan work for you?"
|
|
832
865
|
</output>
|
|
833
866
|
|
|
834
867
|
<action>WAIT for {user_name} final validation of preparation plan</action>
|
|
@@ -838,9 +871,9 @@ xiaomin (Scrum Master): "{user_name}, does this preparation plan work for you?"
|
|
|
838
871
|
<step n="8" goal="Synthesize Action Items with Significant Change Detection">
|
|
839
872
|
|
|
840
873
|
<output>
|
|
841
|
-
|
|
874
|
+
xiaokai (Developer): "Let's capture concrete action items from everything we've discussed."
|
|
842
875
|
|
|
843
|
-
|
|
876
|
+
xiaokai (Developer): "I want specific, achievable actions with clear owners. Not vague aspirations."
|
|
844
877
|
</output>
|
|
845
878
|
|
|
846
879
|
<action>Synthesize themes from Epic {{epic_number}} review discussion into actionable improvements</action>
|
|
@@ -862,7 +895,7 @@ xiaomin (Scrum Master): "I want specific, achievable actions with clear owners.
|
|
|
862
895
|
- Time-bound: Has clear deadline
|
|
863
896
|
|
|
864
897
|
<output>
|
|
865
|
-
|
|
898
|
+
xiaokai (Developer): "Based on our discussion, here are the action items I'm proposing..."
|
|
866
899
|
|
|
867
900
|
═══════════════════════════════════════════════════════════
|
|
868
901
|
📝 EPIC {{epic_number}} ACTION ITEMS:
|
|
@@ -882,11 +915,11 @@ xiaomin (Scrum Master): "Based on our discussion, here are the action items I'm
|
|
|
882
915
|
|
|
883
916
|
Charlie (Senior Dev): "I can own action item 1, but {{timeline_1}} is tight. Can we push it to {{alternative_timeline}}?"
|
|
884
917
|
|
|
885
|
-
|
|
918
|
+
xiaokai (Developer): "What do others think? Does that timing still work?"
|
|
886
919
|
|
|
887
920
|
Alice (Product Owner): "{{alternative_timeline}} works for me, as long as it's done before Epic {{next_epic_num}} starts."
|
|
888
921
|
|
|
889
|
-
|
|
922
|
+
xiaokai (Developer): "Agreed. Updated to {{alternative_timeline}}."
|
|
890
923
|
|
|
891
924
|
**Technical Debt:**
|
|
892
925
|
|
|
@@ -904,7 +937,7 @@ Dana (QA Engineer): "For debt item 1, can we prioritize that as high? It caused
|
|
|
904
937
|
|
|
905
938
|
Charlie (Senior Dev): "I marked it medium because {{reasoning}}, but I hear your point."
|
|
906
939
|
|
|
907
|
-
|
|
940
|
+
xiaokai (Developer): "{user_name}, this is a priority call. Testing impact vs. {{reasoning}} - how do you want to prioritize it?"
|
|
908
941
|
</output>
|
|
909
942
|
|
|
910
943
|
<action>WAIT for {user_name} to help resolve priority discussions</action>
|
|
@@ -925,7 +958,7 @@ xiaomin (Scrum Master): "{user_name}, this is a priority call. Testing impact vs
|
|
|
925
958
|
- {{agreement_2}}
|
|
926
959
|
- {{agreement_3}}
|
|
927
960
|
|
|
928
|
-
|
|
961
|
+
xiaokai (Developer): "These agreements are how we're committing to work differently going forward."
|
|
929
962
|
|
|
930
963
|
Elena (Junior Dev): "I like agreement 2 - that would've saved me on Story {{difficult_story_num}}."
|
|
931
964
|
|
|
@@ -991,9 +1024,9 @@ Estimated: {{est_4}}
|
|
|
991
1024
|
🚨 SIGNIFICANT DISCOVERY ALERT 🚨
|
|
992
1025
|
═══════════════════════════════════════════════════════════
|
|
993
1026
|
|
|
994
|
-
|
|
1027
|
+
xiaokai (Developer): "{user_name}, we need to flag something important."
|
|
995
1028
|
|
|
996
|
-
|
|
1029
|
+
xiaokai (Developer): "During Epic {{epic_number}}, the team uncovered findings that may require updating the plan for Epic {{next_epic_num}}."
|
|
997
1030
|
|
|
998
1031
|
**Significant Changes Identified:**
|
|
999
1032
|
|
|
@@ -1036,9 +1069,9 @@ This means Epic {{next_epic_num}} likely needs:
|
|
|
1036
1069
|
4. Hold alignment session with Product Owner before starting Epic {{next_epic_num}}
|
|
1037
1070
|
{{#if prd_update_needed}}5. Update PRD sections affected by new understanding{{/if}}
|
|
1038
1071
|
|
|
1039
|
-
|
|
1072
|
+
xiaokai (Developer): "**Epic Update Required**: YES - Schedule epic planning review session"
|
|
1040
1073
|
|
|
1041
|
-
|
|
1074
|
+
xiaokai (Developer): "{user_name}, this is significant. We need to address this before committing to Epic {{next_epic_num}}'s current plan. How do you want to handle it?"
|
|
1042
1075
|
</output>
|
|
1043
1076
|
|
|
1044
1077
|
<action>WAIT for {user_name} to decide on how to handle the significant changes</action>
|
|
@@ -1050,24 +1083,24 @@ Alice (Product Owner): "I agree with {user_name}'s approach. Better to adjust th
|
|
|
1050
1083
|
|
|
1051
1084
|
Charlie (Senior Dev): "This is why retrospectives matter. We caught this before it became a disaster."
|
|
1052
1085
|
|
|
1053
|
-
|
|
1086
|
+
xiaokai (Developer): "Adding to critical path: Epic {{next_epic_num}} planning review session before epic kickoff."
|
|
1054
1087
|
</output>
|
|
1055
1088
|
</check>
|
|
1056
1089
|
|
|
1057
1090
|
<check if="no significant discoveries">
|
|
1058
1091
|
<output>
|
|
1059
|
-
|
|
1092
|
+
xiaokai (Developer): "Good news - nothing from Epic {{epic_number}} fundamentally changes our plan for Epic {{next_epic_num}}. The plan is still sound."
|
|
1060
1093
|
|
|
1061
1094
|
Alice (Product Owner): "We learned a lot, but the direction is right."
|
|
1062
1095
|
</output>
|
|
1063
1096
|
</check>
|
|
1064
1097
|
|
|
1065
1098
|
<output>
|
|
1066
|
-
|
|
1099
|
+
xiaokai (Developer): "Let me show you the complete action plan..."
|
|
1067
1100
|
|
|
1068
|
-
|
|
1101
|
+
xiaokai (Developer): "That's {{total_action_count}} action items, {{prep_task_count}} preparation tasks, and {{critical_count}} critical path items."
|
|
1069
1102
|
|
|
1070
|
-
|
|
1103
|
+
xiaokai (Developer): "Everyone clear on what they own?"
|
|
1071
1104
|
</output>
|
|
1072
1105
|
|
|
1073
1106
|
<action>Give each agent with assignments a moment to acknowledge their ownership</action>
|
|
@@ -1079,21 +1112,21 @@ xiaomin (Scrum Master): "Everyone clear on what they own?"
|
|
|
1079
1112
|
<step n="9" goal="Critical Readiness Exploration - Interactive Deep Dive">
|
|
1080
1113
|
|
|
1081
1114
|
<output>
|
|
1082
|
-
|
|
1115
|
+
xiaokai (Developer): "Before we close, I want to do a final readiness check."
|
|
1083
1116
|
|
|
1084
|
-
|
|
1117
|
+
xiaokai (Developer): "Epic {{epic_number}} is marked complete in sprint-status, but is it REALLY done?"
|
|
1085
1118
|
|
|
1086
|
-
Alice (Product Owner): "What do you mean,
|
|
1119
|
+
Alice (Product Owner): "What do you mean, xiaokai?"
|
|
1087
1120
|
|
|
1088
|
-
|
|
1121
|
+
xiaokai (Developer): "I mean truly production-ready, stakeholders happy, no loose ends that'll bite us later."
|
|
1089
1122
|
|
|
1090
|
-
|
|
1123
|
+
xiaokai (Developer): "{user_name}, let's walk through this together."
|
|
1091
1124
|
</output>
|
|
1092
1125
|
|
|
1093
1126
|
<action>Explore testing and quality state through natural conversation</action>
|
|
1094
1127
|
|
|
1095
1128
|
<output>
|
|
1096
|
-
|
|
1129
|
+
xiaokai (Developer): "{user_name}, tell me about the testing for Epic {{epic_number}}. What verification has been done?"
|
|
1097
1130
|
</output>
|
|
1098
1131
|
|
|
1099
1132
|
<action>WAIT for {user_name} to describe testing status</action>
|
|
@@ -1103,18 +1136,18 @@ Dana (QA Engineer): [Responds to what {user_name} shared] "I can add to that - {
|
|
|
1103
1136
|
|
|
1104
1137
|
Dana (QA Engineer): "But honestly, {{testing_concern_if_any}}."
|
|
1105
1138
|
|
|
1106
|
-
|
|
1139
|
+
xiaokai (Developer): "{user_name}, are you confident Epic {{epic_number}} is production-ready from a quality perspective?"
|
|
1107
1140
|
</output>
|
|
1108
1141
|
|
|
1109
1142
|
<action>WAIT for {user_name} to assess quality readiness</action>
|
|
1110
1143
|
|
|
1111
1144
|
<check if="{user_name} expresses concerns">
|
|
1112
1145
|
<output>
|
|
1113
|
-
|
|
1146
|
+
xiaokai (Developer): "Okay, let's capture that. What specific testing is still needed?"
|
|
1114
1147
|
|
|
1115
1148
|
Dana (QA Engineer): "I can handle {{testing_work_needed}}, estimated {{testing_hours}} hours."
|
|
1116
1149
|
|
|
1117
|
-
|
|
1150
|
+
xiaokai (Developer): "Adding to critical path: Complete {{testing_work_needed}} before Epic {{next_epic_num}}."
|
|
1118
1151
|
</output>
|
|
1119
1152
|
<action>Add testing completion to critical path</action>
|
|
1120
1153
|
</check>
|
|
@@ -1122,7 +1155,7 @@ xiaomin (Scrum Master): "Adding to critical path: Complete {{testing_work_needed
|
|
|
1122
1155
|
<action>Explore deployment and release status</action>
|
|
1123
1156
|
|
|
1124
1157
|
<output>
|
|
1125
|
-
|
|
1158
|
+
xiaokai (Developer): "{user_name}, what's the deployment status for Epic {{epic_number}}? Is it live in production, scheduled for deployment, or still pending?"
|
|
1126
1159
|
</output>
|
|
1127
1160
|
|
|
1128
1161
|
<action>WAIT for {user_name} to provide deployment status</action>
|
|
@@ -1131,7 +1164,7 @@ xiaomin (Scrum Master): "{user_name}, what's the deployment status for Epic {{ep
|
|
|
1131
1164
|
<output>
|
|
1132
1165
|
Charlie (Senior Dev): "If it's not deployed yet, we need to factor that into Epic {{next_epic_num}} timing."
|
|
1133
1166
|
|
|
1134
|
-
|
|
1167
|
+
xiaokai (Developer): "{user_name}, when is deployment planned? Does that timing work for starting Epic {{next_epic_num}}?"
|
|
1135
1168
|
</output>
|
|
1136
1169
|
|
|
1137
1170
|
<action>WAIT for {user_name} to clarify deployment timeline</action>
|
|
@@ -1142,11 +1175,11 @@ xiaomin (Scrum Master): "{user_name}, when is deployment planned? Does that timi
|
|
|
1142
1175
|
<action>Explore stakeholder acceptance</action>
|
|
1143
1176
|
|
|
1144
1177
|
<output>
|
|
1145
|
-
|
|
1178
|
+
xiaokai (Developer): "{user_name}, have stakeholders seen and accepted the Epic {{epic_number}} deliverables?"
|
|
1146
1179
|
|
|
1147
1180
|
Alice (Product Owner): "This is important - I've seen 'done' epics get rejected by stakeholders and force rework."
|
|
1148
1181
|
|
|
1149
|
-
|
|
1182
|
+
xiaokai (Developer): "{user_name}, any feedback from stakeholders still pending?"
|
|
1150
1183
|
</output>
|
|
1151
1184
|
|
|
1152
1185
|
<action>WAIT for {user_name} to describe stakeholder acceptance status</action>
|
|
@@ -1155,7 +1188,7 @@ xiaomin (Scrum Master): "{user_name}, any feedback from stakeholders still pendi
|
|
|
1155
1188
|
<output>
|
|
1156
1189
|
Alice (Product Owner): "We should get formal acceptance before moving on. Otherwise Epic {{next_epic_num}} might get interrupted by rework."
|
|
1157
1190
|
|
|
1158
|
-
|
|
1191
|
+
xiaokai (Developer): "{user_name}, how do you want to handle stakeholder acceptance? Should we make it a critical path item?"
|
|
1159
1192
|
</output>
|
|
1160
1193
|
|
|
1161
1194
|
<action>WAIT for {user_name} decision</action>
|
|
@@ -1166,9 +1199,9 @@ xiaomin (Scrum Master): "{user_name}, how do you want to handle stakeholder acce
|
|
|
1166
1199
|
<action>Explore technical health and stability</action>
|
|
1167
1200
|
|
|
1168
1201
|
<output>
|
|
1169
|
-
|
|
1202
|
+
xiaokai (Developer): "{user_name}, this is a gut-check question: How does the codebase feel after Epic {{epic_number}}?"
|
|
1170
1203
|
|
|
1171
|
-
|
|
1204
|
+
xiaokai (Developer): "Stable and maintainable? Or are there concerns lurking?"
|
|
1172
1205
|
|
|
1173
1206
|
Charlie (Senior Dev): "Be honest, {user_name}. We've all shipped epics that felt... fragile."
|
|
1174
1207
|
</output>
|
|
@@ -1181,11 +1214,11 @@ Charlie (Senior Dev): "Okay, let's dig into that. What's causing those concerns?
|
|
|
1181
1214
|
|
|
1182
1215
|
Charlie (Senior Dev): [Helps {user_name} articulate technical concerns]
|
|
1183
1216
|
|
|
1184
|
-
|
|
1217
|
+
xiaokai (Developer): "What would it take to address these concerns and feel confident about stability?"
|
|
1185
1218
|
|
|
1186
1219
|
Charlie (Senior Dev): "I'd say we need {{stability_work_needed}}, roughly {{stability_hours}} hours."
|
|
1187
1220
|
|
|
1188
|
-
|
|
1221
|
+
xiaokai (Developer): "{user_name}, is addressing this stability work worth doing before Epic {{next_epic_num}}?"
|
|
1189
1222
|
</output>
|
|
1190
1223
|
|
|
1191
1224
|
<action>WAIT for {user_name} decision</action>
|
|
@@ -1196,26 +1229,26 @@ xiaomin (Scrum Master): "{user_name}, is addressing this stability work worth do
|
|
|
1196
1229
|
<action>Explore unresolved blockers</action>
|
|
1197
1230
|
|
|
1198
1231
|
<output>
|
|
1199
|
-
|
|
1232
|
+
xiaokai (Developer): "{user_name}, are there any unresolved blockers or technical issues from Epic {{epic_number}} that we're carrying forward?"
|
|
1200
1233
|
|
|
1201
1234
|
Dana (QA Engineer): "Things that might create problems for Epic {{next_epic_num}} if we don't deal with them?"
|
|
1202
1235
|
|
|
1203
|
-
|
|
1236
|
+
xiaokai (Developer): "Nothing is off limits here. If there's a problem, we need to know."
|
|
1204
1237
|
</output>
|
|
1205
1238
|
|
|
1206
1239
|
<action>WAIT for {user_name} to surface any blockers</action>
|
|
1207
1240
|
|
|
1208
1241
|
<check if="blockers identified">
|
|
1209
1242
|
<output>
|
|
1210
|
-
|
|
1243
|
+
xiaokai (Developer): "Let's capture those blockers and figure out how they affect Epic {{next_epic_num}}."
|
|
1211
1244
|
|
|
1212
1245
|
Charlie (Senior Dev): "For {{blocker_1}}, if we leave it unresolved, it'll {{impact_description_1}}."
|
|
1213
1246
|
|
|
1214
1247
|
Alice (Product Owner): "That sounds critical. We need to address that before moving forward."
|
|
1215
1248
|
|
|
1216
|
-
|
|
1249
|
+
xiaokai (Developer): "Agreed. Adding to critical path: Resolve {{blocker_1}} before Epic {{next_epic_num}} kickoff."
|
|
1217
1250
|
|
|
1218
|
-
|
|
1251
|
+
xiaokai (Developer): "Who owns that work?"
|
|
1219
1252
|
</output>
|
|
1220
1253
|
|
|
1221
1254
|
<action>Assign blocker resolution to appropriate agent</action>
|
|
@@ -1225,7 +1258,7 @@ xiaomin (Scrum Master): "Who owns that work?"
|
|
|
1225
1258
|
<action>Synthesize the readiness assessment</action>
|
|
1226
1259
|
|
|
1227
1260
|
<output>
|
|
1228
|
-
|
|
1261
|
+
xiaokai (Developer): "Okay {user_name}, let me synthesize what we just uncovered..."
|
|
1229
1262
|
|
|
1230
1263
|
**EPIC {{epic_number}} READINESS ASSESSMENT:**
|
|
1231
1264
|
|
|
@@ -1244,13 +1277,13 @@ Technical Health: {{stability_status}}
|
|
|
1244
1277
|
Unresolved Blockers: {{blocker_status}}
|
|
1245
1278
|
{{#if blockers_exist}}⚠️ Must resolve: {{blocker_list}}{{/if}}
|
|
1246
1279
|
|
|
1247
|
-
|
|
1280
|
+
xiaokai (Developer): "{user_name}, does this assessment match your understanding?"
|
|
1248
1281
|
</output>
|
|
1249
1282
|
|
|
1250
1283
|
<action>WAIT for {user_name} to confirm or correct the assessment</action>
|
|
1251
1284
|
|
|
1252
1285
|
<output>
|
|
1253
|
-
|
|
1286
|
+
xiaokai (Developer): "Based on this assessment, Epic {{epic_number}} is {{#if all_clear}}fully complete and we're clear to proceed{{else}}complete from a story perspective, but we have {{critical_work_count}} critical items before Epic {{next_epic_num}}{{/if}}."
|
|
1254
1287
|
|
|
1255
1288
|
Alice (Product Owner): "This level of thoroughness is why retrospectives are valuable."
|
|
1256
1289
|
|
|
@@ -1262,13 +1295,13 @@ Charlie (Senior Dev): "Better to catch this now than three stories into the next
|
|
|
1262
1295
|
<step n="10" goal="Retrospective Closure with Celebration and Commitment">
|
|
1263
1296
|
|
|
1264
1297
|
<output>
|
|
1265
|
-
|
|
1298
|
+
xiaokai (Developer): "We've covered a lot of ground today. Let me bring this retrospective to a close."
|
|
1266
1299
|
|
|
1267
1300
|
═══════════════════════════════════════════════════════════
|
|
1268
1301
|
✅ RETROSPECTIVE COMPLETE
|
|
1269
1302
|
═══════════════════════════════════════════════════════════
|
|
1270
1303
|
|
|
1271
|
-
|
|
1304
|
+
xiaokai (Developer): "Epic {{epic_number}}: {{epic_title}} - REVIEWED"
|
|
1272
1305
|
|
|
1273
1306
|
**Key Takeaways:**
|
|
1274
1307
|
|
|
@@ -1281,7 +1314,7 @@ Alice (Product Owner): "That first takeaway is huge - {{impact_of_lesson_1}}."
|
|
|
1281
1314
|
|
|
1282
1315
|
Charlie (Senior Dev): "And lesson 2 is something we can apply immediately."
|
|
1283
1316
|
|
|
1284
|
-
|
|
1317
|
+
xiaokai (Developer): "Commitments made today:"
|
|
1285
1318
|
|
|
1286
1319
|
- Action Items: {{action_count}}
|
|
1287
1320
|
- Preparation Tasks: {{prep_task_count}}
|
|
@@ -1289,7 +1322,7 @@ xiaomin (Scrum Master): "Commitments made today:"
|
|
|
1289
1322
|
|
|
1290
1323
|
Dana (QA Engineer): "That's a lot of commitments. We need to actually follow through this time."
|
|
1291
1324
|
|
|
1292
|
-
|
|
1325
|
+
xiaokai (Developer): "Agreed. Which is why we'll review these action items in our next standup."
|
|
1293
1326
|
|
|
1294
1327
|
═══════════════════════════════════════════════════════════
|
|
1295
1328
|
🎯 NEXT STEPS:
|
|
@@ -1306,9 +1339,9 @@ Alice (Product Owner): "I'll communicate the timeline to stakeholders. They'll u
|
|
|
1306
1339
|
|
|
1307
1340
|
═══════════════════════════════════════════════════════════
|
|
1308
1341
|
|
|
1309
|
-
|
|
1342
|
+
xiaokai (Developer): "Before we wrap, I want to take a moment to acknowledge the team."
|
|
1310
1343
|
|
|
1311
|
-
|
|
1344
|
+
xiaokai (Developer): "Epic {{epic_number}} delivered {{completed_stories}} stories with {{velocity_description}} velocity. We overcame {{blocker_count}} blockers. We learned a lot. That's real work by real people."
|
|
1312
1345
|
|
|
1313
1346
|
Charlie (Senior Dev): "Hear, hear."
|
|
1314
1347
|
|
|
@@ -1316,17 +1349,17 @@ Alice (Product Owner): "I'm proud of what we shipped."
|
|
|
1316
1349
|
|
|
1317
1350
|
Dana (QA Engineer): "And I'm excited about Epic {{next_epic_num}} - especially now that we're prepared for it."
|
|
1318
1351
|
|
|
1319
|
-
|
|
1352
|
+
xiaokai (Developer): "{user_name}, any final thoughts before we close?"
|
|
1320
1353
|
</output>
|
|
1321
1354
|
|
|
1322
1355
|
<action>WAIT for {user_name} to share final reflections</action>
|
|
1323
1356
|
|
|
1324
1357
|
<output>
|
|
1325
|
-
|
|
1358
|
+
xiaokai (Developer): [Acknowledges what {user_name} shared] "Thank you for that, {user_name}."
|
|
1326
1359
|
|
|
1327
|
-
|
|
1360
|
+
xiaokai (Developer): "Alright team - great work today. We learned a lot from Epic {{epic_number}}. Let's use these insights to make Epic {{next_epic_num}} even better."
|
|
1328
1361
|
|
|
1329
|
-
|
|
1362
|
+
xiaokai (Developer): "See you all when prep work is done. Meeting adjourned!"
|
|
1330
1363
|
|
|
1331
1364
|
═══════════════════════════════════════════════════════════
|
|
1332
1365
|
</output>
|
|
@@ -1432,7 +1465,7 @@ Retrospective document was saved successfully, but {sprint_status_file} may need
|
|
|
1432
1465
|
{{else}}
|
|
1433
1466
|
|
|
1434
1467
|
4. **Begin Epic {{next_epic_num}} when ready**
|
|
1435
|
-
- Start creating stories with
|
|
1468
|
+
- Start creating stories with Developer agent's `create-story`
|
|
1436
1469
|
- Epic will be marked as `in-progress` automatically when first story is created
|
|
1437
1470
|
- Ensure all critical path items are done first
|
|
1438
1471
|
{{/if}}
|
|
@@ -1446,21 +1479,21 @@ Epic {{epic_number}} delivered {{completed_stories}} stories with {{velocity_sum
|
|
|
1446
1479
|
|
|
1447
1480
|
---
|
|
1448
1481
|
|
|
1449
|
-
|
|
1482
|
+
xiaokai (Developer): "Great session today, {user_name}. The team did excellent work."
|
|
1450
1483
|
|
|
1451
1484
|
Alice (Product Owner): "See you at epic planning!"
|
|
1452
1485
|
|
|
1453
1486
|
Charlie (Senior Dev): "Time to knock out that prep work."
|
|
1454
1487
|
|
|
1455
1488
|
</output>
|
|
1456
|
-
|
|
1489
|
+
<action>Run: `node {project-root}/_xiaoma/scripts/resolve_customization.js --skill {skill-root} --key workflow.on_complete` — if the resolved value is non-empty, follow it as the final terminal instruction before exiting.</action>
|
|
1457
1490
|
</step>
|
|
1458
1491
|
|
|
1459
1492
|
</workflow>
|
|
1460
1493
|
|
|
1461
1494
|
<facilitation-guidelines>
|
|
1462
1495
|
<guideline>PARTY MODE REQUIRED: All agent dialogue uses "Name (Role): dialogue" format</guideline>
|
|
1463
|
-
<guideline>
|
|
1496
|
+
<guideline>xiaokai (Developer) maintains psychological safety throughout - no blame or judgment</guideline>
|
|
1464
1497
|
<guideline>Focus on systems and processes, not individual performance</guideline>
|
|
1465
1498
|
<guideline>Create authentic team dynamics: disagreements, diverse perspectives, emotions</guideline>
|
|
1466
1499
|
<guideline>User ({user_name}) is active participant, not passive observer</guideline>
|