Help us improve
Share bugs, ideas, or general feedback.
From goodmem
Provides overview of GoodMem skills, credential setup for servers with API keys and env vars, and usage examples via MCP tools or Python SDK. Activates on queries about available skills or getting started.
npx claudepluginhub pair-systems-inc/goodmem-claude-code-plugin --plugin goodmemHow this skill is triggered — by the user, by Claude, or both
Slash command
/goodmem:helpThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
GoodMem is memory infrastructure for AI agents — store, retrieve, and manage memories with vector embeddings, semantic search, and RAG.
Automates Mem0 memory operations via Composio's Mem0 toolkit through Rube MCP. Discovers tools, manages connections, and executes workflows.
Adds long-term memory to AI applications via Deja Vu SDK. Covers Python/TypeScript clients, LangChain, CrewAI, LlamaIndex, and self-hosted memory.
Share bugs, ideas, or general feedback.
GoodMem is memory infrastructure for AI agents — store, retrieve, and manage memories with vector embeddings, semantic search, and RAG.
Before calling any GoodMem MCP tool, you MUST ensure credentials are configured. Follow this sequence:
goodmem_system_info to check if credentials are already set (from environment variables).https://your-server.example.com)gm_goodmem_configure with the provided base_url and api_key.Credentials persist for the entire session. The user can call goodmem_configure again to switch servers.
If the user has set GOODMEM_BASE_URL and GOODMEM_API_KEY environment variables before starting Claude Code, credentials are picked up automatically — no setup needed.
TLS errors? If goodmem_system_info fails with a certificate verification error (e.g., "self-signed certificate", "unable to verify the first certificate", or "CERT_HAS_EXPIRED"), the GoodMem server is using a self-signed or private CA certificate. Tell the user to set one of these environment variables before launching Claude Code:
NODE_EXTRA_CA_CERTS=/path/to/rootCA.pem — adds the CA to the trusted store (recommended)NODE_TLS_REJECT_UNAUTHORIZED=0 — disables certificate verification (local dev only)goodmem:mcp — MCP Tools ReferenceReference for all GoodMem MCP tools. Use this when you need to look up tool names, parameters, or behavior. The MCP tools let you operate GoodMem directly — create embedders, store memories, run retrieval — all via natural language.
goodmem:python — Python SDK ReferenceComplete API reference for the goodmem Python package. Use this when writing Python code that integrates with GoodMem. Includes method signatures, convenience shortcuts, model identifiers, and code examples.
goodmem:help — This skillOverview and setup instructions.
Ask Claude to perform GoodMem operations in natural language. Claude calls MCP tools behind the scenes.
Examples:
Ask Claude to write Python code using the GoodMem SDK.
Examples:
goodmem Python package