@scheduler-systems/gal-run 0.0.552 → 0.0.553
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/README.md +0 -35
- package/dist/index.cjs +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -51,41 +51,6 @@ gal sync --status
|
|
|
51
51
|
gal discover
|
|
52
52
|
```
|
|
53
53
|
|
|
54
|
-
## Internal Preview
|
|
55
|
-
|
|
56
|
-
`gal code` is currently an internal-only command gated behind the existing
|
|
57
|
-
internal audience tier. It does a live `GET /auth/me` check before launch, so
|
|
58
|
-
authenticated non-internal users are rejected even if they guess the command.
|
|
59
|
-
The production request path is `gal code -> GAL API proxy -> Vertex`, not
|
|
60
|
-
direct client access to Vertex.
|
|
61
|
-
|
|
62
|
-
Current local preview flow:
|
|
63
|
-
|
|
64
|
-
```bash
|
|
65
|
-
cd /Users/scheduler-systems/Documents/scheduler-systems/products/gal-run-private
|
|
66
|
-
pnpm build:gal-code
|
|
67
|
-
pnpm build:cli
|
|
68
|
-
GAL_NO_AUTO_UPDATE=1 \
|
|
69
|
-
GAL_ACCEPT_TERMS=true \
|
|
70
|
-
node apps/cli/dist/index.cjs code --version
|
|
71
|
-
```
|
|
72
|
-
|
|
73
|
-
Manual smoke test:
|
|
74
|
-
|
|
75
|
-
```bash
|
|
76
|
-
cd /Users/scheduler-systems/Documents/scheduler-systems/products/gal-run-private
|
|
77
|
-
GAL_NO_AUTO_UPDATE=1 \
|
|
78
|
-
GAL_ACCEPT_TERMS=true \
|
|
79
|
-
node apps/cli/dist/index.cjs code
|
|
80
|
-
```
|
|
81
|
-
|
|
82
|
-
Expected behavior:
|
|
83
|
-
|
|
84
|
-
- startup lands in GAL Code with `Model gal`
|
|
85
|
-
- `/model` shows `Current model gal`
|
|
86
|
-
- non-internal authenticated users get `GAL Code requires membership in an org with internal audienceTier`
|
|
87
|
-
- prompt traffic goes to `https://api.gal.run/api/gal-code/v1/chat/completions`
|
|
88
|
-
|
|
89
54
|
## Supported Platforms
|
|
90
55
|
|
|
91
56
|
- Claude Code (`.claude/`)
|
package/dist/index.cjs
CHANGED
|
@@ -3955,7 +3955,7 @@ var cliVersion, defaultApiUrl, BUILD_CONSTANTS, constants_default;
|
|
|
3955
3955
|
var init_constants = __esm({
|
|
3956
3956
|
"module_6"() {
|
|
3957
3957
|
"use strict";
|
|
3958
|
-
cliVersion = true ? "0.0.
|
|
3958
|
+
cliVersion = true ? "0.0.553" : "0.0.0-dev";
|
|
3959
3959
|
defaultApiUrl = true ? "https://api.gal.run" : "http://localhost:3000";
|
|
3960
3960
|
BUILD_CONSTANTS = Object.freeze([cliVersion, defaultApiUrl]);
|
|
3961
3961
|
constants_default = BUILD_CONSTANTS;
|
|
@@ -3986,7 +3986,7 @@ function detectEnvironment() {
|
|
|
3986
3986
|
return "dev";
|
|
3987
3987
|
}
|
|
3988
3988
|
try {
|
|
3989
|
-
const version2 = true ? "0.0.
|
|
3989
|
+
const version2 = true ? "0.0.553" : void 0;
|
|
3990
3990
|
if (version2 && version2.includes("-local")) {
|
|
3991
3991
|
return "dev";
|
|
3992
3992
|
}
|
|
@@ -14386,7 +14386,7 @@ function getId() {
|
|
|
14386
14386
|
}
|
|
14387
14387
|
function getCliVersion() {
|
|
14388
14388
|
try {
|
|
14389
|
-
return true ? "0.0.
|
|
14389
|
+
return true ? "0.0.553" : "0.0.0-dev";
|
|
14390
14390
|
} catch {
|
|
14391
14391
|
return "0.0.0-dev";
|
|
14392
14392
|
}
|
|
@@ -80445,7 +80445,7 @@ var init_index = __esm({
|
|
|
80445
80445
|
}
|
|
80446
80446
|
});
|
|
80447
80447
|
|
|
80448
|
-
var cliVersion11 = true ? "0.0.
|
|
80448
|
+
var cliVersion11 = true ? "0.0.553" : "0.0.0-dev";
|
|
80449
80449
|
var args = process.argv.slice(2);
|
|
80450
80450
|
var requestedGlobalHelp = args.length === 1 && (args[0] === "--help" || args[0] === "-h");
|
|
80451
80451
|
var requestedVersion = args.length === 1 && (args[0] === "--version" || args[0] === "-V");
|
package/package.json
CHANGED