@scheduler-systems/gal-cli 0.1.13 → 0.1.16-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/README.md +71 -0
- package/dist/index.cjs +426 -78
- package/package.json +19 -9
package/README.md
CHANGED
|
@@ -27,3 +27,74 @@ gal --help
|
|
|
27
27
|
## Documentation
|
|
28
28
|
|
|
29
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.
|