multicorn-shield 1.1.0 → 1.2.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 +15 -0
- package/dist/multicorn-proxy.js +2651 -2442
- package/dist/multicorn-shield.js +1651 -1441
- package/dist/shield-extension.js +19 -19
- package/package.json +1 -1
- package/plugins/cline/hooks/scripts/shared.cjs +49 -12
- package/plugins/gemini-cli/hooks/scripts/shared.cjs +49 -12
- package/plugins/windsurf/hooks/scripts/post-action.cjs +60 -12
- package/plugins/windsurf/hooks/scripts/pre-action.cjs +60 -12
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,21 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [1.2.0] - 2026-05-06
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- Agents now remember which project directory they were set up in - running `init` from different repos creates separate agents on the same platform (e.g. one Cursor agent per project)
|
|
13
|
+
- When a platform already has agents registered, the wizard offers to replace a specific one, add a new agent alongside them, or skip to another platform
|
|
14
|
+
- If the current directory already has an agent for the selected platform, the wizard detects it and offers a targeted replace prompt
|
|
15
|
+
- Default agent names now include the project folder (e.g. `multicorn-dashboard-cursor` instead of `cursor`)
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
|
|
19
|
+
- Agent resolution now picks the most specific workspace match when multiple agents share a platform - falls back to the original behaviour for existing setups
|
|
20
|
+
- Native hook scripts (Cline, Claude Code, Windsurf, Gemini CLI) use workspace-aware agent resolution
|
|
21
|
+
- Replacing an agent no longer removes all agents for that platform - only the specific one being replaced
|
|
22
|
+
|
|
8
23
|
## [1.1.0] - 2026-05-06
|
|
9
24
|
|
|
10
25
|
### Added
|