"Guide the memory session lifecycle - start sessions, record observations, search memories, and end sessions with Z-reports. Use when working with Plugged.in memory system."
Install
npx skillscat add veriteknik/pluggedin-plugin/memory-workflow Install via the SkillsCat registry.
SKILL.md
Memory Workflow
Manage the Plugged.in memory session lifecycle.
Session Lifecycle
- Start Session: Call
pluggedin_memory_session_startat the beginning of work - Observe: During work, call
pluggedin_memory_observeto record:tool_call/tool_result: Tool usage and outcomesuser_preference: Explicit user preferenceserror_pattern: Errors and their resolutionssuccess_pattern: What worked welldecision: Key decisions madeinsight: Conclusions worth remembering
- Search: Use
pluggedin_memory_searchto find relevant past memories (returns lightweight summaries) - Details: Use
pluggedin_memory_detailsfor full content of specific memories - End Session: Call
pluggedin_memory_session_endto generate a Z-report
Arguments
$ARGUMENTS= "start": Start a new memory session$ARGUMENTS= "end": End the current session with Z-report$ARGUMENTS= "status": Show current session status
What to Observe
Record observations for anything that would be useful in future sessions:
- Error patterns and their solutions
- User preferences about workflow, tools, or coding style
- Successful approaches to recurring problems
- Key architectural decisions and their rationale
- Tool configurations that worked
Progressive Disclosure
Memory search uses a 3-layer system for token efficiency:
- Search (Layer 1): Returns summaries (50-150 tokens each)
- Timeline (Layer 2): Adds temporal context
- Details (Layer 3): Returns full content
Always start with search. Only request details for memories you actually need.