Port bug fixes that landed on main after this branch forked:
1. Remove dead .agent.yaml/.xml fallback logic from skill-manifest.js
and simplify scanInstalledModules to hasAgents || hasSkills
2. Fix config paths (issue 55): add resolveConfigValue,
cleanPromptValue, normalizeExistingValueForPrompt to prevent
template duplication on re-prompt
3. Fix empty agent-manifest.csv: replace collectAgents/getAgentsFromDir
with getAgentsFromDirRecursive that walks full module trees, fix 9
BMM manifests type: skill → type: agent, add dead-code TODO to
bmad-artifacts.js
4. Fix custom module install crash: discoverPaths was receiving the
clean Config (which strips customContent) instead of customConfig
* refactor: consolidate agents into phase-based skill directories
Remove separate agent/workflow/skill directories (src/bmm/agents,
src/bmm/workflows, src/core/skills, src/utility/agent-components) and
reorganize all content into phase-based structures under src/bmm-skills
(1-analysis, 2-plan-workflows, 3-solutioning, 4-implementation) and
src/core-skills. Eliminates the agent/skill distinction by treating
agents as skills within their workflow phase.
* fix: update broken file references to use new bmm-skills paths
* docs: update all references for unified bmad-quick-dev workflow
Remove all references to the old separate bmad-quick-spec and
bmad-quick-dev-new-preview workflows. The new bmad-quick-dev is a
unified workflow that handles intent clarification, planning,
implementation, review, and presentation in a single run.
Updated files across English docs, Chinese translations, source
skill manifests, website diagram, and build tooling.