e53d1530ff
The repo shipped both a root-level .mcp.json and plugin/.mcp.json with
identical mcp-search launchers — kept in sync by a build-time guard and
a test. The root file was a holdover from when devs working inside the
repo could load mem-search without installing the plugin. With the
plugin universally installed, every plugin user now sees `/doctor` warn:
Plugin (claude-mem @ plugin:claude-mem:mcp-search): MCP server
"mcp-search" skipped — same command/URL as already-configured
"mcp-search"
…because Claude Code dedupes by command and skips the plugin's
namespaced registration. The duplicate is functionally harmless but
suppresses the canonical `plugin:claude-mem:mcp-search` entry.
This removes the root .mcp.json entirely and re-points everything that
referenced it at the bundled plugin copy:
- .mcp.json: deleted
- .codex-plugin/plugin.json: mcpServers → ./plugin/.mcp.json
- package.json: drop .mcp.json from files
- scripts/build-hooks.js: drop root-file requirement + sync check
- scripts/sync-marketplace.cjs: drop syncManagedFiles entry
- src/npx-cli/commands/install.ts: drop from allowedTopLevelEntries
- tests/infrastructure/plugin-distribution.test.ts: drop two tests
enforcing the now-removed root file
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
47 lines
1.5 KiB
JSON
47 lines
1.5 KiB
JSON
{
|
|
"name": "claude-mem",
|
|
"version": "13.2.0",
|
|
"description": "Memory compression system for Claude Code - persist context across sessions",
|
|
"author": {
|
|
"name": "Alex Newman",
|
|
"url": "https://github.com/thedotmack"
|
|
},
|
|
"homepage": "https://github.com/thedotmack/claude-mem#readme",
|
|
"repository": "https://github.com/thedotmack/claude-mem",
|
|
"license": "Apache-2.0",
|
|
"keywords": [
|
|
"claude",
|
|
"claude-code",
|
|
"claude-agent-sdk",
|
|
"mcp",
|
|
"plugin",
|
|
"memory",
|
|
"compression",
|
|
"knowledge-graph",
|
|
"transcript",
|
|
"typescript",
|
|
"nodejs"
|
|
],
|
|
"skills": "./plugin/skills/",
|
|
"mcpServers": "./plugin/.mcp.json",
|
|
"hooks": "./plugin/hooks/codex-hooks.json",
|
|
"interface": {
|
|
"displayName": "claude-mem",
|
|
"shortDescription": "Persistent memory and context compression across coding sessions.",
|
|
"longDescription": "claude-mem captures coding-session activity, compresses it into reusable observations, and injects relevant context back into future Claude Code and Codex-compatible sessions.",
|
|
"developerName": "Alex Newman",
|
|
"category": "Productivity",
|
|
"capabilities": [
|
|
"Interactive",
|
|
"Write"
|
|
],
|
|
"websiteURL": "https://github.com/thedotmack/claude-mem",
|
|
"defaultPrompt": [
|
|
"Find what I already learned about this codebase before I start a new task.",
|
|
"Show recent observations related to the files I am editing right now.",
|
|
"Summarize the last session and inject the most relevant context into this one."
|
|
],
|
|
"brandColor": "#1F6FEB"
|
|
}
|
|
}
|