@zeyue0329/xiaoma-cli 1.0.37 → 1.0.39

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.
Files changed (89) hide show
  1. package/.idea/workspace.xml +27 -26
  2. package/JAVA-BACKEND-COMMANDS-REFERENCE.md +62 -52
  3. package/JAVA-BACKEND-ITERATION-GUIDE.md +125 -18
  4. package/README.md +1 -1
  5. package/common/utils/bmad-doc-template.md +5 -5
  6. package/dist/agents/analyst.txt +35 -5
  7. package/dist/agents/architect.txt +217 -31
  8. package/dist/agents/automation-orchestrator.txt +4 -4
  9. package/dist/agents/dev.txt +3 -3
  10. package/dist/agents/full-requirement-orchestrator.txt +11 -11
  11. package/dist/agents/qa.txt +102 -102
  12. package/dist/agents/sm.txt +6 -6
  13. package/dist/agents/ux-expert.txt +6 -1
  14. package/dist/agents/workflow-executor.txt +879 -0
  15. package/dist/agents/xiaoma-master.txt +258 -37
  16. package/dist/teams/team-all.txt +1223 -445
  17. package/dist/teams/team-fullstack-with-database.txt +384 -446
  18. package/dist/teams/team-fullstack.txt +258 -37
  19. package/dist/teams/team-ide-minimal.txt +111 -111
  20. package/dist/teams/team-no-ui.txt +252 -36
  21. package/docs/architecture-sharding-modification.md +623 -0
  22. package/docs/automated-requirements-analysis-outputs.md +896 -0
  23. package/package.json +1 -1
  24. package/tools/builders/web-builder.js +292 -142
  25. package/tools/bump-all-versions.js +50 -32
  26. package/tools/cli.js +52 -47
  27. package/tools/flattener/aggregate.js +30 -12
  28. package/tools/flattener/binary.js +46 -43
  29. package/tools/flattener/discovery.js +23 -15
  30. package/tools/flattener/files.js +6 -6
  31. package/tools/flattener/ignoreRules.js +122 -121
  32. package/tools/flattener/main.js +249 -144
  33. package/tools/flattener/projectRoot.js +74 -69
  34. package/tools/flattener/prompts.js +12 -10
  35. package/tools/flattener/stats.helpers.js +90 -61
  36. package/tools/flattener/stats.js +1 -1
  37. package/tools/flattener/test-matrix.js +225 -170
  38. package/tools/flattener/xml.js +31 -23
  39. package/tools/installer/bin/xiaoma.js +199 -153
  40. package/tools/installer/lib/config-loader.js +76 -47
  41. package/tools/installer/lib/file-manager.js +101 -44
  42. package/tools/installer/lib/ide-base-setup.js +49 -39
  43. package/tools/installer/lib/ide-setup.js +694 -380
  44. package/tools/installer/lib/installer.js +802 -469
  45. package/tools/installer/lib/memory-profiler.js +22 -12
  46. package/tools/installer/lib/module-manager.js +16 -14
  47. package/tools/installer/lib/resource-locator.js +61 -35
  48. package/tools/lib/dependency-resolver.js +34 -23
  49. package/tools/lib/yaml-utils.js +7 -2
  50. package/tools/preview-release-notes.js +33 -25
  51. package/tools/shared/bannerArt.js +3 -3
  52. package/tools/sync-installer-version.js +16 -7
  53. package/tools/upgraders/v3-to-v4-upgrader.js +244 -163
  54. package/tools/version-bump.js +24 -18
  55. package/tools/xiaoma-npx-wrapper.js +15 -10
  56. package/tools/yaml-format.js +60 -36
  57. package/xiaoma-core/agent-teams/team-fullstack-with-database.yaml +0 -1
  58. package/xiaoma-core/agents/automated-fix-validator.yaml +2 -1
  59. package/xiaoma-core/agents/automated-quality-validator.yaml +10 -5
  60. package/xiaoma-core/agents/automation-orchestrator.md +4 -4
  61. package/xiaoma-core/agents/dev.md +4 -4
  62. package/xiaoma-core/agents/enhanced-workflow-orchestrator.yaml +2 -1
  63. package/xiaoma-core/agents/full-requirement-orchestrator.md +11 -11
  64. package/xiaoma-core/agents/global-requirements-auditor.yaml +11 -3
  65. package/xiaoma-core/agents/intelligent-template-adapter.yaml +19 -5
  66. package/xiaoma-core/agents/master-execution-engine.yaml +19 -5
  67. package/xiaoma-core/agents/workflow-executor.md +8 -4
  68. package/xiaoma-core/agents/xiaoma-master.md +1 -1
  69. package/xiaoma-core/data/test-levels-framework.md +12 -12
  70. package/xiaoma-core/tasks/analyze-existing-database.md +1 -1
  71. package/xiaoma-core/tasks/apply-qa-fixes.md +3 -3
  72. package/xiaoma-core/tasks/batch-story-generation.md +22 -22
  73. package/xiaoma-core/tasks/create-enhanced-story-with-database.md +6 -6
  74. package/xiaoma-core/tasks/nfr-assess.md +6 -6
  75. package/xiaoma-core/tasks/project-integration-testing.md +42 -42
  76. package/xiaoma-core/tasks/qa-gate.md +23 -23
  77. package/xiaoma-core/tasks/review-story.md +18 -18
  78. package/xiaoma-core/tasks/risk-profile.md +25 -25
  79. package/xiaoma-core/tasks/serial-development-orchestration.md +51 -51
  80. package/xiaoma-core/tasks/test-design.md +9 -9
  81. package/xiaoma-core/tasks/trace-requirements.md +21 -21
  82. package/xiaoma-core/templates/competitor-analysis-tmpl.yaml +35 -5
  83. package/xiaoma-core/templates/front-end-architecture-tmpl.yaml +77 -11
  84. package/xiaoma-core/templates/front-end-spec-tmpl.yaml +6 -1
  85. package/xiaoma-core/templates/fullstack-architecture-tmpl.yaml +140 -20
  86. package/xiaoma-core/templates/global-qa-monitoring-tmpl.yaml +2 -1
  87. package/xiaoma-core/templates/requirements-coverage-audit.yaml +2 -1
  88. package/xiaoma-core/workflows/automated-requirements-analysis.yaml +283 -6
  89. package/dist/agents/database-architect.txt +0 -322
package/README.md CHANGED
@@ -1,3 +1,3 @@
1
1
  伟大的 xiaoma
2
2
 
3
- test 通过
3
+ test 通过
@@ -16,7 +16,7 @@ template:
16
16
  output:
17
17
  format: markdown
18
18
  filename: default-path/to/{{filename}}.md
19
- title: '{{variable}} Document Title'
19
+ title: "{{variable}} Document Title"
20
20
 
21
21
  workflow:
22
22
  mode: interactive
@@ -110,8 +110,8 @@ sections:
110
110
  Use `{{variable_name}}` in titles, templates, and content:
111
111
 
112
112
  ```yaml
113
- title: 'Epic {{epic_number}} {{epic_title}}'
114
- template: 'As a {{user_type}}, I want {{action}}, so that {{benefit}}.'
113
+ title: "Epic {{epic_number}} {{epic_title}}"
114
+ template: "As a {{user_type}}, I want {{action}}, so that {{benefit}}."
115
115
  ```
116
116
 
117
117
  ### Conditional Sections
@@ -214,7 +214,7 @@ choices:
214
214
  - id: criteria
215
215
  title: Acceptance Criteria
216
216
  type: numbered-list
217
- item_template: '{{criterion_number}}: {{criteria}}'
217
+ item_template: "{{criterion_number}}: {{criteria}}"
218
218
  repeatable: true
219
219
  ```
220
220
 
@@ -222,7 +222,7 @@ choices:
222
222
 
223
223
  ````yaml
224
224
  examples:
225
- - 'FR6: The system must authenticate users within 2 seconds'
225
+ - "FR6: The system must authenticate users within 2 seconds"
226
226
  - |
227
227
  ```mermaid
228
228
  sequenceDiagram
@@ -1417,11 +1417,29 @@ sections:
1417
1417
  rows:
1418
1418
  - category: "核心功能"
1419
1419
  items:
1420
- - ["功能A", "{{status}}", "{{status}}", "{{status}}", "{{status}}"]
1421
- - ["功能B", "{{status}}", "{{status}}", "{{status}}", "{{status}}"]
1420
+ - [
1421
+ "功能A",
1422
+ "{{status}}",
1423
+ "{{status}}",
1424
+ "{{status}}",
1425
+ "{{status}}",
1426
+ ]
1427
+ - [
1428
+ "功能B",
1429
+ "{{status}}",
1430
+ "{{status}}",
1431
+ "{{status}}",
1432
+ "{{status}}",
1433
+ ]
1422
1434
  - category: "用户体验"
1423
1435
  items:
1424
- - ["移动应用", "{{rating}}", "{{rating}}", "{{rating}}", "{{rating}}"]
1436
+ - [
1437
+ "移动应用",
1438
+ "{{rating}}",
1439
+ "{{rating}}",
1440
+ "{{rating}}",
1441
+ "{{rating}}",
1442
+ ]
1425
1443
  - ["上手时间", "{{time}}", "{{time}}", "{{time}}", "{{time}}"]
1426
1444
  - category: "集成与生态系统"
1427
1445
  items:
@@ -1432,11 +1450,23 @@ sections:
1432
1450
  "{{availability}}",
1433
1451
  "{{availability}}",
1434
1452
  ]
1435
- - ["第三方集成", "{{number}}", "{{number}}", "{{number}}", "{{number}}"]
1453
+ - [
1454
+ "第三方集成",
1455
+ "{{number}}",
1456
+ "{{number}}",
1457
+ "{{number}}",
1458
+ "{{number}}",
1459
+ ]
1436
1460
  - category: "定价与计划"
1437
1461
  items:
1438
1462
  - ["起步价", "{{price}}", "{{price}}", "{{price}}", "{{price}}"]
1439
- - ["免费套餐", "{{yes_no}}", "{{yes_no}}", "{{yes_no}}", "{{yes_no}}"]
1463
+ - [
1464
+ "免费套餐",
1465
+ "{{yes_no}}",
1466
+ "{{yes_no}}",
1467
+ "{{yes_no}}",
1468
+ "{{yes_no}}",
1469
+ ]
1440
1470
  - id: swot-comparison
1441
1471
  title: SWOT 对比
1442
1472
  instruction: 为你的解决方案与主要竞争对手创建 SWOT 分析
@@ -2140,17 +2140,83 @@ sections:
2140
2140
  columns: [类别, 技术, 版本, 用途, 选型理由]
2141
2141
  instruction: 根据所选框架和项目需求,填写适当的技术选型。
2142
2142
  rows:
2143
- - ["框架", "{{framework}}", "{{version}}", "{{purpose}}", "{{why_chosen}}"]
2144
- - ["UI 库", "{{ui_library}}", "{{version}}", "{{purpose}}", "{{why_chosen}}"]
2145
- - ["状态管理", "{{state_management}}", "{{version}}", "{{purpose}}", "{{why_chosen}}"]
2146
- - ["路由", "{{routing_library}}", "{{version}}", "{{purpose}}", "{{why_chosen}}"]
2147
- - ["构建工具", "{{build_tool}}", "{{version}}", "{{purpose}}", "{{why_chosen}}"]
2148
- - ["样式方案", "{{styling_solution}}", "{{version}}", "{{purpose}}", "{{why_chosen}}"]
2149
- - ["测试", "{{test_framework}}", "{{version}}", "{{purpose}}", "{{why_chosen}}"]
2150
- - ["组件库", "{{component_lib}}", "{{version}}", "{{purpose}}", "{{why_chosen}}"]
2151
- - ["表单处理", "{{form_library}}", "{{version}}", "{{purpose}}", "{{why_chosen}}"]
2152
- - ["动画", "{{animation_lib}}", "{{version}}", "{{purpose}}", "{{why_chosen}}"]
2153
- - ["开发工具", "{{dev_tools}}", "{{version}}", "{{purpose}}", "{{why_chosen}}"]
2143
+ - [
2144
+ "框架",
2145
+ "{{framework}}",
2146
+ "{{version}}",
2147
+ "{{purpose}}",
2148
+ "{{why_chosen}}",
2149
+ ]
2150
+ - [
2151
+ "UI ",
2152
+ "{{ui_library}}",
2153
+ "{{version}}",
2154
+ "{{purpose}}",
2155
+ "{{why_chosen}}",
2156
+ ]
2157
+ - [
2158
+ "状态管理",
2159
+ "{{state_management}}",
2160
+ "{{version}}",
2161
+ "{{purpose}}",
2162
+ "{{why_chosen}}",
2163
+ ]
2164
+ - [
2165
+ "路由",
2166
+ "{{routing_library}}",
2167
+ "{{version}}",
2168
+ "{{purpose}}",
2169
+ "{{why_chosen}}",
2170
+ ]
2171
+ - [
2172
+ "构建工具",
2173
+ "{{build_tool}}",
2174
+ "{{version}}",
2175
+ "{{purpose}}",
2176
+ "{{why_chosen}}",
2177
+ ]
2178
+ - [
2179
+ "样式方案",
2180
+ "{{styling_solution}}",
2181
+ "{{version}}",
2182
+ "{{purpose}}",
2183
+ "{{why_chosen}}",
2184
+ ]
2185
+ - [
2186
+ "测试",
2187
+ "{{test_framework}}",
2188
+ "{{version}}",
2189
+ "{{purpose}}",
2190
+ "{{why_chosen}}",
2191
+ ]
2192
+ - [
2193
+ "组件库",
2194
+ "{{component_lib}}",
2195
+ "{{version}}",
2196
+ "{{purpose}}",
2197
+ "{{why_chosen}}",
2198
+ ]
2199
+ - [
2200
+ "表单处理",
2201
+ "{{form_library}}",
2202
+ "{{version}}",
2203
+ "{{purpose}}",
2204
+ "{{why_chosen}}",
2205
+ ]
2206
+ - [
2207
+ "动画",
2208
+ "{{animation_lib}}",
2209
+ "{{version}}",
2210
+ "{{purpose}}",
2211
+ "{{why_chosen}}",
2212
+ ]
2213
+ - [
2214
+ "开发工具",
2215
+ "{{dev_tools}}",
2216
+ "{{version}}",
2217
+ "{{purpose}}",
2218
+ "{{why_chosen}}",
2219
+ ]
2154
2220
 
2155
2221
  - id: project-structure
2156
2222
  title: 项目结构
@@ -2431,27 +2497,147 @@ sections:
2431
2497
  type: table
2432
2498
  columns: [类别, 技术, 版本, 用途, 理由]
2433
2499
  rows:
2434
- - ["前端语言", "{{fe_language}}", "{{version}}", "{{purpose}}", "{{why_chosen}}"]
2435
- - ["前端框架", "{{fe_framework}}", "{{version}}", "{{purpose}}", "{{why_chosen}}"]
2436
- - ["UI 组件库", "{{ui_library}}", "{{version}}", "{{purpose}}", "{{why_chosen}}"]
2437
- - ["状态管理", "{{state_mgmt}}", "{{version}}", "{{purpose}}", "{{why_chosen}}"]
2438
- - ["后端语言", "{{be_language}}", "{{version}}", "{{purpose}}", "{{why_chosen}}"]
2439
- - ["后端框架", "{{be_framework}}", "{{version}}", "{{purpose}}", "{{why_chosen}}"]
2440
- - ["API 风格", "{{api_style}}", "{{version}}", "{{purpose}}", "{{why_chosen}}"]
2441
- - ["数据库", "{{database}}", "{{version}}", "{{purpose}}", "{{why_chosen}}"]
2442
- - ["缓存", "{{cache}}", "{{version}}", "{{purpose}}", "{{why_chosen}}"]
2443
- - ["文件存储", "{{storage}}", "{{version}}", "{{purpose}}", "{{why_chosen}}"]
2500
+ - [
2501
+ "前端语言",
2502
+ "{{fe_language}}",
2503
+ "{{version}}",
2504
+ "{{purpose}}",
2505
+ "{{why_chosen}}",
2506
+ ]
2507
+ - [
2508
+ "前端框架",
2509
+ "{{fe_framework}}",
2510
+ "{{version}}",
2511
+ "{{purpose}}",
2512
+ "{{why_chosen}}",
2513
+ ]
2514
+ - [
2515
+ "UI 组件库",
2516
+ "{{ui_library}}",
2517
+ "{{version}}",
2518
+ "{{purpose}}",
2519
+ "{{why_chosen}}",
2520
+ ]
2521
+ - [
2522
+ "状态管理",
2523
+ "{{state_mgmt}}",
2524
+ "{{version}}",
2525
+ "{{purpose}}",
2526
+ "{{why_chosen}}",
2527
+ ]
2528
+ - [
2529
+ "后端语言",
2530
+ "{{be_language}}",
2531
+ "{{version}}",
2532
+ "{{purpose}}",
2533
+ "{{why_chosen}}",
2534
+ ]
2535
+ - [
2536
+ "后端框架",
2537
+ "{{be_framework}}",
2538
+ "{{version}}",
2539
+ "{{purpose}}",
2540
+ "{{why_chosen}}",
2541
+ ]
2542
+ - [
2543
+ "API 风格",
2544
+ "{{api_style}}",
2545
+ "{{version}}",
2546
+ "{{purpose}}",
2547
+ "{{why_chosen}}",
2548
+ ]
2549
+ - [
2550
+ "数据库",
2551
+ "{{database}}",
2552
+ "{{version}}",
2553
+ "{{purpose}}",
2554
+ "{{why_chosen}}",
2555
+ ]
2556
+ - [
2557
+ "缓存",
2558
+ "{{cache}}",
2559
+ "{{version}}",
2560
+ "{{purpose}}",
2561
+ "{{why_chosen}}",
2562
+ ]
2563
+ - [
2564
+ "文件存储",
2565
+ "{{storage}}",
2566
+ "{{version}}",
2567
+ "{{purpose}}",
2568
+ "{{why_chosen}}",
2569
+ ]
2444
2570
  - ["认证", "{{auth}}", "{{version}}", "{{purpose}}", "{{why_chosen}}"]
2445
- - ["前端测试", "{{fe_test}}", "{{version}}", "{{purpose}}", "{{why_chosen}}"]
2446
- - ["后端测试", "{{be_test}}", "{{version}}", "{{purpose}}", "{{why_chosen}}"]
2447
- - ["E2E 测试", "{{e2e_test}}", "{{version}}", "{{purpose}}", "{{why_chosen}}"]
2448
- - ["构建工具", "{{build_tool}}", "{{version}}", "{{purpose}}", "{{why_chosen}}"]
2449
- - ["打包工具", "{{bundler}}", "{{version}}", "{{purpose}}", "{{why_chosen}}"]
2450
- - ["IaC 工具", "{{iac_tool}}", "{{version}}", "{{purpose}}", "{{why_chosen}}"]
2451
- - ["CI/CD", "{{cicd}}", "{{version}}", "{{purpose}}", "{{why_chosen}}"]
2452
- - ["监控", "{{monitoring}}", "{{version}}", "{{purpose}}", "{{why_chosen}}"]
2453
- - ["日志", "{{logging}}", "{{version}}", "{{purpose}}", "{{why_chosen}}"]
2454
- - ["CSS 框架", "{{css_framework}}", "{{version}}", "{{purpose}}", "{{why_chosen}}"]
2571
+ - [
2572
+ "前端测试",
2573
+ "{{fe_test}}",
2574
+ "{{version}}",
2575
+ "{{purpose}}",
2576
+ "{{why_chosen}}",
2577
+ ]
2578
+ - [
2579
+ "后端测试",
2580
+ "{{be_test}}",
2581
+ "{{version}}",
2582
+ "{{purpose}}",
2583
+ "{{why_chosen}}",
2584
+ ]
2585
+ - [
2586
+ "E2E 测试",
2587
+ "{{e2e_test}}",
2588
+ "{{version}}",
2589
+ "{{purpose}}",
2590
+ "{{why_chosen}}",
2591
+ ]
2592
+ - [
2593
+ "构建工具",
2594
+ "{{build_tool}}",
2595
+ "{{version}}",
2596
+ "{{purpose}}",
2597
+ "{{why_chosen}}",
2598
+ ]
2599
+ - [
2600
+ "打包工具",
2601
+ "{{bundler}}",
2602
+ "{{version}}",
2603
+ "{{purpose}}",
2604
+ "{{why_chosen}}",
2605
+ ]
2606
+ - [
2607
+ "IaC 工具",
2608
+ "{{iac_tool}}",
2609
+ "{{version}}",
2610
+ "{{purpose}}",
2611
+ "{{why_chosen}}",
2612
+ ]
2613
+ - [
2614
+ "CI/CD",
2615
+ "{{cicd}}",
2616
+ "{{version}}",
2617
+ "{{purpose}}",
2618
+ "{{why_chosen}}",
2619
+ ]
2620
+ - [
2621
+ "监控",
2622
+ "{{monitoring}}",
2623
+ "{{version}}",
2624
+ "{{purpose}}",
2625
+ "{{why_chosen}}",
2626
+ ]
2627
+ - [
2628
+ "日志",
2629
+ "{{logging}}",
2630
+ "{{version}}",
2631
+ "{{purpose}}",
2632
+ "{{why_chosen}}",
2633
+ ]
2634
+ - [
2635
+ "CSS 框架",
2636
+ "{{css_framework}}",
2637
+ "{{version}}",
2638
+ "{{purpose}}",
2639
+ "{{why_chosen}}",
2640
+ ]
2455
2641
 
2456
2642
  - id: data-models
2457
2643
  title: 数据模型
@@ -301,22 +301,22 @@ error_handling:
301
301
  ```yaml
302
302
  agent_integration:
303
303
  sm:
304
- commands: ['*draft-enhanced']
304
+ commands: ["*draft-enhanced"]
305
305
  input: epic_shards, database_design
306
306
  output: story.md
307
307
 
308
308
  po:
309
- commands: ['*validate-story-draft']
309
+ commands: ["*validate-story-draft"]
310
310
  input: story.md
311
311
  output: validation_result, approved_story
312
312
 
313
313
  dev:
314
- commands: ['*develop-story', '*run-tests']
314
+ commands: ["*develop-story", "*run-tests"]
315
315
  input: story.md, generated_code
316
316
  output: implementation_files, test_results
317
317
 
318
318
  qa:
319
- commands: ['*review']
319
+ commands: ["*review"]
320
320
  input: story.md, implementation_files
321
321
  output: qa_report, approval_status
322
322
  ```
@@ -111,13 +111,13 @@ Implement fixes based on QA results (gate and assessments) for a specific story.
111
111
 
112
112
  ```yaml
113
113
  required:
114
- - story_id: '{epic}.{story}' # e.g., "2.2"
114
+ - story_id: "{epic}.{story}" # e.g., "2.2"
115
115
  - qa_root: from `xiaoma-core/core-config.yaml` key `qa.qaLocation` (e.g., `docs/project/qa`)
116
116
  - story_root: from `xiaoma-core/core-config.yaml` key `devStoryLocation` (e.g., `docs/project/stories`)
117
117
 
118
118
  optional:
119
- - story_title: '{title}' # derive from story H1 if missing
120
- - story_slug: '{slug}' # derive from title (lowercase, hyphenated) if missing
119
+ - story_title: "{title}" # derive from story H1 if missing
120
+ - story_slug: "{slug}" # derive from title (lowercase, hyphenated) if missing
121
121
  ```
122
122
 
123
123
  ## QA Sources to Read
@@ -197,7 +197,7 @@ agent:
197
197
 
198
198
  ```yaml
199
199
  stage_1_analysis:
200
- duration: '5-10 minutes'
200
+ duration: "5-10 minutes"
201
201
  activities:
202
202
  - prd_deep_analysis: 深度分析PRD文档结构
203
203
  - story_identification: 识别所有用户故事
@@ -214,7 +214,7 @@ stage_1_analysis:
214
214
 
215
215
  ```yaml
216
216
  stage_2_creation:
217
- duration: '15-30 minutes'
217
+ duration: "15-30 minutes"
218
218
  activities:
219
219
  - parallel_story_generation: 并行生成所有用户故事
220
220
  - database_design_integration: 集成数据库设计
@@ -230,7 +230,7 @@ stage_2_creation:
230
230
 
231
231
  ```yaml
232
232
  stage_3_development:
233
- duration: '主要时间消耗阶段'
233
+ duration: "主要时间消耗阶段"
234
234
  execution_mode: sequential
235
235
  activities:
236
236
  - pipeline_initialization: 初始化单条串行开发流水线
@@ -247,7 +247,7 @@ stage_3_development:
247
247
 
248
248
  ```yaml
249
249
  stage_4_integration:
250
- duration: '10-20 minutes'
250
+ duration: "10-20 minutes"
251
251
  activities:
252
252
  - cross_module_integration: 跨模块集成测试
253
253
  - end_to_end_testing: 端到端业务流程测试
@@ -263,7 +263,7 @@ stage_4_integration:
263
263
 
264
264
  ```yaml
265
265
  stage_5_delivery:
266
- duration: '5-10 minutes'
266
+ duration: "5-10 minutes"
267
267
  activities:
268
268
  - deliverable_packaging: 交付物打包
269
269
  - documentation_generation: 文档生成
@@ -302,18 +302,18 @@ parallel_scheduling:
302
302
  ```yaml
303
303
  pipeline_architecture:
304
304
  pipeline_1:
305
- focus: '核心业务功能'
306
- stories: ['用户注册', '用户登录', '权限管理']
305
+ focus: "核心业务功能"
306
+ stories: ["用户注册", "用户登录", "权限管理"]
307
307
  priority: high
308
308
 
309
309
  pipeline_2:
310
- focus: '业务数据管理'
311
- stories: ['数据录入', '数据查询', '数据导出']
310
+ focus: "业务数据管理"
311
+ stories: ["数据录入", "数据查询", "数据导出"]
312
312
  priority: medium
313
313
 
314
314
  pipeline_3:
315
- focus: '系统支撑功能'
316
- stories: ['系统配置', '日志监控', '备份恢复']
315
+ focus: "系统支撑功能"
316
+ stories: ["系统配置", "日志监控", "备份恢复"]
317
317
  priority: low
318
318
  ```
319
319