uxos 1.0.21 → 1.0.23
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.
- package/_uxos/create-product-brief/workflow.md +1 -1
- package/_uxos/init/init.md +3 -3
- package/cli.js +0 -20
- package/package.json +1 -1
|
@@ -49,7 +49,7 @@ web_bundle: true
|
|
|
49
49
|
|
|
50
50
|
### 1. 配置加载
|
|
51
51
|
|
|
52
|
-
从
|
|
52
|
+
从 _bmad/bmm/config.yaml 加载并读取完整配置并解析:
|
|
53
53
|
|
|
54
54
|
- `project_name`、`output_folder`、`planning_artifacts`、`user_name`、`communication_language`、`document_output_language`、`user_skill_level`
|
|
55
55
|
|
package/_uxos/init/init.md
CHANGED
|
@@ -17,13 +17,13 @@
|
|
|
17
17
|
|
|
18
18
|
<step n="4">
|
|
19
19
|
收到用户的昵称和语言偏好后:
|
|
20
|
-
- 将信息保存到
|
|
20
|
+
- 将信息保存到 _uxos/config.yaml
|
|
21
21
|
- 格式:user_name: [昵称], communication_language: [语言]
|
|
22
22
|
</step>
|
|
23
|
-
|
|
23
|
+
|
|
24
24
|
<step n="5">
|
|
25
25
|
保存配置文件后,立即执行以下操作:
|
|
26
|
-
- 加载并执行:
|
|
26
|
+
- 加载并执行:_uxos/memory-engine/workflow.md
|
|
27
27
|
- 将控制权交给 Memory-Engine 工作流
|
|
28
28
|
- 遵循 workflow.md 中的所有指令
|
|
29
29
|
</step>
|
package/cli.js
CHANGED
|
@@ -92,26 +92,6 @@ function main() {
|
|
|
92
92
|
return;
|
|
93
93
|
}
|
|
94
94
|
|
|
95
|
-
// Check if user might be using cached version
|
|
96
|
-
const isLatestFlag = process.argv.some(arg => arg.includes('@latest'));
|
|
97
|
-
if (!isLatestFlag) {
|
|
98
|
-
console.log(`
|
|
99
|
-
⚠️ WARNING: You may be using a cached version!
|
|
100
|
-
|
|
101
|
-
To ensure you get the latest version, always use:
|
|
102
|
-
|
|
103
|
-
npx uxos@latest
|
|
104
|
-
|
|
105
|
-
(Press Ctrl+C to cancel, or wait 3 seconds to continue...)
|
|
106
|
-
`);
|
|
107
|
-
|
|
108
|
-
// Give user 3 seconds to cancel
|
|
109
|
-
const startTime = Date.now();
|
|
110
|
-
while (Date.now() - startTime < 3000) {
|
|
111
|
-
// Busy wait
|
|
112
|
-
}
|
|
113
|
-
}
|
|
114
|
-
|
|
115
95
|
// Print header
|
|
116
96
|
console.log(`
|
|
117
97
|
╔═══════════════════════════════════════════════════════════╗
|
package/package.json
CHANGED