universal-dev-standards 5.4.0 → 5.5.0

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 (114) hide show
  1. package/bundled/ai/standards/adversarial-test.ai.yaml +277 -0
  2. package/bundled/ai/standards/audit-trail.ai.yaml +113 -0
  3. package/bundled/ai/standards/chaos-injection-tests.ai.yaml +91 -0
  4. package/bundled/ai/standards/container-image-standards.ai.yaml +88 -0
  5. package/bundled/ai/standards/container-security.ai.yaml +331 -0
  6. package/bundled/ai/standards/cost-budget-test.ai.yaml +96 -0
  7. package/bundled/ai/standards/data-contract.ai.yaml +110 -0
  8. package/bundled/ai/standards/data-migration-testing.ai.yaml +96 -0
  9. package/bundled/ai/standards/data-pipeline.ai.yaml +113 -0
  10. package/bundled/ai/standards/disaster-recovery-drill.ai.yaml +89 -0
  11. package/bundled/ai/standards/flaky-test-management.ai.yaml +89 -0
  12. package/bundled/ai/standards/flow-based-testing.ai.yaml +240 -0
  13. package/bundled/ai/standards/iac-design-principles.ai.yaml +83 -0
  14. package/bundled/ai/standards/incident-response.ai.yaml +107 -0
  15. package/bundled/ai/standards/license-compliance.ai.yaml +106 -0
  16. package/bundled/ai/standards/llm-output-validation.ai.yaml +269 -0
  17. package/bundled/ai/standards/mock-boundary.ai.yaml +250 -0
  18. package/bundled/ai/standards/mutation-testing.ai.yaml +192 -0
  19. package/bundled/ai/standards/pii-classification.ai.yaml +109 -0
  20. package/bundled/ai/standards/policy-as-code-testing.ai.yaml +227 -0
  21. package/bundled/ai/standards/prd-standards.ai.yaml +88 -0
  22. package/bundled/ai/standards/product-metrics-standards.ai.yaml +111 -0
  23. package/bundled/ai/standards/prompt-regression.ai.yaml +94 -0
  24. package/bundled/ai/standards/property-based-testing.ai.yaml +105 -0
  25. package/bundled/ai/standards/release-quality-manifest.ai.yaml +135 -0
  26. package/bundled/ai/standards/replay-test.ai.yaml +111 -0
  27. package/bundled/ai/standards/runbook.ai.yaml +104 -0
  28. package/bundled/ai/standards/sast-advanced.ai.yaml +135 -0
  29. package/bundled/ai/standards/schema-evolution.ai.yaml +111 -0
  30. package/bundled/ai/standards/secret-management-standards.ai.yaml +105 -0
  31. package/bundled/ai/standards/secure-op.ai.yaml +365 -0
  32. package/bundled/ai/standards/security-testing.ai.yaml +171 -0
  33. package/bundled/ai/standards/server-ops-security.ai.yaml +274 -0
  34. package/bundled/ai/standards/slo-sli.ai.yaml +97 -0
  35. package/bundled/ai/standards/smoke-test.ai.yaml +87 -0
  36. package/bundled/ai/standards/supply-chain-attestation.ai.yaml +109 -0
  37. package/bundled/ai/standards/test-completeness-dimensions.ai.yaml +52 -5
  38. package/bundled/ai/standards/user-story-mapping.ai.yaml +108 -0
  39. package/bundled/core/adversarial-test.md +212 -0
  40. package/bundled/core/chaos-injection-tests.md +116 -0
  41. package/bundled/core/container-security.md +521 -0
  42. package/bundled/core/cost-budget-test.md +69 -0
  43. package/bundled/core/data-migration-testing.md +110 -0
  44. package/bundled/core/disaster-recovery-drill.md +73 -0
  45. package/bundled/core/flaky-test-management.md +73 -0
  46. package/bundled/core/flow-based-testing.md +142 -0
  47. package/bundled/core/llm-output-validation.md +178 -0
  48. package/bundled/core/mock-boundary.md +100 -0
  49. package/bundled/core/mutation-testing.md +97 -0
  50. package/bundled/core/policy-as-code-testing.md +188 -0
  51. package/bundled/core/prompt-regression.md +72 -0
  52. package/bundled/core/property-based-testing.md +73 -0
  53. package/bundled/core/release-quality-manifest.md +147 -0
  54. package/bundled/core/replay-test.md +86 -0
  55. package/bundled/core/sast-advanced.md +300 -0
  56. package/bundled/core/secure-op.md +314 -0
  57. package/bundled/core/security-testing.md +87 -0
  58. package/bundled/core/server-ops-security.md +493 -0
  59. package/bundled/core/smoke-test.md +65 -0
  60. package/bundled/core/supply-chain-attestation.md +117 -0
  61. package/bundled/locales/zh-CN/CHANGELOG.md +3 -3
  62. package/bundled/locales/zh-CN/README.md +1 -1
  63. package/bundled/locales/zh-CN/skills/ai-instruction-standards/SKILL.md +5 -5
  64. package/bundled/locales/zh-TW/CHANGELOG.md +3 -3
  65. package/bundled/locales/zh-TW/README.md +1 -1
  66. package/bundled/locales/zh-TW/skills/ai-instruction-standards/SKILL.md +183 -79
  67. package/bundled/skills/README.md +4 -3
  68. package/bundled/skills/SKILL_NAMING.md +94 -0
  69. package/bundled/skills/ai-instruction-standards/SKILL.md +181 -88
  70. package/bundled/skills/atdd-assistant/SKILL.md +8 -0
  71. package/bundled/skills/bdd-assistant/SKILL.md +7 -0
  72. package/bundled/skills/checkin-assistant/SKILL.md +8 -0
  73. package/bundled/skills/code-review-assistant/SKILL.md +7 -0
  74. package/bundled/skills/journey-test-assistant/SKILL.md +203 -0
  75. package/bundled/skills/orchestrate/SKILL.md +167 -0
  76. package/bundled/skills/plan/SKILL.md +234 -0
  77. package/bundled/skills/pr-automation-assistant/SKILL.md +8 -0
  78. package/bundled/skills/push/SKILL.md +49 -2
  79. package/bundled/skills/{process-automation → skill-builder}/SKILL.md +1 -1
  80. package/bundled/skills/{forward-derivation → spec-derivation}/SKILL.md +1 -1
  81. package/bundled/skills/spec-driven-dev/SKILL.md +7 -0
  82. package/bundled/skills/sweep/SKILL.md +145 -0
  83. package/bundled/skills/tdd-assistant/SKILL.md +7 -0
  84. package/package.json +1 -1
  85. package/src/commands/flow.js +8 -0
  86. package/src/commands/start.js +14 -0
  87. package/src/commands/sweep.js +8 -0
  88. package/src/commands/workflow.js +8 -0
  89. package/standards-registry.json +426 -4
  90. package/bundled/locales/zh-CN/skills/ac-coverage-assistant/SKILL.md +0 -190
  91. package/bundled/locales/zh-CN/skills/forward-derivation/SKILL.md +0 -71
  92. package/bundled/locales/zh-CN/skills/forward-derivation/guide.md +0 -130
  93. package/bundled/locales/zh-CN/skills/methodology-system/SKILL.md +0 -88
  94. package/bundled/locales/zh-CN/skills/methodology-system/create-methodology.md +0 -350
  95. package/bundled/locales/zh-CN/skills/methodology-system/guide.md +0 -131
  96. package/bundled/locales/zh-CN/skills/methodology-system/runtime.md +0 -279
  97. package/bundled/locales/zh-CN/skills/process-automation/SKILL.md +0 -143
  98. package/bundled/locales/zh-TW/skills/ac-coverage-assistant/SKILL.md +0 -195
  99. package/bundled/locales/zh-TW/skills/deploy-assistant/SKILL.md +0 -178
  100. package/bundled/locales/zh-TW/skills/forward-derivation/SKILL.md +0 -69
  101. package/bundled/locales/zh-TW/skills/forward-derivation/guide.md +0 -415
  102. package/bundled/locales/zh-TW/skills/methodology-system/SKILL.md +0 -86
  103. package/bundled/locales/zh-TW/skills/methodology-system/create-methodology.md +0 -350
  104. package/bundled/locales/zh-TW/skills/methodology-system/guide.md +0 -131
  105. package/bundled/locales/zh-TW/skills/methodology-system/runtime.md +0 -279
  106. package/bundled/locales/zh-TW/skills/process-automation/SKILL.md +0 -144
  107. /package/bundled/skills/{ac-coverage-assistant → ac-coverage}/SKILL.md +0 -0
  108. /package/bundled/skills/{methodology-system → dev-methodology}/SKILL.md +0 -0
  109. /package/bundled/skills/{methodology-system → dev-methodology}/create-methodology.md +0 -0
  110. /package/bundled/skills/{methodology-system → dev-methodology}/guide.md +0 -0
  111. /package/bundled/skills/{methodology-system → dev-methodology}/integrated-flow.md +0 -0
  112. /package/bundled/skills/{methodology-system → dev-methodology}/prerequisite-check.md +0 -0
  113. /package/bundled/skills/{methodology-system → dev-methodology}/runtime.md +0 -0
  114. /package/bundled/skills/{forward-derivation → spec-derivation}/guide.md +0 -0
@@ -1,350 +0,0 @@
1
- ---
2
- source: ../../../../skills/methodology-system/create-methodology.md
3
- source_version: 1.0.0
4
- translation_version: 1.0.0
5
- last_synced: 2026-01-12
6
- status: experimental
7
- ---
8
-
9
- # 建立自订方法論指南
10
-
11
- > **Language**: [English](../../../../skills/methodology-system/create-methodology.md) | 简体中文
12
-
13
- > [!WARNING]
14
- > **实驗性功能 / Experimental Feature**
15
- >
16
- > 此功能正在積極开发中,可能在 v4.0 中有重大变更。
17
- > This feature is under active development and may change significantly in v4.0.
18
-
19
- **版本**: 1.0.0
20
- **最後更新**: 2026-01-12
21
-
22
- ---
23
-
24
- ## 概述
25
-
26
- 本指南幫助您为团队或项目建立自订开发方法論。自订方法論储存在 `.standards/methodologies/` 目录中,并遵循与內建方法論相同的 YAML 结构。
27
-
28
- ---
29
-
30
- ## 互动式建立精靈
31
-
32
- 使用 `/methodology create` 啟动互动式精靈:
33
-
34
- ### 步骤 1:基本信息
35
-
36
- ```
37
- ╔════════════════════════════════════════════════╗
38
- ║ 建立自订方法論 ║
39
- ╠════════════════════════════════════════════════╣
40
- ║ ║
41
- ║ 您的方法論名称是什麼? ║
42
- ║ > 我的团队工作流 ║
43
- ║ ║
44
- ║ 簡短描述: ║
45
- ║ > 我們团队的迭代开发流程,包含規划和审查阶段 ║
46
- ║ ║
47
- ║ ID(自动产生): my-team-workflow ║
48
- ║ ║
49
- ╚════════════════════════════════════════════════╝
50
- ```
51
-
52
- ### 步骤 2:定義阶段
53
-
54
- ```
55
- ╔════════════════════════════════════════════════╗
56
- ║ 定義阶段 (1/?) ║
57
- ╠════════════════════════════════════════════════╣
58
- ║ ║
59
- ║ 阶段 1: ║
60
- ║ ───────────────────────────────────── ║
61
- ║ 名称:規划 ║
62
- ║ 描述:規划实作方法 ║
63
- ║ 预估时间:15-30 分鐘 ║
64
- ║ 表情符号:📋 ║
65
- ║ ║
66
- ║ 检查清单项目(每行一项): ║
67
- ║ 在必填项目前加上 * ║
68
- ║ ───────────────────────────────────── ║
69
- ║ * 需求已理解 ║
70
- ║ * 设计方法已审查 ║
71
- ║ 相依性已識别 ║
72
- ║ ║
73
- ║ 什麼觸發離開此阶段? ║
74
- ║ > 用戶确认規划完成 ║
75
- ║ ║
76
- ║ 離開後的下一个阶段? ║
77
- ║ > 实作 ║
78
- ║ ║
79
- ║ [新增另一个阶段] [阶段定義完成] ║
80
- ║ ║
81
- ╚════════════════════════════════════════════════╝
82
- ```
83
-
84
- ### 步骤 3:配置检查点
85
-
86
- ```
87
- ╔════════════════════════════════════════════════╗
88
- ║ 配置检查点 ║
89
- ╠════════════════════════════════════════════════╣
90
- ║ ║
91
- ║ 选择检查点提醒: ║
92
- ║ ───────────────────────────────────── ║
93
- ║ [x] 在阶段转换时提醒 ║
94
- ║ [x] 跳過 3 次簽入後警告 ║
95
- ║ [ ] 变更超過 200 行後提醒 ║
96
- ║ [ ] 30 分鐘没有提交後提醒 ║
97
- ║ ║
98
- ║ 提醒強度: ║
99
- ║ ( ) 建议 - 溫和提醒 ║
100
- ║ (•) 警告 - 更明顯 ║
101
- ║ ( ) 嚴格 - 阻止直到处理 ║
102
- ║ ║
103
- ╚════════════════════════════════════════════════╝
104
- ```
105
-
106
- ### 步骤 4:审查并储存
107
-
108
- ```
109
- ╔════════════════════════════════════════════════╗
110
- ║ 审查方法論 ║
111
- ╠════════════════════════════════════════════════╣
112
- ║ ║
113
- ║ 名称:我的团队工作流 ║
114
- ║ ID:my-team-workflow ║
115
- ║ ║
116
- ║ 阶段: ║
117
- ║ ───────────────────────────────────── ║
118
- ║ 1. 📋 規划 ║
119
- ║ └─ 检查清单:3 项(2 项必填) ║
120
- ║ 2. 💻 实作 ║
121
- ║ └─ 检查清单:4 项(3 项必填) ║
122
- ║ 3. 👀 审查 ║
123
- ║ └─ 检查清单:3 项(2 项必填) ║
124
- ║ ║
125
- ║ 检查点:2 个啟用 ║
126
- ║ 強度:警告 ║
127
- ║ ║
128
- ║ [储存] [编辑] [取消] ║
129
- ║ ║
130
- ╚════════════════════════════════════════════════╝
131
-
132
- 方法論已建立!
133
-
134
- 储存到:.standards/methodologies/my-team-workflow.methodology.yaml
135
-
136
- 啟用:/methodology switch my-team-workflow
137
- ```
138
-
139
- ---
140
-
141
- ## 手动建立
142
-
143
- 您也可以手动建立方法論文件:
144
-
145
- ### 1. 建立目录
146
-
147
- ```bash
148
- mkdir -p .standards/methodologies
149
- ```
150
-
151
- ### 2. 建立 YAML 文件
152
-
153
- 建立 `.standards/methodologies/my-workflow.methodology.yaml`:
154
-
155
- ```yaml
156
- $schema: "https://raw.githubusercontent.com/anthropics/universal-dev-standards/main/methodologies/methodology-schema.json"
157
- id: my-workflow
158
- name: My Custom Workflow
159
- nameZh: 我的自订工作流
160
- version: 1.0.0
161
- description: A custom development workflow for our team
162
-
163
- phases:
164
- - id: plan
165
- name: Planning
166
- nameZh: 規划
167
- description: Plan the implementation approach
168
- duration: "15-30 minutes"
169
- emoji: "📋"
170
- checklist:
171
- - id: requirements-clear
172
- text: Requirements are clearly understood
173
- textZh: 需求已清楚理解
174
- required: true
175
- triggers:
176
- exit:
177
- - condition: user_confirms_plan_complete
178
- nextPhase: implement
179
- ```
180
-
181
- ### 3. 啟用方法論
182
-
183
- ```bash
184
- /methodology switch my-workflow
185
- ```
186
-
187
- ---
188
-
189
- ## Schema 參考
190
-
191
- ### 必填欄位
192
-
193
- | 欄位 | 类型 | 说明 |
194
- |------|------|------|
195
- | `id` | string | 唯一識别码(小写、連字号) |
196
- | `name` | string | 顯示名称 |
197
- | `version` | string | 語意化版本 |
198
- | `phases` | array | 至少一个阶段 |
199
-
200
- ### 阶段欄位
201
-
202
- | 欄位 | 类型 | 必填 | 说明 |
203
- |------|------|------|------|
204
- | `id` | string | 是 | 阶段識别码 |
205
- | `name` | string | 是 | 顯示名称 |
206
- | `description` | string | 是 | 此阶段的说明 |
207
- | `checklist` | array | 否 | 验证项目 |
208
- | `triggers` | object | 否 | 进入/離開条件 |
209
- | `guidance` | object | 否 | AI 提示 |
210
- | `duration` | string | 否 | 预估时间 |
211
- | `emoji` | string | 否 | 视覺指示器 |
212
-
213
- ---
214
-
215
- ## 最佳实踐
216
-
217
- ### 1. 保持阶段專注
218
-
219
- 每个阶段应有明确、单一的目的。如果一个阶段有超過 5-6 个检查项目,考慮拆分。
220
-
221
- ### 2. 使用有意義的 ID
222
-
223
- ```yaml
224
- # 好的
225
- id: code-review
226
- id: integration-test
227
-
228
- # 避免
229
- id: phase1
230
- id: step-a
231
- ```
232
-
233
- ### 3. 使检查清单可操作
234
-
235
- ```yaml
236
- # 好的
237
- text: 测试涵蓋邊界情况
238
- text: 错误处理已实作
239
-
240
- # 避免
241
- text: 程序码很好
242
- text: 一切正常
243
- ```
244
-
245
- ### 4. 提供有幫助的引導
246
-
247
- 在阶段引導中包含实用提示:
248
-
249
- ```yaml
250
- guidance:
251
- prompt: |
252
- ## 审查阶段
253
-
254
- 重点領域:
255
- - 安全漏洞
256
- - 效能影響
257
- - API 契約变更
258
-
259
- {{ checklist | format_checklist }}
260
- ```
261
-
262
- ### 5. 考慮本地化
263
-
264
- 始終为雙語团队提供 `nameZh`、`textZh`、`promptZh`。
265
-
266
- ---
267
-
268
- ## 範例
269
-
270
- ### 熱修復工作流
271
-
272
- ```yaml
273
- id: hotfix
274
- name: Hotfix Workflow
275
- nameZh: 熱修復工作流
276
- phases:
277
- - id: reproduce
278
- name: Reproduce Issue
279
- nameZh: 重現問題
280
- checklist:
281
- - id: issue-reproduced
282
- text: Issue reproduced locally
283
- textZh: 問題已在本地重現
284
- required: true
285
- - id: fix
286
- name: Apply Fix
287
- nameZh: 应用修復
288
- checklist:
289
- - id: minimal-fix
290
- text: Fix is minimal and targeted
291
- textZh: 修復是最小且針对性的
292
- required: true
293
- - id: verify
294
- name: Verify Fix
295
- nameZh: 验证修復
296
- checklist:
297
- - id: issue-resolved
298
- text: Original issue is resolved
299
- textZh: 原始問題已解决
300
- required: true
301
- ```
302
-
303
- ### 功能旗標工作流
304
-
305
- ```yaml
306
- id: feature-flag
307
- name: Feature Flag Development
308
- nameZh: 功能旗標开发
309
- phases:
310
- - id: design-flag
311
- name: Design Flag
312
- nameZh: 设计旗標
313
- checklist:
314
- - id: flag-named
315
- text: Flag has descriptive name
316
- textZh: 旗標有描述性名称
317
- required: true
318
- - id: implement-behind-flag
319
- name: Implement Behind Flag
320
- nameZh: 在旗標後实作
321
- checklist:
322
- - id: default-off
323
- text: Flag defaults to off
324
- textZh: 旗標预设为关閉
325
- required: true
326
- - id: gradual-rollout
327
- name: Gradual Rollout
328
- nameZh: 漸进式推出
329
- checklist:
330
- - id: metrics-monitored
331
- text: Metrics being monitored
332
- textZh: 正在監控指標
333
- required: true
334
- - id: cleanup
335
- name: Cleanup
336
- nameZh: 清理
337
- checklist:
338
- - id: flag-removed
339
- text: Flag code removed after full rollout
340
- textZh: 完全推出後移除旗標程序码
341
- required: true
342
- ```
343
-
344
- ---
345
-
346
- ## 版本历史
347
-
348
- | 版本 | 日期 | 变更 |
349
- |------|------|------|
350
- | 1.0.0 | 2026-01-12 | 初始建立指南 |
@@ -1,131 +0,0 @@
1
- ---
2
- source: ../../../../skills/methodology-system/SKILL.md
3
- source_version: 1.0.0
4
- translation_version: 1.0.0
5
- last_synced: 2026-01-12
6
- status: experimental
7
- ---
8
-
9
- # 方法論系统 Skill
10
-
11
- > **Language**: [English](../../../../skills/methodology-system/SKILL.md) | 简体中文
12
-
13
- > [!WARNING]
14
- > **实驗性功能 / Experimental Feature**
15
- >
16
- > 此功能正在積極开发中,可能在 v4.0 中有重大变更。
17
- > This feature is under active development and may change significantly in v4.0.
18
-
19
- **版本**: 1.0.0
20
- **最後更新**: 2026-01-12
21
-
22
- ---
23
-
24
- ## 概述
25
-
26
- 方法論系统讓採用此规范的项目能夠选择、配置并遵循特定的开发方法論。內建支援 TDD、BDD、SDD 和 ATDD,并可建立自订方法論。
27
-
28
- ---
29
-
30
- ## 功能
31
-
32
- ### 核心功能
33
-
34
- 1. **方法論选择** - 從內建方法論中选择或建立自订方法論
35
- 2. **阶段追蹤** - 追蹤當前开发阶段,提供阶段特定的引導
36
- 3. **检查点系统** - 在关鍵时刻自动提醒和验证
37
- 4. **检查清单** - 每个阶段都有必須完成的检查项目
38
- 5. **AI 引導** - 根据當前阶段提供上下文感知的 AI 引導
39
-
40
- ### 內建方法論
41
-
42
- | 方法論 | 说明 | 阶段 |
43
- |--------|------|------|
44
- | **TDD** | 测试驅动开发 | 紅燈 → 綠燈 → 重構 |
45
- | **BDD** | 行为驅动开发 | 探索 → 制定 → 自动化 → 活文件 |
46
- | **SDD** | 規格驅动开发 | 讨论 → 提案 → 审查 → 实作 → 验证 → 歸檔 |
47
- | **ATDD** | 驗收测试驅动开发 | 工作坊 → 提煉 → 开发 → 展示 |
48
-
49
- ---
50
-
51
- ## 命令
52
-
53
- | 命令 | 说明 |
54
- |------|------|
55
- | `/methodology` | 顯示當前方法論状态 |
56
- | `/methodology status` | 顯示當前阶段和检查清单 |
57
- | `/methodology switch <id>` | 切换到不同方法論 |
58
- | `/methodology phase [name]` | 顯示或变更當前阶段 |
59
- | `/methodology checklist` | 顯示當前阶段检查清单 |
60
- | `/methodology skip` | 跳過當前阶段(会有警告) |
61
- | `/methodology list` | 列出可用方法論 |
62
- | `/methodology create` | 建立自订方法論 |
63
-
64
- ---
65
-
66
- ## 配置
67
-
68
- 在 `.standards/manifest.json` 中配置方法論:
69
-
70
- ```json
71
- {
72
- "methodology": {
73
- "active": "tdd",
74
- "available": ["tdd", "bdd", "sdd", "atdd"],
75
- "config": {
76
- "checkpointsEnabled": true,
77
- "reminderIntensity": "suggest",
78
- "skipLimit": 3
79
- }
80
- }
81
- }
82
- ```
83
-
84
- ### 配置选项
85
-
86
- | 选项 | 类型 | 预设值 | 说明 |
87
- |------|------|--------|------|
88
- | `active` | string | null | 當前啟用的方法論 ID |
89
- | `available` | string[] | all | 可用的方法論清单 |
90
- | `checkpointsEnabled` | boolean | true | 是否啟用检查点提醒 |
91
- | `reminderIntensity` | string | "suggest" | 提醒強度:suggest、warn、block |
92
- | `skipLimit` | number | 3 | 連續跳過幾次後顯示警告 |
93
-
94
- ---
95
-
96
- ## AI 行为
97
-
98
- 當方法論啟用时,AI 会:
99
-
100
- 1. **顯示阶段指示器** - 使用表情符号標示當前阶段(如 🔴 RED)
101
- 2. **提供阶段引導** - 根据當前阶段建议適當的行动
102
- 3. **追蹤检查清单** - 自动追蹤和更新检查项目状态
103
- 4. **顯示检查点** - 在阶段转换或大量变更时提醒用戶
104
- 5. **建议提交** - 根据变更累積量建议適當的提交时机
105
-
106
- ---
107
-
108
- ## 自订方法論
109
-
110
- 可以建立自订方法論來符合团队需求:
111
-
112
- 1. 使用 `/methodology create` 啟动互动式建立精靈
113
- 2. 或手动在 `.standards/methodologies/` 建立 YAML 文件
114
-
115
- 詳見 [建立自订方法論](create-methodology.md)。
116
-
117
- ---
118
-
119
- ## 相关文件
120
-
121
- - [命令文档](../commands/methodology.md) - `/methodology` 命令详细文档
122
- - [执行时引導](runtime.md) - AI 行为規格
123
- - [建立自订方法論](create-methodology.md) - 建立指南
124
-
125
- ---
126
-
127
- ## 版本历史
128
-
129
- | 版本 | 日期 | 变更 |
130
- |------|------|------|
131
- | 1.0.0 | 2026-01-12 | 初始方法論系统 |