@scheduler-systems/gal-run 0.0.529 → 0.0.533
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 +35 -0
- package/dist/index.cjs +2058 -1858
- package/package.json +1 -3
- package/scripts/postinstall.cjs +0 -1147
- package/scripts/preuninstall.cjs +0 -244
package/README.md
CHANGED
|
@@ -51,6 +51,41 @@ 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
|
+
|
|
54
89
|
## Supported Platforms
|
|
55
90
|
|
|
56
91
|
- Claude Code (`.claude/`)
|