@scheduler-systems/gal 0.1.1-beta
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/LICENSE +14 -0
- package/README.md +100 -0
- package/dist/index.cjs +2 -0
- package/package.json +103 -0
- package/scripts/postinstall.cjs +694 -0
- package/scripts/preuninstall.cjs +149 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
PROPRIETARY LICENSE
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Scheduler Systems. All rights reserved.
|
|
4
|
+
|
|
5
|
+
This software and associated documentation files (the "Software") are the
|
|
6
|
+
proprietary and confidential property of Scheduler Systems.
|
|
7
|
+
|
|
8
|
+
UNAUTHORIZED COPYING, MODIFICATION, DISTRIBUTION, OR USE OF THIS SOFTWARE,
|
|
9
|
+
VIA ANY MEDIUM, IS STRICTLY PROHIBITED.
|
|
10
|
+
|
|
11
|
+
This Software is licensed, not sold. Scheduler Systems retains all rights,
|
|
12
|
+
title, and interest in and to the Software.
|
|
13
|
+
|
|
14
|
+
For licensing inquiries, contact: support@scheduler.systems
|
package/README.md
ADDED
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
# GAL CLI
|
|
2
|
+
|
|
3
|
+
Sync your organization's approved AI agent configurations.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g @scheduler-systems/gal
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
# Login with GitHub
|
|
15
|
+
gal auth login
|
|
16
|
+
|
|
17
|
+
# Pull approved configs
|
|
18
|
+
gal sync --pull
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
## Help
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
gal --help
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
## Documentation
|
|
28
|
+
|
|
29
|
+
https://gal.run/docs
|
|
30
|
+
|
|
31
|
+
### Supported Platforms
|
|
32
|
+
|
|
33
|
+
- Claude Code (`.claude/`) - Full support
|
|
34
|
+
- Cursor (`.cursor/`, `.cursorrules`) - Full support including legacy `.cursorrules` file
|
|
35
|
+
- Google Gemini (`.gemini/`) - Planned
|
|
36
|
+
- OpenAI Codex (`.codex/`) - Planned
|
|
37
|
+
- Windsurf (`.windsurf/`) - Planned
|
|
38
|
+
|
|
39
|
+
## CI/CD Integration
|
|
40
|
+
|
|
41
|
+
```yaml
|
|
42
|
+
- name: Install GAL CLI
|
|
43
|
+
run: npm install -g gal-cli
|
|
44
|
+
|
|
45
|
+
- name: Fetch configs
|
|
46
|
+
run: gal fetch --json > configs.json
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
## Session Analysis
|
|
50
|
+
|
|
51
|
+
When enabled, the CLI tracks commands during your session and provides LLM-powered analysis at the end:
|
|
52
|
+
- Command success/failure tracking
|
|
53
|
+
- Error analysis and recommendations
|
|
54
|
+
- Session insights
|
|
55
|
+
|
|
56
|
+
## Development
|
|
57
|
+
|
|
58
|
+
```bash
|
|
59
|
+
# Clone the monorepo
|
|
60
|
+
git clone https://github.com/Scheduler-Systems/gal.git
|
|
61
|
+
cd gal/apps/cli
|
|
62
|
+
|
|
63
|
+
# Install dependencies
|
|
64
|
+
pnpm install
|
|
65
|
+
|
|
66
|
+
# Build
|
|
67
|
+
pnpm build
|
|
68
|
+
|
|
69
|
+
# Development mode (watch)
|
|
70
|
+
pnpm dev
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
### Local Testing
|
|
74
|
+
|
|
75
|
+
```bash
|
|
76
|
+
# Set your GAL monorepo path
|
|
77
|
+
export GAL_ROOT="/path/to/gal" # e.g., ~/projects/gal
|
|
78
|
+
|
|
79
|
+
# Build and install globally (subshell keeps you in current directory)
|
|
80
|
+
(cd "$GAL_ROOT/apps/cli" && pnpm build && npm install -g .)
|
|
81
|
+
|
|
82
|
+
# Verify
|
|
83
|
+
gal --version
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
After making changes, rebuild and reinstall:
|
|
87
|
+
|
|
88
|
+
```bash
|
|
89
|
+
(cd "$GAL_ROOT/apps/cli" && pnpm build && npm install -g .)
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
To uninstall:
|
|
93
|
+
|
|
94
|
+
```bash
|
|
95
|
+
npm uninstall -g @scheduler-systems-ai/gal-cli
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
## License
|
|
99
|
+
|
|
100
|
+
Proprietary - Copyright (c) 2025 Scheduler Systems. All rights reserved.
|