gitextract_oyh4etmw/ ├── .augment/ │ └── code_review_guidelines.yaml ├── .coderabbit.yaml ├── .github/ │ ├── CODE_OF_CONDUCT.md │ ├── FUNDING.yaml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug-report.yaml │ │ ├── config.yaml │ │ ├── documentation.yaml │ │ ├── feature-request.md │ │ └── issue.md │ ├── PULL_REQUEST_TEMPLATE.md │ ├── scripts/ │ │ └── discord-helpers.sh │ └── workflows/ │ ├── coderabbit-review.yaml │ ├── discord.yaml │ ├── docs.yaml │ ├── publish.yaml │ └── quality.yaml ├── .gitignore ├── .husky/ │ └── pre-commit ├── .markdownlint-cli2.yaml ├── .npmignore ├── .npmrc ├── .nvmrc ├── .prettierignore ├── .vscode/ │ └── settings.json ├── AGENTS.md ├── CHANGELOG.md ├── CNAME ├── CONTRIBUTING.md ├── CONTRIBUTORS.md ├── LICENSE ├── README.md ├── README_CN.md ├── SECURITY.md ├── TRADEMARK.md ├── docs/ │ ├── 404.md │ ├── _STYLE_GUIDE.md │ ├── explanation/ │ │ ├── advanced-elicitation.md │ │ ├── adversarial-review.md │ │ ├── brainstorming.md │ │ ├── established-projects-faq.md │ │ ├── party-mode.md │ │ ├── preventing-agent-conflicts.md │ │ ├── project-context.md │ │ ├── quick-dev.md │ │ └── why-solutioning-matters.md │ ├── how-to/ │ │ ├── customize-bmad.md │ │ ├── established-projects.md │ │ ├── get-answers-about-bmad.md │ │ ├── install-bmad.md │ │ ├── non-interactive-installation.md │ │ ├── project-context.md │ │ ├── quick-fixes.md │ │ ├── shard-large-documents.md │ │ └── upgrade-to-v6.md │ ├── index.md │ ├── reference/ │ │ ├── agents.md │ │ ├── commands.md │ │ ├── core-tools.md │ │ ├── modules.md │ │ ├── testing.md │ │ └── workflow-map.md │ ├── roadmap.mdx │ ├── tutorials/ │ │ └── getting-started.md │ └── zh-cn/ │ ├── 404.md │ ├── _STYLE_GUIDE.md │ ├── explanation/ │ │ ├── advanced-elicitation.md │ │ ├── adversarial-review.md │ │ ├── brainstorming.md │ │ ├── established-projects-faq.md │ │ ├── party-mode.md │ │ ├── preventing-agent-conflicts.md │ │ ├── project-context.md │ │ ├── quick-dev.md │ │ └── why-solutioning-matters.md │ ├── how-to/ │ │ ├── customize-bmad.md │ │ ├── established-projects.md │ │ ├── get-answers-about-bmad.md │ │ ├── install-bmad.md │ │ ├── non-interactive-installation.md │ │ ├── project-context.md │ │ ├── quick-fixes.md │ │ ├── shard-large-documents.md │ │ └── upgrade-to-v6.md │ ├── index.md │ ├── reference/ │ │ ├── agents.md │ │ ├── commands.md │ │ ├── core-tools.md │ │ ├── modules.md │ │ ├── testing.md │ │ └── workflow-map.md │ ├── roadmap.mdx │ └── tutorials/ │ └── getting-started.md ├── eslint.config.mjs ├── package.json ├── prettier.config.mjs ├── src/ │ ├── bmm-skills/ │ │ ├── 1-analysis/ │ │ │ ├── bmad-agent-analyst/ │ │ │ │ ├── SKILL.md │ │ │ │ └── bmad-skill-manifest.yaml │ │ │ ├── bmad-agent-tech-writer/ │ │ │ │ ├── SKILL.md │ │ │ │ ├── bmad-skill-manifest.yaml │ │ │ │ ├── explain-concept.md │ │ │ │ ├── mermaid-gen.md │ │ │ │ ├── validate-doc.md │ │ │ │ └── write-document.md │ │ │ ├── bmad-document-project/ │ │ │ │ ├── SKILL.md │ │ │ │ ├── bmad-skill-manifest.yaml │ │ │ │ ├── checklist.md │ │ │ │ ├── documentation-requirements.csv │ │ │ │ ├── instructions.md │ │ │ │ ├── templates/ │ │ │ │ │ ├── deep-dive-template.md │ │ │ │ │ ├── index-template.md │ │ │ │ │ ├── project-overview-template.md │ │ │ │ │ ├── project-scan-report-schema.json │ │ │ │ │ └── source-tree-template.md │ │ │ │ ├── workflow.md │ │ │ │ └── workflows/ │ │ │ │ ├── deep-dive-instructions.md │ │ │ │ ├── deep-dive-workflow.md │ │ │ │ ├── full-scan-instructions.md │ │ │ │ └── full-scan-workflow.md │ │ │ ├── bmad-product-brief/ │ │ │ │ ├── SKILL.md │ │ │ │ ├── agents/ │ │ │ │ │ ├── artifact-analyzer.md │ │ │ │ │ ├── opportunity-reviewer.md │ │ │ │ │ ├── skeptic-reviewer.md │ │ │ │ │ └── web-researcher.md │ │ │ │ ├── bmad-manifest.json │ │ │ │ ├── bmad-skill-manifest.yaml │ │ │ │ ├── prompts/ │ │ │ │ │ ├── contextual-discovery.md │ │ │ │ │ ├── draft-and-review.md │ │ │ │ │ ├── finalize.md │ │ │ │ │ └── guided-elicitation.md │ │ │ │ └── resources/ │ │ │ │ └── brief-template.md │ │ │ └── research/ │ │ │ ├── bmad-domain-research/ │ │ │ │ ├── SKILL.md │ │ │ │ ├── bmad-skill-manifest.yaml │ │ │ │ ├── domain-steps/ │ │ │ │ │ ├── step-01-init.md │ │ │ │ │ ├── step-02-domain-analysis.md │ │ │ │ │ ├── step-03-competitive-landscape.md │ │ │ │ │ ├── step-04-regulatory-focus.md │ │ │ │ │ ├── step-05-technical-trends.md │ │ │ │ │ └── step-06-research-synthesis.md │ │ │ │ ├── research.template.md │ │ │ │ └── workflow.md │ │ │ ├── bmad-market-research/ │ │ │ │ ├── SKILL.md │ │ │ │ ├── bmad-skill-manifest.yaml │ │ │ │ ├── research.template.md │ │ │ │ ├── steps/ │ │ │ │ │ ├── step-01-init.md │ │ │ │ │ ├── step-02-customer-behavior.md │ │ │ │ │ ├── step-03-customer-pain-points.md │ │ │ │ │ ├── step-04-customer-decisions.md │ │ │ │ │ ├── step-05-competitive-analysis.md │ │ │ │ │ └── step-06-research-completion.md │ │ │ │ └── workflow.md │ │ │ └── bmad-technical-research/ │ │ │ ├── SKILL.md │ │ │ ├── bmad-skill-manifest.yaml │ │ │ ├── research.template.md │ │ │ ├── technical-steps/ │ │ │ │ ├── step-01-init.md │ │ │ │ ├── step-02-technical-overview.md │ │ │ │ ├── step-03-integration-patterns.md │ │ │ │ ├── step-04-architectural-patterns.md │ │ │ │ ├── step-05-implementation-research.md │ │ │ │ └── step-06-research-synthesis.md │ │ │ └── workflow.md │ │ ├── 2-plan-workflows/ │ │ │ ├── bmad-agent-pm/ │ │ │ │ ├── SKILL.md │ │ │ │ └── bmad-skill-manifest.yaml │ │ │ ├── bmad-agent-ux-designer/ │ │ │ │ ├── SKILL.md │ │ │ │ └── bmad-skill-manifest.yaml │ │ │ ├── bmad-create-prd/ │ │ │ │ ├── SKILL.md │ │ │ │ ├── bmad-skill-manifest.yaml │ │ │ │ ├── data/ │ │ │ │ │ ├── domain-complexity.csv │ │ │ │ │ ├── prd-purpose.md │ │ │ │ │ └── project-types.csv │ │ │ │ ├── steps-c/ │ │ │ │ │ ├── step-01-init.md │ │ │ │ │ ├── step-01b-continue.md │ │ │ │ │ ├── step-02-discovery.md │ │ │ │ │ ├── step-02b-vision.md │ │ │ │ │ ├── step-02c-executive-summary.md │ │ │ │ │ ├── step-03-success.md │ │ │ │ │ ├── step-04-journeys.md │ │ │ │ │ ├── step-05-domain.md │ │ │ │ │ ├── step-06-innovation.md │ │ │ │ │ ├── step-07-project-type.md │ │ │ │ │ ├── step-08-scoping.md │ │ │ │ │ ├── step-09-functional.md │ │ │ │ │ ├── step-10-nonfunctional.md │ │ │ │ │ ├── step-11-polish.md │ │ │ │ │ └── step-12-complete.md │ │ │ │ ├── templates/ │ │ │ │ │ └── prd-template.md │ │ │ │ └── workflow.md │ │ │ ├── bmad-create-ux-design/ │ │ │ │ ├── SKILL.md │ │ │ │ ├── bmad-skill-manifest.yaml │ │ │ │ ├── steps/ │ │ │ │ │ ├── step-01-init.md │ │ │ │ │ ├── step-01b-continue.md │ │ │ │ │ ├── step-02-discovery.md │ │ │ │ │ ├── step-03-core-experience.md │ │ │ │ │ ├── step-04-emotional-response.md │ │ │ │ │ ├── step-05-inspiration.md │ │ │ │ │ ├── step-06-design-system.md │ │ │ │ │ ├── step-07-defining-experience.md │ │ │ │ │ ├── step-08-visual-foundation.md │ │ │ │ │ ├── step-09-design-directions.md │ │ │ │ │ ├── step-10-user-journeys.md │ │ │ │ │ ├── step-11-component-strategy.md │ │ │ │ │ ├── step-12-ux-patterns.md │ │ │ │ │ ├── step-13-responsive-accessibility.md │ │ │ │ │ └── step-14-complete.md │ │ │ │ ├── ux-design-template.md │ │ │ │ └── workflow.md │ │ │ ├── bmad-edit-prd/ │ │ │ │ ├── SKILL.md │ │ │ │ ├── bmad-skill-manifest.yaml │ │ │ │ ├── steps-e/ │ │ │ │ │ ├── step-e-01-discovery.md │ │ │ │ │ ├── step-e-01b-legacy-conversion.md │ │ │ │ │ ├── step-e-02-review.md │ │ │ │ │ ├── step-e-03-edit.md │ │ │ │ │ └── step-e-04-complete.md │ │ │ │ └── workflow.md │ │ │ ├── bmad-validate-prd/ │ │ │ │ ├── SKILL.md │ │ │ │ ├── bmad-skill-manifest.yaml │ │ │ │ ├── data/ │ │ │ │ │ ├── domain-complexity.csv │ │ │ │ │ ├── prd-purpose.md │ │ │ │ │ └── project-types.csv │ │ │ │ ├── steps-v/ │ │ │ │ │ ├── step-v-01-discovery.md │ │ │ │ │ ├── step-v-02-format-detection.md │ │ │ │ │ ├── step-v-02b-parity-check.md │ │ │ │ │ ├── step-v-03-density-validation.md │ │ │ │ │ ├── step-v-04-brief-coverage-validation.md │ │ │ │ │ ├── step-v-05-measurability-validation.md │ │ │ │ │ ├── step-v-06-traceability-validation.md │ │ │ │ │ ├── step-v-07-implementation-leakage-validation.md │ │ │ │ │ ├── step-v-08-domain-compliance-validation.md │ │ │ │ │ ├── step-v-09-project-type-validation.md │ │ │ │ │ ├── step-v-10-smart-validation.md │ │ │ │ │ ├── step-v-11-holistic-quality-validation.md │ │ │ │ │ ├── step-v-12-completeness-validation.md │ │ │ │ │ └── step-v-13-report-complete.md │ │ │ │ └── workflow.md │ │ │ └── create-prd/ │ │ │ ├── data/ │ │ │ │ ├── domain-complexity.csv │ │ │ │ ├── prd-purpose.md │ │ │ │ └── project-types.csv │ │ │ ├── steps-v/ │ │ │ │ ├── step-v-01-discovery.md │ │ │ │ ├── step-v-02-format-detection.md │ │ │ │ ├── step-v-02b-parity-check.md │ │ │ │ ├── step-v-03-density-validation.md │ │ │ │ ├── step-v-04-brief-coverage-validation.md │ │ │ │ ├── step-v-05-measurability-validation.md │ │ │ │ ├── step-v-06-traceability-validation.md │ │ │ │ ├── step-v-07-implementation-leakage-validation.md │ │ │ │ ├── step-v-08-domain-compliance-validation.md │ │ │ │ ├── step-v-09-project-type-validation.md │ │ │ │ ├── step-v-10-smart-validation.md │ │ │ │ ├── step-v-11-holistic-quality-validation.md │ │ │ │ ├── step-v-12-completeness-validation.md │ │ │ │ └── step-v-13-report-complete.md │ │ │ └── workflow-validate-prd.md │ │ ├── 3-solutioning/ │ │ │ ├── bmad-agent-architect/ │ │ │ │ ├── SKILL.md │ │ │ │ └── bmad-skill-manifest.yaml │ │ │ ├── bmad-check-implementation-readiness/ │ │ │ │ ├── SKILL.md │ │ │ │ ├── bmad-skill-manifest.yaml │ │ │ │ ├── steps/ │ │ │ │ │ ├── step-01-document-discovery.md │ │ │ │ │ ├── step-02-prd-analysis.md │ │ │ │ │ ├── step-03-epic-coverage-validation.md │ │ │ │ │ ├── step-04-ux-alignment.md │ │ │ │ │ ├── step-05-epic-quality-review.md │ │ │ │ │ └── step-06-final-assessment.md │ │ │ │ ├── templates/ │ │ │ │ │ └── readiness-report-template.md │ │ │ │ └── workflow.md │ │ │ ├── bmad-create-architecture/ │ │ │ │ ├── SKILL.md │ │ │ │ ├── architecture-decision-template.md │ │ │ │ ├── bmad-skill-manifest.yaml │ │ │ │ ├── data/ │ │ │ │ │ ├── domain-complexity.csv │ │ │ │ │ └── project-types.csv │ │ │ │ ├── steps/ │ │ │ │ │ ├── step-01-init.md │ │ │ │ │ ├── step-01b-continue.md │ │ │ │ │ ├── step-02-context.md │ │ │ │ │ ├── step-03-starter.md │ │ │ │ │ ├── step-04-decisions.md │ │ │ │ │ ├── step-05-patterns.md │ │ │ │ │ ├── step-06-structure.md │ │ │ │ │ ├── step-07-validation.md │ │ │ │ │ └── step-08-complete.md │ │ │ │ └── workflow.md │ │ │ ├── bmad-create-epics-and-stories/ │ │ │ │ ├── SKILL.md │ │ │ │ ├── bmad-skill-manifest.yaml │ │ │ │ ├── steps/ │ │ │ │ │ ├── step-01-validate-prerequisites.md │ │ │ │ │ ├── step-02-design-epics.md │ │ │ │ │ ├── step-03-create-stories.md │ │ │ │ │ └── step-04-final-validation.md │ │ │ │ ├── templates/ │ │ │ │ │ └── epics-template.md │ │ │ │ └── workflow.md │ │ │ └── bmad-generate-project-context/ │ │ │ ├── SKILL.md │ │ │ ├── bmad-skill-manifest.yaml │ │ │ ├── project-context-template.md │ │ │ ├── steps/ │ │ │ │ ├── step-01-discover.md │ │ │ │ ├── step-02-generate.md │ │ │ │ └── step-03-complete.md │ │ │ └── workflow.md │ │ ├── 4-implementation/ │ │ │ ├── bmad-agent-dev/ │ │ │ │ ├── SKILL.md │ │ │ │ └── bmad-skill-manifest.yaml │ │ │ ├── bmad-agent-qa/ │ │ │ │ ├── SKILL.md │ │ │ │ └── bmad-skill-manifest.yaml │ │ │ ├── bmad-agent-quick-flow-solo-dev/ │ │ │ │ ├── SKILL.md │ │ │ │ └── bmad-skill-manifest.yaml │ │ │ ├── bmad-agent-sm/ │ │ │ │ ├── SKILL.md │ │ │ │ └── bmad-skill-manifest.yaml │ │ │ ├── bmad-code-review/ │ │ │ │ ├── SKILL.md │ │ │ │ ├── bmad-skill-manifest.yaml │ │ │ │ ├── steps/ │ │ │ │ │ ├── step-01-gather-context.md │ │ │ │ │ ├── step-02-review.md │ │ │ │ │ ├── step-03-triage.md │ │ │ │ │ └── step-04-present.md │ │ │ │ └── workflow.md │ │ │ ├── bmad-correct-course/ │ │ │ │ ├── SKILL.md │ │ │ │ ├── bmad-skill-manifest.yaml │ │ │ │ ├── checklist.md │ │ │ │ └── workflow.md │ │ │ ├── bmad-create-story/ │ │ │ │ ├── SKILL.md │ │ │ │ ├── bmad-skill-manifest.yaml │ │ │ │ ├── checklist.md │ │ │ │ ├── discover-inputs.md │ │ │ │ ├── template.md │ │ │ │ └── workflow.md │ │ │ ├── bmad-dev-story/ │ │ │ │ ├── SKILL.md │ │ │ │ ├── bmad-skill-manifest.yaml │ │ │ │ ├── checklist.md │ │ │ │ └── workflow.md │ │ │ ├── bmad-qa-generate-e2e-tests/ │ │ │ │ ├── SKILL.md │ │ │ │ ├── bmad-skill-manifest.yaml │ │ │ │ ├── checklist.md │ │ │ │ └── workflow.md │ │ │ ├── bmad-quick-dev/ │ │ │ │ ├── SKILL.md │ │ │ │ ├── bmad-skill-manifest.yaml │ │ │ │ ├── step-01-clarify-and-route.md │ │ │ │ ├── step-02-plan.md │ │ │ │ ├── step-03-implement.md │ │ │ │ ├── step-04-review.md │ │ │ │ ├── step-05-present.md │ │ │ │ ├── step-oneshot.md │ │ │ │ ├── tech-spec-template.md │ │ │ │ └── workflow.md │ │ │ ├── bmad-retrospective/ │ │ │ │ ├── SKILL.md │ │ │ │ ├── bmad-skill-manifest.yaml │ │ │ │ └── workflow.md │ │ │ ├── bmad-sprint-planning/ │ │ │ │ ├── SKILL.md │ │ │ │ ├── bmad-skill-manifest.yaml │ │ │ │ ├── checklist.md │ │ │ │ ├── sprint-status-template.yaml │ │ │ │ └── workflow.md │ │ │ └── bmad-sprint-status/ │ │ │ ├── SKILL.md │ │ │ ├── bmad-skill-manifest.yaml │ │ │ └── workflow.md │ │ ├── module-help.csv │ │ └── module.yaml │ └── core-skills/ │ ├── bmad-advanced-elicitation/ │ │ ├── SKILL.md │ │ ├── bmad-skill-manifest.yaml │ │ ├── methods.csv │ │ └── workflow.md │ ├── bmad-brainstorming/ │ │ ├── SKILL.md │ │ ├── bmad-skill-manifest.yaml │ │ ├── brain-methods.csv │ │ ├── steps/ │ │ │ ├── step-01-session-setup.md │ │ │ ├── step-01b-continue.md │ │ │ ├── step-02a-user-selected.md │ │ │ ├── step-02b-ai-recommended.md │ │ │ ├── step-02c-random-selection.md │ │ │ ├── step-02d-progressive-flow.md │ │ │ ├── step-03-technique-execution.md │ │ │ └── step-04-idea-organization.md │ │ ├── template.md │ │ └── workflow.md │ ├── bmad-distillator/ │ │ ├── SKILL.md │ │ ├── agents/ │ │ │ ├── distillate-compressor.md │ │ │ └── round-trip-reconstructor.md │ │ ├── bmad-skill-manifest.yaml │ │ ├── resources/ │ │ │ ├── compression-rules.md │ │ │ ├── distillate-format-reference.md │ │ │ └── splitting-strategy.md │ │ └── scripts/ │ │ ├── analyze_sources.py │ │ └── tests/ │ │ └── test_analyze_sources.py │ ├── bmad-editorial-review-prose/ │ │ ├── SKILL.md │ │ ├── bmad-skill-manifest.yaml │ │ └── workflow.md │ ├── bmad-editorial-review-structure/ │ │ ├── SKILL.md │ │ ├── bmad-skill-manifest.yaml │ │ └── workflow.md │ ├── bmad-help/ │ │ ├── SKILL.md │ │ ├── bmad-skill-manifest.yaml │ │ └── workflow.md │ ├── bmad-index-docs/ │ │ ├── SKILL.md │ │ ├── bmad-skill-manifest.yaml │ │ └── workflow.md │ ├── bmad-init/ │ │ ├── SKILL.md │ │ ├── bmad-skill-manifest.yaml │ │ ├── resources/ │ │ │ └── core-module.yaml │ │ └── scripts/ │ │ ├── bmad_init.py │ │ └── tests/ │ │ └── test_bmad_init.py │ ├── bmad-party-mode/ │ │ ├── SKILL.md │ │ ├── bmad-skill-manifest.yaml │ │ ├── steps/ │ │ │ ├── step-01-agent-loading.md │ │ │ ├── step-02-discussion-orchestration.md │ │ │ └── step-03-graceful-exit.md │ │ └── workflow.md │ ├── bmad-review-adversarial-general/ │ │ ├── SKILL.md │ │ ├── bmad-skill-manifest.yaml │ │ └── workflow.md │ ├── bmad-review-edge-case-hunter/ │ │ ├── SKILL.md │ │ ├── bmad-skill-manifest.yaml │ │ └── workflow.md │ ├── bmad-shard-doc/ │ │ ├── SKILL.md │ │ ├── bmad-skill-manifest.yaml │ │ └── workflow.md │ ├── module-help.csv │ └── module.yaml ├── test/ │ ├── README.md │ ├── adversarial-review-tests/ │ │ ├── README.md │ │ ├── sample-content.md │ │ └── test-cases.yaml │ ├── fixtures/ │ │ └── file-refs-csv/ │ │ ├── invalid/ │ │ │ ├── all-empty-workflow.csv │ │ │ ├── empty-data.csv │ │ │ ├── no-workflow-column.csv │ │ │ └── unresolvable-vars.csv │ │ └── valid/ │ │ ├── bmm-style.csv │ │ ├── core-style.csv │ │ └── minimal.csv │ ├── test-file-refs-csv.js │ ├── test-install-to-bmad.js │ ├── test-installation-components.js │ ├── test-rehype-plugins.mjs │ └── test-workflow-path-regex.js ├── tools/ │ ├── bmad-npx-wrapper.js │ ├── build-docs.mjs │ ├── cli/ │ │ ├── README.md │ │ ├── bmad-cli.js │ │ ├── commands/ │ │ │ ├── install.js │ │ │ ├── status.js │ │ │ └── uninstall.js │ │ ├── external-official-modules.yaml │ │ ├── installers/ │ │ │ ├── install-messages.yaml │ │ │ └── lib/ │ │ │ ├── core/ │ │ │ │ ├── config-collector.js │ │ │ │ ├── custom-module-cache.js │ │ │ │ ├── dependency-resolver.js │ │ │ │ ├── detector.js │ │ │ │ ├── ide-config-manager.js │ │ │ │ ├── installer.js │ │ │ │ ├── manifest-generator.js │ │ │ │ └── manifest.js │ │ │ ├── custom/ │ │ │ │ └── handler.js │ │ │ ├── ide/ │ │ │ │ ├── _base-ide.js │ │ │ │ ├── _config-driven.js │ │ │ │ ├── manager.js │ │ │ │ ├── platform-codes.js │ │ │ │ ├── platform-codes.yaml │ │ │ │ ├── shared/ │ │ │ │ │ ├── agent-command-generator.js │ │ │ │ │ ├── bmad-artifacts.js │ │ │ │ │ ├── module-injections.js │ │ │ │ │ ├── path-utils.js │ │ │ │ │ ├── skill-manifest.js │ │ │ │ │ ├── task-tool-command-generator.js │ │ │ │ │ └── workflow-command-generator.js │ │ │ │ └── templates/ │ │ │ │ ├── agent-command-template.md │ │ │ │ ├── combined/ │ │ │ │ │ ├── antigravity.md │ │ │ │ │ ├── default-agent.md │ │ │ │ │ ├── default-task.md │ │ │ │ │ ├── default-tool.md │ │ │ │ │ ├── default-workflow.md │ │ │ │ │ ├── gemini-agent.toml │ │ │ │ │ ├── gemini-task.toml │ │ │ │ │ ├── gemini-tool.toml │ │ │ │ │ ├── gemini-workflow-yaml.toml │ │ │ │ │ ├── gemini-workflow.toml │ │ │ │ │ ├── kiro-agent.md │ │ │ │ │ ├── kiro-task.md │ │ │ │ │ ├── kiro-tool.md │ │ │ │ │ ├── kiro-workflow.md │ │ │ │ │ ├── opencode-agent.md │ │ │ │ │ ├── opencode-task.md │ │ │ │ │ ├── opencode-tool.md │ │ │ │ │ ├── opencode-workflow-yaml.md │ │ │ │ │ ├── opencode-workflow.md │ │ │ │ │ ├── rovodev.md │ │ │ │ │ ├── trae.md │ │ │ │ │ └── windsurf-workflow.md │ │ │ │ └── split/ │ │ │ │ └── .gitkeep │ │ │ ├── message-loader.js │ │ │ └── modules/ │ │ │ ├── external-manager.js │ │ │ └── manager.js │ │ └── lib/ │ │ ├── activation-builder.js │ │ ├── agent/ │ │ │ ├── compiler.js │ │ │ ├── installer.js │ │ │ └── template-engine.js │ │ ├── agent-analyzer.js │ │ ├── agent-party-generator.js │ │ ├── cli-utils.js │ │ ├── config.js │ │ ├── file-ops.js │ │ ├── platform-codes.js │ │ ├── project-root.js │ │ ├── prompts.js │ │ ├── ui.js │ │ ├── xml-handler.js │ │ ├── xml-to-markdown.js │ │ ├── yaml-format.js │ │ └── yaml-xml-builder.js │ ├── docs/ │ │ ├── _prompt-external-modules-page.md │ │ ├── fix-refs.md │ │ └── native-skills-migration-checklist.md │ ├── fix-doc-links.js │ ├── format-workflow-md.js │ ├── lib/ │ │ └── xml-utils.js │ ├── migrate-custom-module-paths.js │ ├── platform-codes.yaml │ ├── skill-validator.md │ ├── validate-doc-links.js │ ├── validate-file-refs.js │ ├── validate-skills.js │ └── validate-svg-changes.sh └── website/ ├── README.md ├── astro.config.mjs ├── public/ │ └── workflow-map-diagram.html └── src/ ├── components/ │ ├── Banner.astro │ ├── Header.astro │ └── MobileMenuFooter.astro ├── content/ │ ├── config.ts │ └── i18n/ │ └── zh-CN.json ├── lib/ │ └── site-url.mjs ├── pages/ │ ├── 404.astro │ └── robots.txt.ts ├── rehype-base-paths.js ├── rehype-markdown-links.js └── styles/ └── custom.css