Agent Skills
› bmad-code-org/BMAD-METHOD
› bmad-dev-auto
bmad-dev-auto
GitHub这是一个废弃的构建自动化别名,用于将旧版 bmad-dev-auto 调用重定向至新版 bmad-build-auto。它负责检查并迁移遗留的自定义配置文件,处理文件冲突与重命名,确保平滑过渡后执行实际构建任务。
Trigger Scenarios
用户直接调用 bmad-dev-auto
系统检测到已弃用的构建别名
Install
npx skills add bmad-code-org/BMAD-METHOD --skill bmad-dev-auto -g -y
SKILL.md
Frontmatter
{
"name": "bmad-dev-auto",
"metadata": {
"lifecycle": "shim"
},
"description": "Deprecated: forwards to bmad-build-auto. Do not use unless invoked by name"
}
Deprecated Build Auto Alias
On Activation
- Check whether either legacy customization file exists:
{project-root}/_bmad/custom/bmad-dev-auto.toml{project-root}/_bmad/custom/bmad-dev-auto.user.toml
- If neither legacy file exists, output exactly
bmad-dev-auto is deprecated. Redirecting to bmad-build-auto. Please use bmad-build-auto in the future., invokebmad-build-autoexactly once with the user's original input verbatim, then execute no further steps in this shim. - For every legacy file that exists, use its matching new filename:
{project-root}/_bmad/custom/bmad-dev-auto.tomlbecomes{project-root}/_bmad/custom/bmad-build-auto.toml.{project-root}/_bmad/custom/bmad-dev-auto.user.tomlbecomes{project-root}/_bmad/custom/bmad-build-auto.user.toml.
- If the matching new file does not exist, tell the user that the customization file uses the deprecated name and offer to rename it. Rename it only after explicit approval. If approval is declined or unavailable, or the rename fails, HALT and do not invoke any skill.
- If the matching new file already exists, do not overwrite it. Read both files, explain their differences, and propose the exact content for the new file. Resolve conflicting values with the user. Only after the user explicitly approves that content, save and verify the new file, then remove the legacy file. If approval is declined or unavailable, or any operation fails, HALT and do not invoke any skill.
- After every detected legacy file has been migrated successfully and no legacy file remains, output exactly
bmad-dev-auto is deprecated. Redirecting to bmad-build-auto. Please use bmad-build-auto in the future., invokebmad-build-autoexactly once with the user's original input verbatim, then execute no further steps in this shim.
Version History
- 67d876f Current 2026-08-20 10:28


