From pensyve
Loads relevant memories from Pensyve at session start for cross-session continuity. Supports summary and full recall modes.
How this skill is triggered — by the user, by Claude, or both
Slash command
/pensyve:context-loaderThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Load relevant memories from Pensyve at the start of a session to provide cross-session continuity. Respects the `context_loading` configuration setting.
Load relevant memories from Pensyve at the start of a session to provide cross-session continuity. Respects the context_loading configuration setting.
Note on invocation: The SessionStart hook has already performed a scoped recall and (if applicable) injected a continuity primer. Invoking this skill adds deeper on-demand context — not a replacement for the hook's work. Expect to see both.
When this skill is invoked (typically at session start), follow these steps:
Check the mode argument if provided. Otherwise, respect the context_loading setting from the plugin configuration (pensyve-plugin.local.md):
/recall to search memories on demand."If no mode is specified and no configuration is found, default to summary.
Run the following pensyve_recall queries to gather session context:
pensyve_recall with query "decided" (limit: 5)pensyve_recall with query "issue OR bug OR error OR problem" (limit: 5)pensyve_recall with query "workflow OR pattern OR process" (limit: 5)pensyve_recall with query "*" (limit: 10) -- broad query to capture recent memories by recencyDeduplicate results across queries (same memory ID should appear only once).
If the SessionStart hook detected a continuation (check plugin session state for recent_context — this is set by the hook when shared-entity score ≥0.7 against episodic recall results; it is a plugin-layer concept, not a structured server-side episode link), structure the primer around continuity rather than fresh recall:
Continuing:
<entity-set>— prior work contextLast lessons:
- [recent observation 1]
- [recent observation 2]
Open questions carried forward:
- [if any observations had
open-questionprovenance]
Note: Continuity is best-effort — it is inferred from shared-entity overlap in recent episodic recall, not from a persisted episode-to-episode link. The MCP server has no episode-listing API today. When in doubt, the hook falls back to a fresh-session primer.
If no continuation was detected, present a standard recall-based primer.
Present a concise briefing with the most important items:
Session Context (from Pensyve memory)
Recent Decisions:
- auth-service: Using RS256 for JWT signing to support key rotation
- api-design: POST endpoints return 201 with created resource
Known Issues:
- database: Migration script requires Python 3.11+
Active Patterns:
- testing: Integration tests need tmpdir cleanup after filesystem operations
Use
/recall <query>to search for specific memories.
Rules for summary mode:
Present a detailed briefing with scores and metadata:
Session Context (from Pensyve memory)
Recent Decisions (3 found):
Entity Decision Confidence When auth-service Using RS256 for JWT signing 0.9 2026-03-15 api-design POST endpoints return 201 0.9 2026-03-14 database SQLite for MVP, migrate to Postgres later 0.9 2026-03-12 Known Issues (2 found):
Entity Issue Confidence Score database Migration requires Python 3.11+ 0.8 0.91 cache Invalidation race condition on concurrent writes 0.8 0.85 Workflow Patterns (1 found):
Entity Pattern Confidence Score testing Integration tests need tmpdir cleanup 0.7 0.78 Recent Activity (5 unique memories, most recent first):
Type Entity Summary Score semantic auth-service RS256 JWT signing 0.92 episodic database Debugged migration failure 0.88 procedural deploy Run tests before deploy 0.75 Total memories loaded: 11 | Use
/recall <query>for targeted search |/inspect <entity>for entity details
Rules for full mode:
.claude/ memory files. All memory operations go through the Pensyve MCP tools exclusively./remember to start building context."pensyve_recall queries fail but others succeed, present the successful results and note the failures briefly.npx claudepluginhub khwstolle/memory --plugin pensyve2plugins reuse this skill
First indexed Jul 8, 2026
Loads relevant memories from Pensyve at session start for cross-session continuity. Supports summary and full recall modes.
Persistent memory system that captures observations, session summaries, and supports search. Useful for recalling past work, saving decisions, and looking up sessions by date or query.
Routes recall intents (e.g., "思い出して", "resume", "続き") to the correct memory path: resume pack, decisions/patterns, checkpoint-bridge, session list, or keyword search. Useful for resuming work or retrieving past context.