multicorn-shield 1.4.1 → 1.7.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 +37 -0
- package/dist/multicorn-proxy.js +504 -90
- package/dist/multicorn-shield.js +323 -90
- package/dist/proxy.cjs +6 -2
- package/dist/proxy.d.cts +1 -1
- package/dist/proxy.d.ts +1 -1
- package/dist/proxy.js +6 -2
- package/dist/shield-extension.js +9 -4
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,43 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
9
9
|
|
|
10
10
|
- Bump `version` in `package.json` before publishing to npm.
|
|
11
11
|
|
|
12
|
+
## [1.7.0] - 2026-05-11
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
|
|
16
|
+
- Agent name now uses user-provided short name instead of auto-generated default
|
|
17
|
+
- Goose config snippet uses `uri` instead of incorrect `url`
|
|
18
|
+
- Replace flow deduplicates agent list loaded from config on startup
|
|
19
|
+
|
|
20
|
+
### Changed
|
|
21
|
+
|
|
22
|
+
- Add runtime dependency on [`yaml`](https://www.npmjs.com/package/yaml) (ISC) for safe Goose `config.yaml` read/write in the hosted-proxy CLI path
|
|
23
|
+
- GitHub Copilot: CLI auto-writes config to `.vscode/mcp.json`
|
|
24
|
+
- Kilo Code: CLI writes to `.kilo/kilo.jsonc` with correct format (`mcp` key, `type: remote`)
|
|
25
|
+
- Continue: CLI writes YAML to `.continue/mcpServers/<name>.yaml` in workspace root
|
|
26
|
+
- Goose: CLI auto-writes to `~/.config/goose/config.yaml`
|
|
27
|
+
- All hosted proxy platforms: Next Steps includes where to verify connection and example prompt
|
|
28
|
+
- Claude Desktop removed from hosted proxy platform list (consent URL not clickable)
|
|
29
|
+
|
|
30
|
+
## [1.6.0] - 2026-05-10
|
|
31
|
+
|
|
32
|
+
### Added
|
|
33
|
+
|
|
34
|
+
- Claude Code promotion note when selecting Cursor in the CLI
|
|
35
|
+
- Example usage prompt in CLI "Next steps" output
|
|
36
|
+
- `--version` flag prints version number and exits
|
|
37
|
+
- Consent-required errors now display a clear multi-line message with the approval URL on its own line
|
|
38
|
+
|
|
39
|
+
### Changed
|
|
40
|
+
|
|
41
|
+
- Auth prompt detects token pasted at the y/N confirmation and treats it as the token value directly
|
|
42
|
+
- Single-item arrow select skips the interactive picker and selects immediately
|
|
43
|
+
- Blocked response message reformatted for clarity
|
|
44
|
+
|
|
45
|
+
### Fixed
|
|
46
|
+
|
|
47
|
+
- Hosted proxy blocks `.well-known` OAuth discovery probes to prevent `mcp-remote` entering OAuth mode
|
|
48
|
+
|
|
12
49
|
## [1.4.1] - 2026-05-09
|
|
13
50
|
|
|
14
51
|
### Changed
|