@archon-claw/cli 0.2.0 → 0.2.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/dist/cli.js +0 -0
- package/package.json +15 -15
package/dist/cli.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,20 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@archon-claw/cli",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "AI Agent CLI",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"archon-claw": "./dist/cli.js"
|
|
8
8
|
},
|
|
9
|
-
"scripts": {
|
|
10
|
-
"build": "tsc -p tsconfig.build.json && cp -r templates dist/ && rm -rf dist/public && cp -r ../web/dist dist/public",
|
|
11
|
-
"dev": "tsx src/cli.ts start examples/my-agent",
|
|
12
|
-
"start": "node dist/cli.js",
|
|
13
|
-
"test": "vitest run --exclude dist --exclude examples",
|
|
14
|
-
"test:watch": "vitest --exclude dist --exclude examples",
|
|
15
|
-
"e2e": "playwright test",
|
|
16
|
-
"e2e:ui": "playwright test --ui"
|
|
17
|
-
},
|
|
18
9
|
"files": [
|
|
19
10
|
"dist"
|
|
20
11
|
],
|
|
@@ -23,17 +14,16 @@
|
|
|
23
14
|
},
|
|
24
15
|
"license": "MIT",
|
|
25
16
|
"devDependencies": {
|
|
26
|
-
"@archon-claw/web": "workspace:*",
|
|
27
17
|
"@playwright/test": "^1.58.2",
|
|
28
18
|
"@types/node": "^25.3.3",
|
|
29
19
|
"@types/picomatch": "^4.0.2",
|
|
30
20
|
"@vitest/coverage-v8": "^4.0.18",
|
|
31
21
|
"tsx": "^4.21.0",
|
|
32
22
|
"typescript": "^5.9.3",
|
|
33
|
-
"vitest": "^4.0.18"
|
|
23
|
+
"vitest": "^4.0.18",
|
|
24
|
+
"@archon-claw/web": "0.1.0"
|
|
34
25
|
},
|
|
35
26
|
"dependencies": {
|
|
36
|
-
"@archon-claw/skills": "workspace:*",
|
|
37
27
|
"@clack/prompts": "^1.1.0",
|
|
38
28
|
"@modelcontextprotocol/sdk": "^1.27.1",
|
|
39
29
|
"chokidar": "^5.0.0",
|
|
@@ -44,6 +34,16 @@
|
|
|
44
34
|
"open": "^10.2.0",
|
|
45
35
|
"openai": "^6.25.0",
|
|
46
36
|
"picomatch": "^4.0.3",
|
|
47
|
-
"zod": "^3.25.76"
|
|
37
|
+
"zod": "^3.25.76",
|
|
38
|
+
"@archon-claw/skills": "0.2.1"
|
|
39
|
+
},
|
|
40
|
+
"scripts": {
|
|
41
|
+
"build": "tsc -p tsconfig.build.json && cp -r templates dist/ && rm -rf dist/public && cp -r ../web/dist dist/public",
|
|
42
|
+
"dev": "tsx src/cli.ts start examples/my-agent",
|
|
43
|
+
"start": "node dist/cli.js",
|
|
44
|
+
"test": "vitest run --exclude dist --exclude examples",
|
|
45
|
+
"test:watch": "vitest --exclude dist --exclude examples",
|
|
46
|
+
"e2e": "playwright test",
|
|
47
|
+
"e2e:ui": "playwright test --ui"
|
|
48
48
|
}
|
|
49
|
-
}
|
|
49
|
+
}
|