ziprin-context-optimizer 8.0.0 → 8.0.1

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.
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "8.0.0",
3
- "git": "https://185.226.118.181/ah.lotfali/ziprin-context-optimizer.git#v8.0.0",
4
- "npm": "@ziprin/context-optimizer@8.0.0"
2
+ "version": "8.0.1",
3
+ "git": "https://185.226.118.181/ah.lotfali/ziprin-context-optimizer.git#v8.0.1",
4
+ "npm": "ziprin-context-optimizer@8.0.1"
5
5
  }
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "ziprin-context-optimizer",
3
3
  "displayName": "Ziprin Context Inspector",
4
4
  "description": "Live observability dashboard for Ziprin Context MCP — history, health, token analytics. Intelligence runs only via MCP in native Cursor Chat.",
5
- "version": "8.0.0",
5
+ "version": "8.0.1",
6
6
  "publisher": "ziprin",
7
7
  "license": "UNLICENSED",
8
8
  "repository": {
@@ -34,6 +34,7 @@
34
34
  "access": "public"
35
35
  },
36
36
  "bin": {
37
+ "ziprin-context-optimizer": "./bin/ziprin-context-setup.js",
37
38
  "ziprin-context-mcp": "./bin/ziprin-context-mcp.js",
38
39
  "ziprin-context-setup": "./bin/ziprin-context-setup.js"
39
40
  },
@@ -132,7 +132,7 @@ function patchMonorepo(workspace, version, ref) {
132
132
  if (fs.existsSync(refJson)) {
133
133
  const refCfg = JSON.parse(fs.readFileSync(refJson, "utf8"));
134
134
  refCfg.ref = ref || refCfg.ref;
135
- refCfg.npm = `@ziprin/context-optimizer@${version}`;
135
+ refCfg.npm = `ziprin-context-optimizer@${version}`;
136
136
  fs.writeFileSync(refJson, `${JSON.stringify(refCfg, null, 2)}\n`);
137
137
  log("patched", refJson);
138
138
  }
@@ -39,7 +39,7 @@ const entry = path.join(pluginRoot, "src", "mcp-server.js");
39
39
 
40
40
  if (!fs.existsSync(entry)) {
41
41
  console.error(
42
- `[ziprin-context] MCP not installed. Run:\n npx @ziprin/context-optimizer setup --workspace "${workspace}"`,
42
+ `[ziprin-context] MCP not installed. Run:\n npx ziprin-context-optimizer setup --workspace "${workspace}"`,
43
43
  );
44
44
  process.exit(1);
45
45
  }