You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Claude Code silently creates memories, skills, and MCP configs every time you work — and dumps them into whatever scope matches your current directory. A preference you wanted everywhere? Trapped in one project. A deploy skill that belongs to one repo? Leaked into global, contaminating every other project.
19
+
Claude Code silently creates memories, skills, MCP configs, commands, agents, and rules every time you work — and dumps them into whatever scope matches your current directory. A preference you wanted everywhere? Trapped in one project. A deploy skill that belongs to one repo? Leaked into global, contaminating every other project.
20
20
21
21
**This isn't just messy — it hurts your AI's performance.** Every session, Claude loads all configs from the current scope plus everything inherited from parent scopes into your context window. Wrong-scope items = wasted tokens, polluted context, and lower accuracy. A Python pipeline skill sitting in global gets loaded into your React frontend session. Duplicate MCP entries initialize the same server twice. Stale memories contradict your current instructions.
22
22
@@ -58,6 +58,7 @@ We analyzed the source code of every Claude Code tool we could find — analytic
58
58
| Undo on every action |**Yes**| No | No | No | No |
59
59
| Bulk operations |**Yes**| No | No | No | No |
60
60
| Real MCP server management |**Yes**| Global only | Stub (icon only) | No | No |
61
+
| Commands + Agents + Rules |**Yes**| No | No | No | No |
61
62
| Session management |**Yes**| No | No | Yes | Yes |
62
63
| Search & filter |**Yes**| No | Yes | Yes | No |
63
64
| MCP tools (AI-accessible) |**Yes**| No | No | No | No |
@@ -67,19 +68,22 @@ We analyzed the source code of every Claude Code tool we could find — analytic
67
68
## Features
68
69
69
70
-**Scope-aware hierarchy** — See all items organized as Global > Workspace > Project, with inheritance indicators
70
-
-**Drag-and-drop** — Move memories between scopes, skills between global and per-repo, MCP serversbetween configs
71
+
-**Drag-and-drop** — Move memories, skills, commands, agents, rules, MCP servers, and plans between scopes
71
72
-**Undo everything** — Every move and delete has an undo button — restore instantly, including MCP JSON entries
72
73
-**Bulk operations** — Select mode: tick multiple items, move or delete all at once
73
-
-**Same-type safety** — Memories can only move to memory folders, skills to skill folders, MCP to MCP configs
74
+
-**Same-type safety** — Each category moves to its own directory — memories to memory/, skills to skills/, commands to commands/, etc.
74
75
-**Search & filter** — Real-time search across all items, filter by category with smart pill hiding (zero-count pills collapse into "+N more")
75
76
-**Detail panel** — Click any item to see full metadata, content preview, file path, and open in VS Code
76
77
-**Session inspector** — Parsed conversation previews with speaker labels, session titles, and metadata
Copy file name to clipboardExpand all lines: package.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "@mcpware/claude-code-organizer",
3
-
"version": "0.5.4",
3
+
"version": "0.5.5",
4
4
"description": "Organize all your Claude Code memories, skills, MCP servers, commands, agents, rules, and hooks — view by scope hierarchy, move between scopes via drag-and-drop",
0 commit comments