This skill should be used when working with persistent memory, storing information for later recall, or building context across sessions. Triggers on questions about remembering, recalling, storing preferences, or session management. <example> Context: User wants to store a preference user: "Remember that I prefer 2-space indentation" </example> <example> Context: User wants to recall past context user: "What do you remember about my coding style?" </example>
From psnnpx claudepluginhub aladac/claude-pluginsThis skill uses the workspace's default tool permissions.
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Migrates code, prompts, and API calls from Claude Sonnet 4.0/4.5 or Opus 4.1 to Opus 4.5, updating model strings on Anthropic, AWS, GCP, Azure platforms.
Optimizes cloud costs on AWS, Azure, GCP via rightsizing, tagging strategies, reserved instances, spot usage, and spending analysis. Use for expense reduction and governance.
| Tool | Purpose |
|---|---|
mcp__plugin_psn_core__memory_store | Store a memory with subject and content |
mcp__plugin_psn_core__memory_recall | Semantic search for memories |
mcp__plugin_psn_core__memory_search | Search by subject pattern |
mcp__plugin_psn_core__memory_forget | Delete a memory by ID |
mcp__plugin_psn_core__memory_list | List all memory subjects |
| Command | Purpose |
|---|---|
/memory:store | Store new memory |
/memory:recall | Recall memories |
/memory:search | Search by subject |
psn:memory-curator - Memory cleanup and organizationGuidance for effective use of the personality memory system.
The memory system uses:
~/.local/share/personality/main.dbpsn memory store/recall/search/forget/listpsn-mcp (stdio transport)Use hierarchical dot notation:
user.preferences.{category} # User preferences
user.workflows.{name} # User workflow patterns
project.{name}.{aspect} # Project-specific info
session.{name} # Saved sessions
tools.{name}.{aspect} # Tool usage patterns
code.patterns.{language} # Code patterns learned
Store automatically when:
Recall proactively when:
Subject: user.preferences.commit_style
Content: Uses conventional commits with scope, e.g., "feat(api): add endpoint"
Subject: project.my-api.architecture
Content: Uses hexagonal architecture with ports/adapters in src/ports/ and src/adapters/
Subject: session.morning-work
Content: {
"working_directory": "~/Projects/api",
"context": "Implementing pagination for /users endpoint",
"pending_tasks": ["Add tests", "Update docs"],
"timestamp": "2024-01-15T10:30:00Z"
}