Memory-augmented development workflows for Claude Code. Provides commands for planning, implementation, debugging, and research with persistent memory.
This plugin is not yet in any themed marketplace. To install it, you'll need to add it from GitHub directly.
This plugin uses advanced features that require additional trust:
Only install plugins from repositories you trust. Review the source code before installation.
Choose your preferred installation method below
A marketplace is a collection of plugins. Every plugin gets an auto-generated marketplace JSON for individual installation, plus inclusion in category and themed collections. Add a marketplace once (step 1), then install any plugin from it (step 2).
One-time setup for access to all plugins
When to use: If you plan to install multiple plugins now or later
Step 1: Add the marketplace (one-time)
/plugin marketplace add https://claudepluginhub.com/marketplaces/all.json
Run this once to access all plugins
Step 2: Install this plugin
/plugin install mem8@all
Use this plugin's auto-generated marketplace JSON for individual installation
When to use: If you only want to try this specific plugin
Step 1: Add this plugin's marketplace
/plugin marketplace add https://claudepluginhub.com/marketplaces/plugins/mem8.json
Step 2: Install the plugin
/plugin install mem8@mem8
Official Claude Code plugin for mem8 - memory-augmented development workflows.
mem8 enhances Claude Code with persistent memory and structured workflows:
memory/
directory.claude/settings.json
For full functionality including search, sync, and diagnostics:
# Install with uv (fast, modern Python package manager)
uv tool install mem8
:::tip Don't have uv? Install it first:
curl -LsSf https://astral.sh/uv/install.sh | sh
:::
Verify CLI installation:
mem8 --version
mem8 status
Add mem8 marketplace and install the plugin:
/plugin marketplace add killerapp/mem8-plugin
/plugin install mem8@mem8-official
The memory/
directory will be created automatically.
For automatic installation across your team, add to .claude/settings.json
:
{
"extraKnownMarketplaces": {
"mem8": {
"source": {
"source": "github",
"repo": "killerapp/mem8-plugin"
}
}
},
"enabledPlugins": ["mem8@mem8-official"]
}
When team members trust the repository, mem8 installs automatically.
commands/
├── commit.md # Create well-structured commits
├── debug.md # Debug issues with memory context
├── describe-pr.md # Generate PR descriptions
├── implement.md # Implement from plans
├── local-review.md # Set up review environments
├── plan.md # Create implementation plans
├── research.md # Research codebase
└── validate.md # Validate implementations
agents/
├── codebase-analyzer.md # Deep code analysis
├── codebase-locator.md # Find relevant files
├── codebase-pattern-finder.md # Discover patterns
├── memory-analyzer.md # Deep memory analysis
├── memory-locator.md # Find relevant memory
└── web-search-researcher.md # Web research
Created automatically during plugin installation:
memory/
├── plans/ # Implementation plans and technical designs
├── research/ # Research documents and findings
├── prs/ # Pull request descriptions and reviews
└── docs/ # Documentation and notes
# Research your codebase
/mem8:research
# Create an implementation plan
/mem8:plan
# Implement the plan
/mem8:implement memory/plans/your-plan.md
# Validate implementation
/mem8:validate memory/plans/your-plan.md
# View plugin status and available commands
mem8 status
# Detailed view with paths
mem8 status --detailed
The plugin is defined by:
.claude-plugin/plugin.json
- Plugin metadata and configuration.claude-plugin/marketplace.json
- Marketplace catalog definitionhooks/hooks.json
- Post-install automation hooksscripts/
- Cross-platform setup scriptsThe plugin automatically runs:
memory/
directory structure.claude/.mem8-plugin
marker for detectionScripts support Linux/macOS (bash), Windows (batch), and PowerShell.
.claude-plugin/plugin.json
version/plugin marketplace add YOUR_ORG/mem8-plugin
/plugin install mem8@your-marketplace
git clone https://github.com/killerapp/mem8-plugin.git
cd mem8-plugin
# Test changes locally
/plugin install file://$(pwd)@mem8-official
Current version: 3.0.0 (Plugin-based architecture)
MIT License - See LICENSE file for details
3.0.0