Structured memory management system for .claude/memory/ with skills for saving, loading, and reorganizing memory files
Use when user says "reorganize memory", "clean up memory", "audit memory", or wants to maintain the structured memory system. Consolidates duplicates, updates index, and ensures consistency.
Use when the user learns something worth remembering, makes a decision, discovers a preference, or uncovers a pattern. Auto-triggers to save to .claude/memory/ in the right file.
Community-driven plugin collection for Claude Code. Extend Claude Code with commands, agents, skills, and hooks.
git clone https://github.com/user/claude-code-plugins.git
cd claude-code-plugins
Open Claude Code settings (File → Preferences → Settings)
Add marketplace path to pluginDirectories:
{
"pluginDirectories": [
"~/.claude/plugins",
"/path/to/claude-code-plugins/plugins"
]
}
Extract current session context (todos, plan, decisions, blockers) for pasting into fresh sessions.
/session-summarizeStructured persistent memory system at .claude/memory/ with auto-save and consolidation skills.
/memory-reorganizeSee CONTRIBUTING.md for:
mkdir plugins/my-plugin
cd plugins/my-plugin
# Create manifest
mkdir .claude-plugin
cat > .claude-plugin/plugin.json << 'EOF'
{
"name": "my-plugin",
"version": "0.1.0",
"description": "What this plugin does",
"author": { "name": "Your Name" },
"license": "MIT",
"keywords": ["tag1", "tag2"]
}
EOF
# Add components (commands, agents, skills, hooks)
mkdir commands
# ... add .md files to commands/
# Create README
cat > README.md << 'EOF'
# My Plugin
Description and usage.
EOF
See Plugin Structure Guide for details.
plugins/
├── session-summarize/ # Plugin name in kebab-case
│ ├── .claude-plugin/
│ │ └── plugin.json # Required manifest
│ ├── commands/ # Slash commands
│ ├── agents/ # Subagents
│ ├── skills/ # Auto-triggering skills
│ ├── hooks/ # Event handlers
│ └── README.md
├── memory-manage/
│ └── ...
└── your-plugin/
└── ...
See plugins/.claude-plugin/marketplace.json for full registry of plugins and versions.
plugins/{name}/See CONTRIBUTING.md for full process.
All plugins in this marketplace are licensed under their respective licenses. Default is MIT.
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
npx claudepluginhub acurtinxtivia/ac-demo-marketplace --plugin memory-manageSummarize current Claude Code session with todo state, key decisions, and blockers for resuming in fresh session
Example plugin demonstrating best practices and structure
Comprehensive UI/UX design plugin for mobile (iOS, Android, React Native) and web applications with design systems, accessibility, and modern patterns
Standalone image generation plugin using Nano Banana MCP server. Generates and edits images, icons, diagrams, patterns, and visual assets via Gemini image models. No Gemini CLI dependency required.
Multi-model consensus engine integrating OpenAI Codex CLI, Gemini CLI, and Claude CLI for collaborative code review and problem-solving.
Write feature specs, plan roadmaps, and synthesize user research faster. Keep stakeholders updated and stay ahead of the competitive landscape.
Memory compression system for Claude Code - persist context across sessions