@nomad-e/bluma-cli 0.5.4 → 0.5.6
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/main.js +10 -6
- package/package.json +16 -1
package/dist/main.js
CHANGED
|
@@ -2779,7 +2779,7 @@ import { closeSync as closeSync2, constants as fsConstants, openSync as openSync
|
|
|
2779
2779
|
import noop3 from "lodash-es/noop.js";
|
|
2780
2780
|
import throttle from "lodash-es/throttle.js";
|
|
2781
2781
|
import { ConcurrentRoot } from "react-reconciler/constants.js";
|
|
2782
|
-
import
|
|
2782
|
+
import { onExit } from "signal-exit";
|
|
2783
2783
|
|
|
2784
2784
|
// src/native-ts/yoga-layout/index.ts
|
|
2785
2785
|
import YogaDefault, {
|
|
@@ -3038,7 +3038,7 @@ function stopCapturingEarlyInput() {
|
|
|
3038
3038
|
}
|
|
3039
3039
|
|
|
3040
3040
|
// src/utils/execFileNoThrow.ts
|
|
3041
|
-
import execa2 from "execa";
|
|
3041
|
+
import { execa as execa2 } from "execa";
|
|
3042
3042
|
|
|
3043
3043
|
// src/utils/cwd.ts
|
|
3044
3044
|
import { AsyncLocalStorage } from "async_hooks";
|
|
@@ -3055,7 +3055,7 @@ function getCwd() {
|
|
|
3055
3055
|
}
|
|
3056
3056
|
|
|
3057
3057
|
// src/utils/execFileNoThrowPortable.ts
|
|
3058
|
-
import execa from "execa";
|
|
3058
|
+
import { execa } from "execa";
|
|
3059
3059
|
|
|
3060
3060
|
// src/utils/execFileNoThrow.ts
|
|
3061
3061
|
var MS_IN_SECOND = 1e3;
|
|
@@ -7354,7 +7354,7 @@ function isRunningWithBun() {
|
|
|
7354
7354
|
}
|
|
7355
7355
|
|
|
7356
7356
|
// src/utils/which.ts
|
|
7357
|
-
import execa3 from "execa";
|
|
7357
|
+
import { execa as execa3 } from "execa";
|
|
7358
7358
|
|
|
7359
7359
|
// src/utils/execSyncWrapper.ts
|
|
7360
7360
|
import {
|
|
@@ -10961,7 +10961,7 @@ var Ink = class {
|
|
|
10961
10961
|
trailing: true
|
|
10962
10962
|
});
|
|
10963
10963
|
this.isUnmounted = false;
|
|
10964
|
-
this.unsubscribeExit =
|
|
10964
|
+
this.unsubscribeExit = onExit((() => this.unmount()), {
|
|
10965
10965
|
alwaysLast: false
|
|
10966
10966
|
});
|
|
10967
10967
|
if (options.stdout.isTTY) {
|
|
@@ -30982,7 +30982,7 @@ function renderToolUseMessage7({ args }) {
|
|
|
30982
30982
|
const waitSeconds = typeof args?.wait_seconds === "number" ? args.wait_seconds : null;
|
|
30983
30983
|
if (waitSeconds == null) return null;
|
|
30984
30984
|
return /* @__PURE__ */ jsx34(Box_default, { marginLeft: 1, children: /* @__PURE__ */ jsxs21(Text, { color: BLUMA_TERMINAL.m3OnSurface, children: [
|
|
30985
|
-
"
|
|
30985
|
+
"Waiting ",
|
|
30986
30986
|
/* @__PURE__ */ jsxs21(Text, { color: BLUMA_TERMINAL.m3OnSurface, children: [
|
|
30987
30987
|
waitSeconds,
|
|
30988
30988
|
"s"
|
|
@@ -42994,6 +42994,10 @@ function startBackgroundAgent() {
|
|
|
42994
42994
|
console.log(sessionId);
|
|
42995
42995
|
}
|
|
42996
42996
|
var argv = process.argv.slice(2);
|
|
42997
|
+
if (argv.includes("--version") || argv.includes("-v")) {
|
|
42998
|
+
console.log(readCliPackageVersion());
|
|
42999
|
+
process.exit(0);
|
|
43000
|
+
}
|
|
42997
43001
|
if (argv[0] === "agent" && argv.includes("--background")) {
|
|
42998
43002
|
startBackgroundAgent();
|
|
42999
43003
|
} else if (argv[0] === "agent") {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nomad-e/bluma-cli",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.6",
|
|
4
4
|
"description": "BluMa independent agent for automation and advanced software engineering.",
|
|
5
5
|
"author": "Alex Fonseca",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -53,6 +53,7 @@
|
|
|
53
53
|
"test:watch": "jest --watch",
|
|
54
54
|
"test:parallel": "node scripts/test-parallel.js",
|
|
55
55
|
"test:parallel:fast": "TEST_WORKERS=8 node scripts/test-parallel.js",
|
|
56
|
+
"test:pack": "node scripts/test-pack.js",
|
|
56
57
|
"lint": "eslint src --ext .ts,.tsx",
|
|
57
58
|
"lint:fix": "eslint src --ext .ts,.tsx --fix",
|
|
58
59
|
"prepack": "npm run build",
|
|
@@ -76,24 +77,38 @@
|
|
|
76
77
|
"axios": "^1.16.0",
|
|
77
78
|
"bidi-js": "^1.0.3",
|
|
78
79
|
"chalk": "^5.5.0",
|
|
80
|
+
"class-variance-authority": "^0.7.1",
|
|
81
|
+
"cli-boxes": "^4.0.1",
|
|
79
82
|
"clipboardy": "^5.3.1",
|
|
83
|
+
"clsx": "^2.1.1",
|
|
84
|
+
"code-excerpt": "^4.0.0",
|
|
80
85
|
"diff": "^8.0.2",
|
|
81
86
|
"dotenv": "^16.4.5",
|
|
82
87
|
"emoji-regex": "^10.6.0",
|
|
83
88
|
"env-paths": "^4.0.0",
|
|
89
|
+
"execa": "^9.6.1",
|
|
90
|
+
"get-east-asian-width": "^1.6.0",
|
|
91
|
+
"indent-string": "^5.0.0",
|
|
84
92
|
"jquery": "^4.0.0",
|
|
85
93
|
"js-tiktoken": "^1.0.21",
|
|
86
94
|
"latest-version": "^9.0.0",
|
|
87
95
|
"lodash-es": "^4.18.1",
|
|
88
96
|
"marked": "^16.1.2",
|
|
97
|
+
"next": "^16.2.6",
|
|
89
98
|
"openai": "^4.47.3",
|
|
90
99
|
"react": "^19.2.5",
|
|
91
100
|
"react-dom": "^19.2.5",
|
|
92
101
|
"react-reconciler": "^0.31.0",
|
|
93
102
|
"read-package-up": "^11.0.0",
|
|
94
103
|
"semver": "^7.7.4",
|
|
104
|
+
"signal-exit": "^4.1.0",
|
|
105
|
+
"stack-utils": "^2.0.6",
|
|
106
|
+
"strip-ansi": "^7.2.0",
|
|
107
|
+
"tailwind-merge": "^3.5.0",
|
|
108
|
+
"tailwindcss": "^4.2.4",
|
|
95
109
|
"usehooks-ts": "^3.1.1",
|
|
96
110
|
"uuid": "^9.0.1",
|
|
111
|
+
"wrap-ansi": "^10.0.0",
|
|
97
112
|
"yoga-layout": "^3.2.1"
|
|
98
113
|
},
|
|
99
114
|
"files": [
|