@scheduler-systems/gal-cli 0.1.13-beta.2-alpha.pr72 → 0.1.13
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 +11 -33
- package/dist/index.cjs +265 -50
- package/package.json +8 -2
- package/scripts/postinstall.cjs +77 -3
- package/scripts/preuninstall.cjs +149 -0
package/README.md
CHANGED
|
@@ -1,51 +1,29 @@
|
|
|
1
1
|
# GAL CLI
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Sync your organization's approved AI agent configurations.
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## Install
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
|
|
9
|
-
pnpm install
|
|
10
|
-
pnpm build
|
|
11
|
-
npm link
|
|
8
|
+
npm install -g @scheduler-systems/gal-cli
|
|
12
9
|
```
|
|
13
10
|
|
|
14
|
-
|
|
15
|
-
```bash
|
|
16
|
-
gal --version
|
|
17
|
-
```
|
|
11
|
+
## Usage
|
|
18
12
|
|
|
19
|
-
After changes, rebuild:
|
|
20
13
|
```bash
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
## Production Install
|
|
14
|
+
# Login with GitHub
|
|
15
|
+
gal auth login
|
|
25
16
|
|
|
26
|
-
|
|
27
|
-
|
|
17
|
+
# Pull approved configs
|
|
18
|
+
gal sync --pull
|
|
28
19
|
```
|
|
29
20
|
|
|
30
|
-
##
|
|
21
|
+
## Help
|
|
31
22
|
|
|
32
23
|
```bash
|
|
33
|
-
gal
|
|
34
|
-
gal sync --push # Push local config to org
|
|
24
|
+
gal --help
|
|
35
25
|
```
|
|
36
26
|
|
|
37
27
|
## Documentation
|
|
38
28
|
|
|
39
|
-
|
|
40
|
-
- [Headless Execution](../../docs/guides/cli-headless-execution.md)
|
|
41
|
-
- [Hook Integration](../../docs/features/gal/convenience/10-cli-hook.md)
|
|
42
|
-
|
|
43
|
-
## Telemetry
|
|
44
|
-
|
|
45
|
-
GAL CLI collects anonymous usage telemetry to improve the tool. Opt out via:
|
|
46
|
-
|
|
47
|
-
```bash
|
|
48
|
-
gal config set telemetry false
|
|
49
|
-
# or
|
|
50
|
-
export GAL_TELEMETRY=false
|
|
51
|
-
```
|
|
29
|
+
https://gal.run/docs
|