multicorn-shield 1.9.1 → 1.9.2

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
@@ -9,6 +9,12 @@ 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.9.2] - 2026-05-12
13
+
14
+ ### Fixed
15
+
16
+ - Codex CLI hosted proxy next-steps now includes /mcp verification step
17
+
12
18
  ## [1.9.1] - 2026-05-12
13
19
 
14
20
  ### Fixed
@@ -3241,8 +3241,8 @@ You have ${String(agentsForPlatform.length)} agent(s) connected for ${selectedLa
3241
3241
  );
3242
3242
  process.stderr.write(
3243
3243
  "\n" + style.dim(
3244
- "Add the TOML snippet above to ~/.codex/config.toml. Set the MULTICORN_API_KEY environment variable to your Shield API key. Restart Codex CLI after saving."
3245
- ) + "\n"
3244
+ "Add the TOML snippet above to ~/.codex/config.toml. Then set the environment variable:"
3245
+ ) + "\n\n " + style.cyan(`export MULTICORN_API_KEY="${apiKey}"`) + "\n\n" + style.dim("Restart Codex CLI after saving config.toml.") + "\n"
3246
3246
  );
3247
3247
  configuredAgents.push({
3248
3248
  selection,
@@ -3581,7 +3581,7 @@ You have ${String(agentsForPlatform.length)} agent(s) connected for ${selectedLa
3581
3581
  }
3582
3582
  if (codexHostedConfigured) {
3583
3583
  blocks.push(
3584
- "\n" + style.bold("Codex CLI (hosted)") + "\n \u2192 Set the MULTICORN_API_KEY environment variable to your Shield API key\n \u2192 Restart Codex CLI after saving config.toml\n \u2192 Try it: make a request that uses an MCP tool through Shield\n"
3584
+ "\n" + style.bold("Codex CLI (hosted)") + "\n \u2192 Set the MULTICORN_API_KEY environment variable to your Shield API key\n \u2192 Restart Codex CLI after saving config.toml\n \u2192 Verify it's connected: run /mcp in Codex CLI to see your active MCP servers\n \u2192 Try it: make a request that uses an MCP tool through Shield\n"
3585
3585
  );
3586
3586
  }
3587
3587
  if (configuredPlatforms.has("other-mcp")) {
@@ -4660,7 +4660,7 @@ var init_package = __esm({
4660
4660
  "package.json"() {
4661
4661
  package_default = {
4662
4662
  name: "multicorn-shield",
4663
- version: "1.9.1",
4663
+ version: "1.9.2",
4664
4664
  description: "The control layer for AI agents: permissions, consent, spending limits, and audit logging.",
4665
4665
  license: "MIT",
4666
4666
  author: "Multicorn AI Pty Ltd",
@@ -3335,8 +3335,8 @@ You have ${String(agentsForPlatform.length)} agent(s) connected for ${selectedLa
3335
3335
  );
3336
3336
  process.stderr.write(
3337
3337
  "\n" + style.dim(
3338
- "Add the TOML snippet above to ~/.codex/config.toml. Set the MULTICORN_API_KEY environment variable to your Shield API key. Restart Codex CLI after saving."
3339
- ) + "\n"
3338
+ "Add the TOML snippet above to ~/.codex/config.toml. Then set the environment variable:"
3339
+ ) + "\n\n " + style.cyan(`export MULTICORN_API_KEY="${apiKey}"`) + "\n\n" + style.dim("Restart Codex CLI after saving config.toml.") + "\n"
3340
3340
  );
3341
3341
  configuredAgents.push({
3342
3342
  selection,
@@ -3675,7 +3675,7 @@ You have ${String(agentsForPlatform.length)} agent(s) connected for ${selectedLa
3675
3675
  }
3676
3676
  if (codexHostedConfigured) {
3677
3677
  blocks.push(
3678
- "\n" + style.bold("Codex CLI (hosted)") + "\n \u2192 Set the MULTICORN_API_KEY environment variable to your Shield API key\n \u2192 Restart Codex CLI after saving config.toml\n \u2192 Try it: make a request that uses an MCP tool through Shield\n"
3678
+ "\n" + style.bold("Codex CLI (hosted)") + "\n \u2192 Set the MULTICORN_API_KEY environment variable to your Shield API key\n \u2192 Restart Codex CLI after saving config.toml\n \u2192 Verify it's connected: run /mcp in Codex CLI to see your active MCP servers\n \u2192 Try it: make a request that uses an MCP tool through Shield\n"
3679
3679
  );
3680
3680
  }
3681
3681
  if (configuredPlatforms.has("other-mcp")) {
@@ -4583,7 +4583,7 @@ async function restoreClaudeDesktopMcpFromBackup() {
4583
4583
 
4584
4584
  // package.json
4585
4585
  var package_default = {
4586
- version: "1.9.1"};
4586
+ version: "1.9.2"};
4587
4587
 
4588
4588
  // src/package-meta.ts
4589
4589
  var PACKAGE_VERSION = package_default.version;
@@ -22517,7 +22517,7 @@ async function writeExtensionBackup(claudeDesktopConfigPath, mcpServers) {
22517
22517
 
22518
22518
  // package.json
22519
22519
  var package_default = {
22520
- version: "1.9.1"};
22520
+ version: "1.9.2"};
22521
22521
 
22522
22522
  // src/package-meta.ts
22523
22523
  var PACKAGE_VERSION = package_default.version;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "multicorn-shield",
3
- "version": "1.9.1",
3
+ "version": "1.9.2",
4
4
  "description": "The control layer for AI agents: permissions, consent, spending limits, and audit logging.",
5
5
  "license": "MIT",
6
6
  "author": "Multicorn AI Pty Ltd",