multicorn-shield 1.0.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 CHANGED
@@ -5,6 +5,53 @@ 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
+
23
+ ## [1.1.0] - 2026-05-06
24
+
25
+ ### Added
26
+
27
+ - Kilo Code as a hosted proxy platform
28
+ - GitHub Copilot as a hosted proxy platform
29
+ - Continue as a hosted proxy platform
30
+ - Goose as a hosted proxy platform
31
+ - Claude Desktop as a hosted proxy platform
32
+ - Prereq check step in CLI wizard for all hosted proxy platforms
33
+ - Platform filter and search in dashboard platform select
34
+
35
+ ### Changed
36
+
37
+ - GitHub Copilot moved from native plugin to hosted proxy section in CLI wizard
38
+ - Kilo Code config snippet now includes `"type": "streamable-http"`
39
+ - Goose config snippet uses `"type": "streamable_http"` and `"url"` (SSE deprecated)
40
+ - ProxySetup is now a stepped wizard (prereq check, OS selection, proxy form, snippet, completion)
41
+ - Short name prompt removed from CLI wizard (uses agent name automatically)
42
+
43
+ ### Removed
44
+
45
+ - Aider as a supported platform (no MCP client support)
46
+
47
+ ### Fixed
48
+
49
+ - Proxy ALLOW_PRIVATE_TARGETS env var not bypassing localhost validation
50
+ - Goose prereq URL updated (moved from Block to the Agentic AI Foundation (AAIF))
51
+ - Continue prereq URL updated
52
+ - ProxySetup form input contrast (WCAG AA fix)
53
+ - Governance disclosure now lists all four native plugin platforms
54
+
8
55
  ## [1.0.0] - 2026-05-02
9
56
 
10
57
  ### Changed
package/dist/index.cjs CHANGED
@@ -22,6 +22,10 @@ var AGENT_PLATFORM_SLUGS = [
22
22
  "windsurf",
23
23
  "cline",
24
24
  "gemini-cli",
25
+ "continue-dev",
26
+ "github-copilot",
27
+ "goose",
28
+ "kilo-code",
25
29
  "other-mcp",
26
30
  "github-actions",
27
31
  "unknown"
package/dist/index.d.cts CHANGED
@@ -12,7 +12,7 @@ import { LitElement, PropertyValues, HTMLTemplateResult } from 'lit';
12
12
  /**
13
13
  * Agent client platforms supported by hosted proxy and native hooks (aligned with API validation).
14
14
  */
15
- declare const AGENT_PLATFORM_SLUGS: readonly ["openclaw", "claude-code", "claude-desktop", "cursor", "windsurf", "cline", "gemini-cli", "other-mcp", "github-actions", "unknown"];
15
+ declare const AGENT_PLATFORM_SLUGS: readonly ["openclaw", "claude-code", "claude-desktop", "cursor", "windsurf", "cline", "gemini-cli", "continue-dev", "github-copilot", "goose", "kilo-code", "other-mcp", "github-actions", "unknown"];
16
16
  type AgentPlatformSlug = (typeof AGENT_PLATFORM_SLUGS)[number];
17
17
  /**
18
18
  * Possible operational states for an agent.
package/dist/index.d.ts CHANGED
@@ -12,7 +12,7 @@ import { LitElement, PropertyValues, HTMLTemplateResult } from 'lit';
12
12
  /**
13
13
  * Agent client platforms supported by hosted proxy and native hooks (aligned with API validation).
14
14
  */
15
- declare const AGENT_PLATFORM_SLUGS: readonly ["openclaw", "claude-code", "claude-desktop", "cursor", "windsurf", "cline", "gemini-cli", "other-mcp", "github-actions", "unknown"];
15
+ declare const AGENT_PLATFORM_SLUGS: readonly ["openclaw", "claude-code", "claude-desktop", "cursor", "windsurf", "cline", "gemini-cli", "continue-dev", "github-copilot", "goose", "kilo-code", "other-mcp", "github-actions", "unknown"];
16
16
  type AgentPlatformSlug = (typeof AGENT_PLATFORM_SLUGS)[number];
17
17
  /**
18
18
  * Possible operational states for an agent.
package/dist/index.js CHANGED
@@ -20,6 +20,10 @@ var AGENT_PLATFORM_SLUGS = [
20
20
  "windsurf",
21
21
  "cline",
22
22
  "gemini-cli",
23
+ "continue-dev",
24
+ "github-copilot",
25
+ "goose",
26
+ "kilo-code",
23
27
  "other-mcp",
24
28
  "github-actions",
25
29
  "unknown"