Skip to content
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
11 changes: 11 additions & 0 deletions .github/workflows/publish-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,17 @@ jobs:
test -f "$TAR"
tar -tzf "$TAR" | grep -F 'package/.codex-plugin/assets/marketplace-icon.svg'
tar -tzf "$TAR" | grep -F 'package/hooks/pre-edit-check.mjs'
# Assert the array-manifest normalizer is in the SHIPPED bytes, not
# merely in the branch. 0.1.5 and 0.1.6 both published without it
# while every branch check was green (HAC-206). Note this is a
# presence check on a symbol: it catches the fix going missing, not
# the fix being wrong. A behavioural gate needs a non-empty
# frameworkManifest fixture -- an empty array normalizes to
# undefined with or without the fix, so it discriminates nothing.
mkdir -p /tmp/workspacejson-release/inspect
tar -xzf "$TAR" -C /tmp/workspacejson-release/inspect
grep -q 'normalizeFrameworkManifest' \
/tmp/workspacejson-release/inspect/package/dist/services/workspace.js
- name: Install packed artifact in a clean project
run: |
mkdir -p /tmp/workspacejson-release/install
Expand Down
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ hac120-desktop.png
# Local Claude state is machine-specific, not product source.
.claude/

# Local editor state. The extension-host launch config is a developer
# convenience, not a release input; keep it out of the published repo.
.vscode/

# Local Codex transcript-processing scratchwork may contain prompts and tool traces.
/scripts/extract-session*.mjs

Expand Down
1 change: 1 addition & 0 deletions biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
"ignore": [
".claude",
".local",
".vscode",
"dist",
"node_modules",
"fixture",
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@workspacejson/codex-mcp",
"version": "0.1.6",
"version": "0.1.7",
"description": "MCP server that surfaces workspace.json fragility and co-change intelligence to OpenAI Codex before it edits code.",
"license": "Apache-2.0",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { isVerifyEnabled } from "./config.js";
import { SERVER_INSTRUCTIONS } from "./constants.js";
import { registerWorkspaceTools } from "./tools/workspace.js";

const VERSION = "0.1.6";
const VERSION = "0.1.7";

function buildServer(): McpServer {
const server = new McpServer(
Expand Down
Loading