@scheduler-systems/gal-run 0.0.610 → 0.0.621

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.
Files changed (3) hide show
  1. package/README.md +17 -0
  2. package/dist/index.cjs +22945 -1415
  3. package/package.json +2 -1
package/README.md CHANGED
@@ -64,6 +64,11 @@ gal code --model glm-5 "write a migration plan"
64
64
 
65
65
  # Select a specific variant explicitly when needed
66
66
  gal code codex --model gpt-5.4 "fix the failing tests"
67
+
68
+ # Profile-scoped OpenCode memory sync uses the same GAL-owned runtime home
69
+ gal install --platform opencode --profile work
70
+ gal mcp sync-memory --platform opencode --profile work --pull
71
+ gal code --profile work
67
72
  ```
68
73
 
69
74
  ## Supported Platforms
@@ -124,6 +129,18 @@ The hosted endpoint `https://api.gal.run/mcp` uses OAuth/Bearer auth.
124
129
 
125
130
  ### Codex Setup
126
131
 
132
+ Project-local Codex setup is auto-managed by GAL:
133
+
134
+ ```bash
135
+ gal sync --pull
136
+ # or
137
+ gal install --platform codex
138
+ ```
139
+
140
+ That writes managed `.codex/config.toml` and `.codex/hooks.json` entries so Codex can use the local GAL MCP server and mirror shared memory into `.codex/memory/MEMORY.md`.
141
+
142
+ Manual fallback:
143
+
127
144
  Preferred (OAuth):
128
145
 
129
146
  ```bash