@involvex/super-agent-cli 0.0.60 → 0.0.62
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/index.js +1193 -696
- package/dist/super-agent-cli.exe +0 -0
- package/eslint.config.mjs +11 -0
- package/package.json +9 -1
- package/tsc_output.txt +2 -0
package/dist/super-agent-cli.exe
CHANGED
|
Binary file
|
package/eslint.config.mjs
CHANGED
|
@@ -1,6 +1,17 @@
|
|
|
1
1
|
import typescriptEslint from "typescript-eslint";
|
|
2
2
|
|
|
3
3
|
export default [
|
|
4
|
+
{
|
|
5
|
+
ignores: [
|
|
6
|
+
"dist",
|
|
7
|
+
"@plugins/examples/*/dist/*",
|
|
8
|
+
"@plugins/templates/*/dist/*",
|
|
9
|
+
"@plugins/examples/*/dist/*.js",
|
|
10
|
+
"@plugins/templates/*/dist/*.js",
|
|
11
|
+
"@plugins/examples/*/dist/*.js.map",
|
|
12
|
+
"@plugins/templates/*/dist/*.js.map",
|
|
13
|
+
],
|
|
14
|
+
},
|
|
4
15
|
{
|
|
5
16
|
files: ["**/*.ts"],
|
|
6
17
|
},
|
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.62",
|
|
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",
|
|
@@ -27,10 +27,15 @@
|
|
|
27
27
|
"bin": {
|
|
28
28
|
"super-agent": "dist/index.js"
|
|
29
29
|
},
|
|
30
|
+
"workspaces": [
|
|
31
|
+
"@plugins/templates/*",
|
|
32
|
+
"@plugins/examples/*"
|
|
33
|
+
],
|
|
30
34
|
"scripts": {
|
|
31
35
|
"prebuild": "bun run format && bun run lint:fix && bun run typecheck",
|
|
32
36
|
"build": "bun build src/index.ts --outdir ./dist --target node --packages external --format esm",
|
|
33
37
|
"build:bun": "bun build src/index.ts --outdir ./dist --target node --packages external --format esm",
|
|
38
|
+
"build:plugins": "bun run -F @involvex/super-agent\\* build",
|
|
34
39
|
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
|
|
35
40
|
"compile": "bun run prebuild && bun build --compile src/index.ts --outfile ./dist/super-agent-cli.exe --config bunfig.toml",
|
|
36
41
|
"dev": "bun run --watch src/index.ts",
|
|
@@ -47,6 +52,7 @@
|
|
|
47
52
|
"dependencies": {
|
|
48
53
|
"@google/generative-ai": "^0.24.1",
|
|
49
54
|
"@modelcontextprotocol/sdk": "^1.25.3",
|
|
55
|
+
"@types/mime": "^4.0.0",
|
|
50
56
|
"axios": "^1.13.4",
|
|
51
57
|
"cfonts": "^3.3.1",
|
|
52
58
|
"chalk": "^5.6.2",
|
|
@@ -55,7 +61,9 @@
|
|
|
55
61
|
"dotenv": "^17.2.3",
|
|
56
62
|
"enquirer": "^2.4.1",
|
|
57
63
|
"fs-extra": "^11.3.3",
|
|
64
|
+
"ignore": "^7.0.5",
|
|
58
65
|
"ink": "^6.6.0",
|
|
66
|
+
"inquirer": "^13.2.2",
|
|
59
67
|
"marked": "^17.0.1",
|
|
60
68
|
"marked-terminal": "^7.3.0",
|
|
61
69
|
"mime": "^4.1.0",
|
package/tsc_output.txt
ADDED