From memoryrelay
Use in every conversation to enable automatic recall of relevant context from MemoryRelay and intelligent capture of important information. Activates when starting work, making decisions, discovering patterns, or learning user preferences.
npx claudepluginhub memoryrelay/claude-pluginThis skill uses the workspace's default tool permissions.
You have access to MemoryRelay — a persistent long-term memory system. Use it to recall prior context and store important information across sessions.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
You have access to MemoryRelay — a persistent long-term memory system. Use it to recall prior context and store important information across sessions.
When the SessionStart hook fires, it will instruct you to call:
mcp__memoryrelay__session_start — creates a sessionmcp__memoryrelay__project_context — loads hot-tier memoriesmcp__memoryrelay__decision_check — checks pending decisionsAfter calling session_start, write the returned session ID to the tracking file path provided in the hook instructions. Do all of this silently.
Call mcp__memoryrelay__memory_recall or mcp__memoryrelay__memory_search when:
mcp__memoryrelay__decision_check to check for existing decisions on the topicmcp__memoryrelay__pattern_search to find established conventionsDo NOT recall for trivial questions, greetings, or simple file reads.
Call mcp__memoryrelay__memory_store when you learn something worth remembering:
Always capture:
mcp__memoryrelay__decision_record for architectural decisions)Never capture:
Capture format: Write concise, descriptive content. Include metadata:
mcp__memoryrelay__memory_store with:
content: "User prefers worktree-based development — never push directly to main"
metadata: {"category": "preference", "project": "claude-workspace"}
importance: 7
When an architectural decision is made or encountered:
mcp__memoryrelay__decision_check(project, topic) — see if a prior decision existsmcp__memoryrelay__decision_record(project, topic, decision, rationale)mcp__memoryrelay__decision_supersede if they confirm the changeWhen you notice a reusable pattern:
mcp__memoryrelay__pattern_search(query) — check if it already existsmcp__memoryrelay__pattern_create(name, description, example)mcp__memoryrelay__pattern_adopt — link it to the current project