uxos 1.0.11 → 1.0.13

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/package.json CHANGED
@@ -1,14 +1,13 @@
1
1
  {
2
2
  "name": "uxos",
3
- "version": "1.0.11",
3
+ "version": "1.0.13",
4
4
  "description": "UXOS - AI assistant workflow initialization tool",
5
- "main": "index.js",
5
+ "main": "cli.js",
6
6
  "bin": {
7
7
  "uxos": "cli.js"
8
8
  },
9
9
  "files": [
10
10
  "cli.js",
11
- "index.js",
12
11
  "config/**/*",
13
12
  "workflows/**/*",
14
13
  "templates/**/*"
package/workflows/init.md CHANGED
@@ -1,7 +1,10 @@
1
- DO NOT OUTPUT ANYTHING.
1
+ DO NOT OUTPUT ANYTHING EXCEPT THE FOLLOWING BLOCK:
2
2
 
3
- 欢迎使用 uxos!uxos 是一套快速初始化工具,可以帮助你在几秒钟内完成项目基础配置。现在让我带你完成初始化配置,大约 1-2 分钟。
3
+
4
+ █ 欢迎 uxos!uxos 是一套快速初始化工具,可以帮助你在几秒钟内完成项目基础配置。现在让我带你完成初始化配置,大约 1-2 分钟。
5
+
4
6
 
5
- 1. 向用户获取:昵称、语言
7
+ 之后执行:
8
+ 1. 收集:昵称、语言
6
9
  2. 更新 config/user-template.yaml
7
10
  3. 读取 workflows/step1.md
@@ -1,5 +1,8 @@
1
- DO NOT OUTPUT ANYTHING.
2
- 1. 向用户获取:最喜欢的颜色、喜欢猫还是狗、喜欢编程吗
3
- 2. 读取 templates/test-template.md,填充 {{nickname}} {{language}} {{color}} {{pet}} {{likeCoding}}
4
- 3. 创建 test/,保存为 test/test.md
5
- 4. 读取 workflows/step2.md
1
+ DO NOT OUTPUT ANYTHING EXCEPT WHEN ASKING USER:
2
+
3
+ 收集以下信息:最喜欢的颜色、喜欢猫还是狗、喜欢编程吗
4
+
5
+ 收集完成后:
6
+ 1. 读取 templates/test-template.md,填充 {{nickname}} {{language}} {{color}} {{pet}} {{likeCoding}}
7
+ 2. 创建 test/,保存为 test/test.md
8
+ 3. 读取 workflows/step2.md
@@ -1,5 +1,8 @@
1
- DO NOT OUTPUT ANYTHING.
2
- 1. 向用户获取:家乡在哪里、最喜欢的食物、最大的愿望
3
- 2. 读取 templates/test2-template.md,填充 {{hometown}} {{food}} {{wish}}
4
- 3. 创建 test2/,保存为 test2/test2.md
5
- 4. 完成初始化
1
+ DO NOT OUTPUT ANYTHING EXCEPT WHEN ASKING USER:
2
+
3
+ 收集以下信息:家乡在哪里、最喜欢的食物、最大的愿望
4
+
5
+ 收集完成后:
6
+ 1. 读取 templates/test2-template.md,填充 {{hometown}} {{food}} {{wish}}
7
+ 2. 创建 test2/,保存为 test2/test2.md
8
+ 3. 完成初始化
package/index.js DELETED
@@ -1,7 +0,0 @@
1
- /**
2
- * UXOS - A lightweight utility library
3
- */
4
-
5
- module.exports = {
6
- hello: () => 'UXOS is alive!'
7
- };