@involvex/super-agent-cli 0.0.50 → 0.0.59
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/@plugins/README.md +106 -0
- package/@plugins/examples/notify/README.md +43 -0
- package/@plugins/examples/notify/package.json +27 -0
- package/@plugins/examples/weather/README.md +76 -0
- package/@plugins/examples/weather/package.json +27 -0
- package/@plugins/shared/types.ts +27 -0
- package/@plugins/templates/basic/README.md +50 -0
- package/@plugins/templates/basic/package.json +25 -0
- package/README.md +53 -2
- package/dist/index.js +5319 -4153
- package/dist/super-agent-cli.exe +0 -0
- package/package.json +7 -4
package/dist/super-agent-cli.exe
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@involvex/super-agent-cli",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.59",
|
|
4
4
|
"description": "An open-source AI agent that brings the power of Super Agent directly into your terminal.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli",
|
|
@@ -38,8 +38,8 @@
|
|
|
38
38
|
"format": "prettier --write .",
|
|
39
39
|
"format:check": "prettier --check .",
|
|
40
40
|
"install:bun": "bun install",
|
|
41
|
-
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
|
|
42
|
-
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
|
|
41
|
+
"lint": "eslint . --ext .js,.jsx,.ts,.tsx --ignore-pattern dist",
|
|
42
|
+
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix --ignore-pattern dist",
|
|
43
43
|
"start": "node dist/index.js",
|
|
44
44
|
"start:bun": "bun run dist/index.js",
|
|
45
45
|
"typecheck": "tsc --noEmit"
|
|
@@ -59,15 +59,18 @@
|
|
|
59
59
|
"marked": "^17.0.1",
|
|
60
60
|
"marked-terminal": "^7.3.0",
|
|
61
61
|
"mime": "^4.1.0",
|
|
62
|
+
"open": "^11.0.0",
|
|
62
63
|
"openai": "^6.17.0",
|
|
63
64
|
"react": "^19.2.4",
|
|
64
65
|
"ripgrep-node": "^1.0.0",
|
|
65
|
-
"tiktoken": "^1.0.22"
|
|
66
|
+
"tiktoken": "^1.0.22",
|
|
67
|
+
"ws": "^8.19.0"
|
|
66
68
|
},
|
|
67
69
|
"devDependencies": {
|
|
68
70
|
"@types/fs-extra": "^11.0.4",
|
|
69
71
|
"@types/node": "^25.1.0",
|
|
70
72
|
"@types/react": "18.3.3",
|
|
73
|
+
"@types/ws": "^8.18.1",
|
|
71
74
|
"@typescript-eslint/eslint-plugin": "^8.54.0",
|
|
72
75
|
"@typescript-eslint/parser": "^8.54.0",
|
|
73
76
|
"eslint": "^9.39.2",
|