How this skill is triggered — by the user, by Claude, or both
Slash command
/vector-memory:waypoint-setThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Create a comprehensive waypoint snapshot using vector-memory.
Create a comprehensive waypoint snapshot using vector-memory.
Review the session for significant items worth persisting long-term.
Extract:
Skip:
For each significant item, call mcp__vector-memory__store_memories with appropriate metadata tags.
Call mcp__vector-memory__set_waypoint with:
project: [repository/project name]
branch: [current git branch]
summary: [2-3 sentences: what was the primary goal, what's the current status]
completed:
- [specific items with file paths where relevant]
- [e.g., "Implemented user auth in server/auth/login.ts"]
in_progress_blocked:
- [items still in flight with current state]
- [blockers with context on what's needed]
key_decisions:
- [decisions made and WHY - rationale is crucial]
- [e.g., "Chose JWT over sessions because X, Y, Z"]
next_steps:
- [concrete, actionable items]
- [prioritized if possible]
memory_ids:
- [IDs returned from store_memories calls above]
Summarize what was stored:
npx claudepluginhub aeriondyseti/vector-memory-mcp --plugin vector-memorySaves session state and writes a handoff note so the next Claude Code session can continue cleanly. Read/writes a remember.md file at the project root.
Saves session progress by committing changes, pushing to remote, creating/updating pull requests, persisting decisions/patterns to memory layers, compiling briefings, and archiving features. Use for checkpointing work or PRs.
Manages persistent memory across Claude Code sessions via AutoMem. Recall project context, architectural decisions, bug fixes, user preferences, and patterns at session start or debugging.