context-mode 0.9.20 → 0.9.21

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/build/server.js CHANGED
@@ -7,7 +7,7 @@ import { PolyglotExecutor } from "./executor.js";
7
7
  import { ContentStore, cleanupStaleDBs } from "./store.js";
8
8
  import { readBashPolicies, evaluateCommandDenyOnly, extractShellCommands, readToolDenyPatterns, evaluateFilePath, } from "./security.js";
9
9
  import { detectRuntimes, getRuntimeSummary, getAvailableLanguages, hasBunRuntime, } from "./runtime.js";
10
- const VERSION = "0.9.20";
10
+ const VERSION = "0.9.21";
11
11
  const runtimes = detectRuntimes();
12
12
  const available = getAvailableLanguages(runtimes);
13
13
  const server = new McpServer({
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "context-mode",
3
- "version": "0.9.20",
3
+ "version": "0.9.21",
4
4
  "type": "module",
5
5
  "description": "Claude Code MCP plugin that saves 98% of your context window. Sandboxed code execution, FTS5 knowledge base, and intent-driven search.",
6
6
  "author": "Mert Koseoğlu",
@@ -23,7 +23,7 @@
23
23
  "homepage": "https://github.com/mksglu/claude-context-mode#readme",
24
24
  "bugs": "https://github.com/mksglu/claude-context-mode/issues",
25
25
  "bin": {
26
- "context-mode": "./build/server.js"
26
+ "context-mode": "./build/cli.js"
27
27
  },
28
28
  "files": [
29
29
  "build",