Skip to content

MemoryStore/plugins

Repository files navigation

Memory Store Claude Code Plugins

This repository hosts the official Claude Code plugin marketplace published by the MemoryStore organization. It currently ships three channels:

  • memory-store-beta – full functionality backed by the beta Memory Store deployment.
  • memory-store-stable – placeholder that notifies installers when the production channel is ready.
  • memory-store-local – mirrors the beta feature set while pointing to a localhost MCP server for rapid iteration.

Repository Layout

  • .claude-plugin/marketplace.json – marketplace manifest with both channel entries.
  • memory-store-beta/ – beta plugin assets (.claude-plugin/plugin.json, commands, agents, hooks, .mcp.json).
  • memory-store-stable/ – stable placeholder with guarded manifest and future asset stubs.
  • memory-store-local/ – local development plugin mirroring the beta commands and hooks but defaulting to http://localhost:8000/mcp.
  • shared/ – instruction bundles and other shared assets referenced by both channels.
  • specs/001-memory-store-claude-code-plugins/ – spec-driven documentation (spec, plan, tasks, research, design artifacts).
  • CHANGELOG.md – release history for marketplace updates.

Installing Locally

  1. Add the marketplace:
    claude /plugin marketplace add MemoryStore/plugins
    Review the installed README for instructions directing you back to the beta channel until GA.
  2. Install the beta plugin:
claude /plugin install memory-store-beta@memory-store-marketplace

Or install the local development plugin:

claude /plugin install memory-store-local@memory-store-marketplace
  1. Configure plugin settings inside Claude Code (/plugin settings) for the selected channel:

    • For memory-store-beta@memory-store-marketplace confirm or adjust:
      • memoryStoreBaseUrl = https://beta.memory.store/mcp
      • Optional memoryStoreDefaultRecallDepth
    • For memory-store-local@memory-store-marketplace confirm:
      • memoryStoreBaseUrl = http://localhost:8000/mcp
      • Optional memoryStoreDefaultRecallDepth

    Authentication for all channels now flows through the Memory Store OAuth experience presented by the MCP server—no API tokens are required in plugin settings.

  2. List commands to confirm installation:

    claude /plugin
  3. The stable plugin currently installs placeholder assets for awareness:

    claude /plugin install memory-store-stable@memory-store-marketplace

Publishing Checklist

  • Update plugin versions and marketplace metadata together.
  • Regenerate documentation (specs, quickstart) if workflows change.
  • Run claude --debug to validate manifests before tagging a release.
  • Record changes in CHANGELOG.md.