npx skills add https://github.com/obra/episodic-memory --skill remembering-conversationsHow Remembering Conversations fits into a Paperclip company.
Remembering Conversations drops into any Paperclip agent that handles this kind of work. Assign it to a specialist inside a pre-configured PaperclipOrg company and the skill becomes available on every heartbeat — no prompt engineering, no tool wiring.
Pre-configured AI company — 18 agents, 18 skills, one-time purchase.
SKILL.md65 linesExpandCollapse
---name: remembering-conversationsdescription: Use when user asks 'how should I...' or 'what's the best approach...' after exploring code, OR when you've tried to solve something and are stuck, OR for unfamiliar workflows, OR when user references past work. Searches conversation history.--- # Remembering Conversations **Core principle:** Search before reinventing. Searching costs nothing; reinventing or repeating mistakes costs everything. ## Mandatory: Use the Search Agent **YOU MUST dispatch the search-conversations agent for any historical search.** Announce: "Dispatching search agent to find [topic]." Then use the Task tool with `subagent_type: "search-conversations"`: ```Task tool: description: "Search past conversations for [topic]" prompt: "Search for [specific query or topic]. Focus on [what you're looking for - e.g., decisions, patterns, gotchas, code examples]." subagent_type: "search-conversations"``` The agent will:1. Search with the `search` tool2. Read top 2-5 results with the `show` tool3. Synthesize findings (200-1000 words)4. Return actionable insights + sources **Saves 50-100x context vs. loading raw conversations.** ## When to Use You often get value out of consulting your episodic memory once you understand what you're being asked. Search memory in these situations: **After understanding the task:**- User asks "how should I..." or "what's the best approach..."- You've explored current codebase and need to make architectural decisions- User asks for implementation approach after describing what they want **When you're stuck:**- You've investigated a problem and can't find the solution- Facing a complex problem without obvious solution in current code- Need to follow an unfamiliar workflow or process **When historical signals are present:**- User says "last time", "before", "we discussed", "you implemented"- User asks "why did we...", "what was the reason..."- User says "do you remember...", "what do we know about..." **Don't search first:**- For current codebase structure (use Grep/Read to explore first)- For info in current conversation- Before understanding what you're being asked to do ## Direct Tool Access (Discouraged) You CAN use MCP tools directly, but DON'T:- `mcp__plugin_episodic-memory_episodic-memory__search`- `mcp__plugin_episodic-memory_episodic-memory__show` Using these directly wastes your context window. Always dispatch the agent instead. See MCP-TOOLS.md for complete API reference if needed for advanced usage.Brainstorming
Forces Claude to actually think before coding, which frankly should be the default but isn't. Blocks all implementation until you've walked through context expl
Dispatching Parallel Agents
When you've got multiple independent failures across different test files or subsystems, this cuts debugging time by running separate agents in parallel instead
Executing Plans
Takes a written implementation plan and executes it step by step with proper checkpoints. Loads the plan file, reviews it critically for gaps or unclear instruc