You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

context-mode

Package Overview
Dependencies
Maintainers
1
Versions
102
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

context-mode - npm Package Compare versions

Comparing version
1.0.35
to
1.0.36
+2
-2
.claude-plugin/marketplace.json

@@ -9,3 +9,3 @@ {

"description": "Claude Code plugins by Mert Koseoğlu",
"version": "1.0.35"
"version": "1.0.36"
},

@@ -17,3 +17,3 @@ "plugins": [

"description": "Claude Code MCP plugin that saves 98% of your context window. Sandboxed code execution in 11 languages, FTS5 knowledge base with BM25 ranking, and intent-driven search.",
"version": "1.0.35",
"version": "1.0.36",
"author": {

@@ -20,0 +20,0 @@ "name": "Mert Koseoğlu"

{
"name": "context-mode",
"version": "1.0.35",
"version": "1.0.36",
"description": "MCP server that saves 98% of your context window with session continuity. Sandboxed code execution in 11 languages, FTS5 knowledge base with BM25 ranking, and automatic state restore across compactions.",

@@ -5,0 +5,0 @@ "author": {

@@ -6,3 +6,3 @@ {

"description": "OpenClaw plugin that saves 98% of your context window. Sandboxed code execution in 11 languages, FTS5 knowledge base with BM25 ranking, and intent-driven search.",
"version": "1.0.35",
"version": "1.0.36",
"sandbox": {

@@ -9,0 +9,0 @@ "mode": "permissive",

{
"name": "context-mode",
"version": "1.0.35",
"version": "1.0.36",
"description": "OpenClaw plugin that saves 98% of your context window. Sandboxed code execution in 11 languages, FTS5 knowledge base with BM25 ranking, and intent-driven search.",

@@ -5,0 +5,0 @@ "author": {

@@ -459,3 +459,6 @@ /**

handler: () => {
const cmd = `node "${_latestPluginRoot}/build/cli.js" doctor`;
const bundlePath = resolve(_latestPluginRoot, "cli.bundle.mjs");
const fallbackPath = resolve(_latestPluginRoot, "build", "cli.js");
const cliPath = existsSync(bundlePath) ? bundlePath : fallbackPath;
const cmd = `node "${cliPath}" doctor`;
return {

@@ -478,3 +481,6 @@ text: [

handler: () => {
const cmd = `node "${_latestPluginRoot}/build/cli.js" upgrade`;
const bundlePath = resolve(_latestPluginRoot, "cli.bundle.mjs");
const fallbackPath = resolve(_latestPluginRoot, "build", "cli.js");
const cliPath = existsSync(bundlePath) ? bundlePath : fallbackPath;
const cmd = `node "${cliPath}" upgrade`;
return {

@@ -481,0 +487,0 @@ text: [

@@ -6,3 +6,3 @@ {

"description": "OpenClaw plugin that saves 98% of your context window. Sandboxed code execution in 11 languages, FTS5 knowledge base with BM25 ranking, and intent-driven search.",
"version": "1.0.35",
"version": "1.0.36",
"sandbox": {

@@ -9,0 +9,0 @@ "mode": "permissive",

{
"name": "context-mode",
"version": "1.0.35",
"version": "1.0.36",
"type": "module",

@@ -40,6 +40,6 @@ "description": "MCP plugin that saves 98% of your context window. Works with Claude Code, Gemini CLI, VS Code Copilot, OpenCode, and Codex CLI. Sandboxed code execution, FTS5 knowledge base, and intent-driven search.",

"./openclaw": "./build/openclaw-plugin.js",
"./cli": "./build/cli.js"
"./cli": "./cli.bundle.mjs"
},
"bin": {
"context-mode": "./build/cli.js"
"context-mode": "./cli.bundle.mjs"
},

@@ -46,0 +46,0 @@ "files": [

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display