@crewx/cli 0.9.0-rc.4 → 0.9.0-rc.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 +6 -0
- package/package.json +8 -8
package/dist/main.js
CHANGED
|
@@ -46,8 +46,14 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
46
46
|
// ─── P0-1: Env Bootstrap ─────────────────────────────────────────────────────
|
|
47
47
|
// Must run before any other code that might use process.env.CREWX_CLI.
|
|
48
48
|
const env_defaults_1 = require("./utils/env-defaults");
|
|
49
|
+
const sdk_1 = require("@crewx/sdk");
|
|
49
50
|
process.env.CREWX_CLI ??= (0, env_defaults_1.resolveCrewxCli)();
|
|
50
51
|
process.env.CREWX_WORKSPACE ??= (0, env_defaults_1.resolveCrewxWorkspace)();
|
|
52
|
+
// ─── Pricing remote override (WI-20260701-002) ───────────────────────────────
|
|
53
|
+
// Best-effort, non-blocking: fetch remote model registry so new models get
|
|
54
|
+
// accurate pricing without a CLI republish. Falls back to bundled table on
|
|
55
|
+
// failure / offline. Browser entry does not call this automatically.
|
|
56
|
+
void (0, sdk_1.initPricingRemote)();
|
|
51
57
|
// ─── Command Imports ──────────────────────────────────────────────────────────
|
|
52
58
|
const query_1 = require("./commands/query");
|
|
53
59
|
const execute_1 = require("./commands/execute");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@crewx/cli",
|
|
3
|
-
"version": "0.9.0-rc.
|
|
3
|
+
"version": "0.9.0-rc.6",
|
|
4
4
|
"license": "UNLICENSED",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=20.19.0"
|
|
@@ -24,17 +24,17 @@
|
|
|
24
24
|
"@crewx/adapter-slack": "0.1.4",
|
|
25
25
|
"better-sqlite3": "*",
|
|
26
26
|
"isomorphic-git": "1.37.1",
|
|
27
|
-
"@crewx/
|
|
28
|
-
"@crewx/sdk": "0.9.0-rc.4",
|
|
27
|
+
"@crewx/sdk": "0.9.0-rc.6",
|
|
29
28
|
"@crewx/search": "0.1.10",
|
|
30
|
-
"@crewx/cron": "0.1.10",
|
|
31
|
-
"@crewx/workflow": "0.3.22",
|
|
32
29
|
"@crewx/doc": "0.1.9",
|
|
30
|
+
"@crewx/cron": "0.1.10",
|
|
33
31
|
"@crewx/skill": "0.1.20",
|
|
34
|
-
"@crewx/
|
|
32
|
+
"@crewx/workflow": "0.3.22-rc.52",
|
|
33
|
+
"@crewx/shared": "0.0.6",
|
|
35
34
|
"@crewx/chromex": "0.1.0",
|
|
36
|
-
"@crewx/
|
|
37
|
-
"@crewx/
|
|
35
|
+
"@crewx/wbs": "0.1.10",
|
|
36
|
+
"@crewx/memory": "0.1.23",
|
|
37
|
+
"@crewx/wi": "0.1.10"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
40
|
"@types/better-sqlite3": "*",
|