wjx-cli 0.1.14 → 0.1.16
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/README.md +12 -2
- package/bundled/wjx-cli-use/SKILL.md +109 -119
- package/bundled/wjx-cli-use/references/analytics-commands.md +1 -1
- package/bundled/wjx-cli-use/references/contacts-commands.md +17 -7
- package/bundled/wjx-cli-use/references/dsl-syntax.md +57 -1
- package/bundled/wjx-cli-use/references/response-commands.md +1 -1
- package/bundled/wjx-cli-use/references/survey-commands.md +1 -1
- package/dist/commands/account.js +1 -1
- package/dist/commands/account.js.map +1 -1
- package/dist/commands/admin.js +2 -2
- package/dist/commands/admin.js.map +1 -1
- package/dist/commands/analytics.js +3 -3
- package/dist/commands/analytics.js.map +1 -1
- package/dist/commands/contacts.js +2 -2
- package/dist/commands/contacts.js.map +1 -1
- package/dist/commands/department.js +4 -4
- package/dist/commands/department.js.map +1 -1
- package/dist/commands/init.js +4 -0
- package/dist/commands/init.js.map +1 -1
- package/dist/commands/reference.js +33 -8
- package/dist/commands/reference.js.map +1 -1
- package/dist/commands/response.js +8 -6
- package/dist/commands/response.js.map +1 -1
- package/dist/commands/survey.js +8 -8
- package/dist/commands/survey.js.map +1 -1
- package/dist/commands/tag.js +4 -4
- package/dist/commands/tag.js.map +1 -1
- package/dist/commands/user-system.js +19 -6
- package/dist/commands/user-system.js.map +1 -1
- package/dist/lib/command-helpers.d.ts +9 -0
- package/dist/lib/command-helpers.js +26 -1
- package/dist/lib/command-helpers.js.map +1 -1
- package/package.json +44 -44
package/package.json
CHANGED
|
@@ -1,44 +1,44 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "wjx-cli",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "问卷星 (Wenjuanxing) CLI — AI Agent 原生命令行工具",
|
|
5
|
-
"main": "dist/index.js",
|
|
6
|
-
"bin": {
|
|
7
|
-
"wjx": "dist/index.js"
|
|
8
|
-
},
|
|
9
|
-
"files": [
|
|
10
|
-
"dist",
|
|
11
|
-
"bundled"
|
|
12
|
-
],
|
|
13
|
-
"engines": {
|
|
14
|
-
"node": ">=20"
|
|
15
|
-
},
|
|
16
|
-
"scripts": {
|
|
17
|
-
"build": "npx tsc -p tsconfig.json",
|
|
18
|
-
"test": "npm run build && node --test __tests__/*.test.mjs",
|
|
19
|
-
"clean": "rm -rf dist",
|
|
20
|
-
"prepublishOnly": "npm run build"
|
|
21
|
-
},
|
|
22
|
-
"keywords": [
|
|
23
|
-
"wjx",
|
|
24
|
-
"wenjuanxing",
|
|
25
|
-
"survey",
|
|
26
|
-
"cli"
|
|
27
|
-
],
|
|
28
|
-
"author": "wjxagents",
|
|
29
|
-
"license": "MIT",
|
|
30
|
-
"type": "module",
|
|
31
|
-
"repository": {
|
|
32
|
-
"type": "git",
|
|
33
|
-
"url": "https://github.com/wjxcom/wjx-ai-kit.git",
|
|
34
|
-
"directory": "wjx-cli"
|
|
35
|
-
},
|
|
36
|
-
"dependencies": {
|
|
37
|
-
"commander": "^14.0.3",
|
|
38
|
-
"wjx-api-sdk": "*"
|
|
39
|
-
},
|
|
40
|
-
"devDependencies": {
|
|
41
|
-
"@types/node": "^25.5.0",
|
|
42
|
-
"typescript": "^6.0.2"
|
|
43
|
-
}
|
|
44
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "wjx-cli",
|
|
3
|
+
"version": "0.1.16",
|
|
4
|
+
"description": "问卷星 (Wenjuanxing) CLI — AI Agent 原生命令行工具",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"bin": {
|
|
7
|
+
"wjx": "dist/index.js"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist",
|
|
11
|
+
"bundled"
|
|
12
|
+
],
|
|
13
|
+
"engines": {
|
|
14
|
+
"node": ">=20"
|
|
15
|
+
},
|
|
16
|
+
"scripts": {
|
|
17
|
+
"build": "npx tsc -p tsconfig.json",
|
|
18
|
+
"test": "npm run build && node --test __tests__/*.test.mjs",
|
|
19
|
+
"clean": "rm -rf dist",
|
|
20
|
+
"prepublishOnly": "npm run build"
|
|
21
|
+
},
|
|
22
|
+
"keywords": [
|
|
23
|
+
"wjx",
|
|
24
|
+
"wenjuanxing",
|
|
25
|
+
"survey",
|
|
26
|
+
"cli"
|
|
27
|
+
],
|
|
28
|
+
"author": "wjxagents",
|
|
29
|
+
"license": "MIT",
|
|
30
|
+
"type": "module",
|
|
31
|
+
"repository": {
|
|
32
|
+
"type": "git",
|
|
33
|
+
"url": "https://github.com/wjxcom/wjx-ai-kit.git",
|
|
34
|
+
"directory": "wjx-cli"
|
|
35
|
+
},
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"commander": "^14.0.3",
|
|
38
|
+
"wjx-api-sdk": "*"
|
|
39
|
+
},
|
|
40
|
+
"devDependencies": {
|
|
41
|
+
"@types/node": "^25.5.0",
|
|
42
|
+
"typescript": "^6.0.2"
|
|
43
|
+
}
|
|
44
|
+
}
|