Skip to content
This repository was archived by the owner on Jul 19, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Bump `version` in `package.json` before publishing to npm.

## [1.9.2] - 2026-05-12

### Fixed

- Codex CLI hosted proxy next-steps now includes /mcp verification step

## [1.9.1] - 2026-05-12

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "multicorn-shield",
"version": "1.9.1",
"version": "1.9.2",
"description": "The control layer for AI agents: permissions, consent, spending limits, and audit logging.",
"license": "MIT",
"author": "Multicorn AI Pty Ltd",
Expand Down
7 changes: 6 additions & 1 deletion src/proxy/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3984,8 +3984,12 @@ export async function runInit(
process.stderr.write(
"\n" +
style.dim(
"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.",
"Add the TOML snippet above to ~/.codex/config.toml. Then set the environment variable:",
) +
"\n\n " +
style.cyan(`export MULTICORN_API_KEY="${apiKey}"`) +
"\n\n" +
style.dim("Restart Codex CLI after saving config.toml.") +
"\n",
);
configuredAgents.push({
Expand Down Expand Up @@ -4485,6 +4489,7 @@ export async function runInit(
"\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",
);
}
Expand Down
Loading