@glrs-dev/assume 0.8.0 → 0.9.0
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/CHANGELOG.md +11 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @glrs-dev/assume
|
|
2
2
|
|
|
3
|
+
## 0.9.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#256](https://github.com/iceglober/glrs/pull/256) [`610eae0`](https://github.com/iceglober/glrs/commit/610eae0e865ce33e1f8c757e35493268df75a899) Thanks [@iceglober](https://github.com/iceglober)! - `gsa init`: prompt to select which agent tools to configure, and fix the MCP writers
|
|
8
|
+
|
|
9
|
+
- `gsa init` now shows a multi-select of supported agent tools (OpenCode, Claude Code, Gemini CLI, Cursor) instead of silently auto-detecting one. Installed tools are pre-checked; you choose which to wire the `gsa` MCP server into.
|
|
10
|
+
- Fix OpenCode MCP entry: it now writes the correct `mcp` schema (`{ "type": "local", "command": ["gsa", "agent", "mcp"], "enabled": true }`) instead of the stdio `command`/`args` shape OpenCode ignores.
|
|
11
|
+
- Fix Claude Code target: MCP servers are written to `~/.claude.json` (`mcpServers`), not `~/.claude/settings.json`.
|
|
12
|
+
- Add Gemini CLI (`~/.gemini/settings.json`) and Cursor (`~/.cursor/mcp.json`) support, creating the config file when absent and preserving existing keys.
|
|
13
|
+
|
|
3
14
|
## 0.8.0
|
|
4
15
|
|
|
5
16
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@glrs-dev/assume",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -51,9 +51,9 @@
|
|
|
51
51
|
"typescript": "^5"
|
|
52
52
|
},
|
|
53
53
|
"optionalDependencies": {
|
|
54
|
-
"@glrs-dev/assume-darwin-arm64": "0.
|
|
55
|
-
"@glrs-dev/assume-darwin-x64": "0.
|
|
56
|
-
"@glrs-dev/assume-linux-x64": "0.
|
|
57
|
-
"@glrs-dev/assume-linux-arm64": "0.
|
|
54
|
+
"@glrs-dev/assume-darwin-arm64": "0.9.0",
|
|
55
|
+
"@glrs-dev/assume-darwin-x64": "0.9.0",
|
|
56
|
+
"@glrs-dev/assume-linux-x64": "0.9.0",
|
|
57
|
+
"@glrs-dev/assume-linux-arm64": "0.9.0"
|
|
58
58
|
}
|
|
59
59
|
}
|