@involvex/super-agent-cli 0.0.59 → 0.0.61
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/.gitmodules +3 -0
- package/dist/index.js +6 -1
- package/dist/super-agent-cli.exe +0 -0
- package/eslint.config.mjs +11 -0
- package/package.json +6 -1
package/.gitmodules
ADDED
package/dist/index.js
CHANGED
|
@@ -540,7 +540,7 @@ var init_indexer = __esm(() => {
|
|
|
540
540
|
var require_package = __commonJS((exports, module) => {
|
|
541
541
|
module.exports = {
|
|
542
542
|
name: "@involvex/super-agent-cli",
|
|
543
|
-
version: "0.0.
|
|
543
|
+
version: "0.0.61",
|
|
544
544
|
description: "An open-source AI agent that brings the power of Super Agent directly into your terminal.",
|
|
545
545
|
keywords: [
|
|
546
546
|
"cli",
|
|
@@ -567,10 +567,15 @@ var require_package = __commonJS((exports, module) => {
|
|
|
567
567
|
bin: {
|
|
568
568
|
"super-agent": "dist/index.js"
|
|
569
569
|
},
|
|
570
|
+
workspaces: [
|
|
571
|
+
"@plugins/templates/*",
|
|
572
|
+
"@plugins/examples/*"
|
|
573
|
+
],
|
|
570
574
|
scripts: {
|
|
571
575
|
prebuild: "bun run format && bun run lint:fix && bun run typecheck",
|
|
572
576
|
build: "bun build src/index.ts --outdir ./dist --target node --packages external --format esm",
|
|
573
577
|
"build:bun": "bun build src/index.ts --outdir ./dist --target node --packages external --format esm",
|
|
578
|
+
"build:plugins": "bun run -F @involvex/super-agent\\* build",
|
|
574
579
|
changelog: "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
|
|
575
580
|
compile: "bun run prebuild && bun build --compile src/index.ts --outfile ./dist/super-agent-cli.exe --config bunfig.toml",
|
|
576
581
|
dev: "bun run --watch src/index.ts",
|
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.61",
|
|
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",
|