@actionway/cli 0.17.0 → 0.17.1
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 +51 -0
- package/assets/skill/actionway/SKILL.md +55 -0
- package/assets/skill/actionway/agents/openai.yaml +4 -0
- package/dist/index.js +13446 -0
- package/package.json +23 -15
- package/actionway.mjs +0 -2
- package/skills/actionway/SKILL.md +0 -44
- package/skills/actionway/agents/openai.yaml +0 -4
package/package.json
CHANGED
|
@@ -1,26 +1,34 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@actionway/cli",
|
|
3
|
-
"version": "0.17.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.17.1",
|
|
4
|
+
"description": "actionway CLI 的本地端壳:Clerk OAuth 鉴权 + cli-core 共享命令面 + init / update / skill 物化 / 版本三链路(终端用户本地 Codex / Claude Code 使用)",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"homepage": "https://actionway.ai/onboarding",
|
|
7
6
|
"bin": {
|
|
8
|
-
"actionway": "
|
|
7
|
+
"actionway": "./dist/index.js"
|
|
9
8
|
},
|
|
10
9
|
"files": [
|
|
11
|
-
"
|
|
12
|
-
"
|
|
10
|
+
"dist",
|
|
11
|
+
"assets",
|
|
12
|
+
"README.md"
|
|
13
13
|
],
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
|
|
17
|
-
|
|
14
|
+
"devDependencies": {
|
|
15
|
+
"@sinclair/typebox": "^0.34.48",
|
|
16
|
+
"@types/node": "^24.0.0",
|
|
17
|
+
"commander": "^12.1.0",
|
|
18
|
+
"esbuild": "^0.28.1",
|
|
19
|
+
"tsx": "^4.20.0",
|
|
20
|
+
"typescript": "7.0.2",
|
|
21
|
+
"vitest": "^3.2.7",
|
|
22
|
+
"@actionway/cli-core": "0.1.0",
|
|
23
|
+
"@actionway/contracts": "0.1.0"
|
|
18
24
|
},
|
|
19
25
|
"engines": {
|
|
20
|
-
"node": ">=20
|
|
26
|
+
"node": ">=20"
|
|
21
27
|
},
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"
|
|
28
|
+
"scripts": {
|
|
29
|
+
"build": "esbuild src/index.ts --bundle --platform=node --format=esm --target=node20 --outfile=dist/index.js --banner:js='import { createRequire } from \"node:module\"; const require = createRequire(import.meta.url);'",
|
|
30
|
+
"dev": "tsx src/index.ts",
|
|
31
|
+
"test": "vitest --run",
|
|
32
|
+
"typecheck": "tsc -p tsconfig.json --noEmit"
|
|
25
33
|
}
|
|
26
|
-
}
|
|
34
|
+
}
|