sync: 新增 BMAD 开发流程重构 - 目录结构 modes/phases/rules + 新增自动修复引擎 + H5 不兼容组件替换方案

This commit is contained in:
Claude Code
2026-04-21 05:44:50 +00:00
parent 009d2a2c5b
commit 49af4777a0
2 changed files with 5 additions and 7 deletions

View File

@@ -208,11 +208,11 @@ Read fully and follow: ./modes/journey/journey-index.md
## 质量关卡
> 参见 ./rules/iron-laws.md 了解五大铁律和验证检查清单。
> 参见 ./iron-laws.md 了解五大铁律和验证检查清单。
## E2E 测试
> 参见 ./rules/e2e-testing.md 了解 Playwright MCP 测试序列和视口规则。
> 参见 ./e2e-testing.md 了解 Playwright MCP 测试序列和视口规则。
## 实战经验

View File

@@ -114,10 +114,9 @@
```html
<style>
/* phone-frame: iPhone 12+ 逻辑分辨率 390×844border-box 下 414×868 = 390×844 内容区 + 12px×2 边框 */
.phone-frame {
width: 414px;
height: 868px;
width: 375px;
height: 812px;
border: 12px solid #1a1a1a;
border-radius: 40px;
overflow: hidden;
@@ -128,10 +127,9 @@
height: 100%;
border: none;
}
/* grid 列宽 minmax(440px) 容纳 414px phone-frame + 容器内边距 */
.prototype-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(440px, 1fr));
grid-template-columns: repeat(auto-fill, 375px);
gap: 24px;
padding: 24px;
justify-content: center;