@nomad-e/bluma-cli 0.0.29 → 0.0.31
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 +1 -3
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -2348,7 +2348,7 @@ ${editData.error.display}`;
|
|
|
2348
2348
|
|
|
2349
2349
|
// src/app/agent/subagents/init/init_subagent.ts
|
|
2350
2350
|
var InitAgentImpl = class extends BaseLLMSubAgent {
|
|
2351
|
-
id =
|
|
2351
|
+
id = `init_${Date.now()}`;
|
|
2352
2352
|
capabilities = ["/init"];
|
|
2353
2353
|
async execute(input, ctx) {
|
|
2354
2354
|
this.ctx = ctx;
|
|
@@ -3012,8 +3012,6 @@ async function checkForUpdates() {
|
|
|
3012
3012
|
}
|
|
3013
3013
|
if (!pkg?.name || !pkg?.version) return null;
|
|
3014
3014
|
const isCI = Boolean(process.env.CI);
|
|
3015
|
-
const isNoCache = process.env.BLUMA_UPDATE_NO_CACHE === "1";
|
|
3016
|
-
const isDev = process.env.NODE_ENV !== "production";
|
|
3017
3015
|
const updateCheckInterval = 0;
|
|
3018
3016
|
const notifier = updateNotifier({
|
|
3019
3017
|
pkg: { name: pkg.name, version: pkg.version },
|