con un clic
continue-conversation
// Resume previous work by building context from Basic Memory knowledge graph using memory URLs and recent activity
// Resume previous work by building context from Basic Memory knowledge graph using memory URLs and recent activity
| name | continue-conversation |
| description | Resume previous work by building context from Basic Memory knowledge graph using memory URLs and recent activity |
This skill helps you resume previous work by building context from the Basic Memory knowledge graph, enabling seamless continuation across sessions.
Use this skill when:
Ask if unclear:
Option A: Known Topic - Use build_context
# Navigate knowledge graph from a known starting point
mcp__basic-memory__build_context(
url="memory://topic-or-note-name",
depth=2, # How many relation hops to follow
timeframe="7d", # Recent changes
project="main" # or "specs" for specifications
)
Memory URL formats:
memory://note-title - Single notememory://folder/* - All notes in foldermemory://specs/SPEC-24* - Pattern matchingOption B: Recent Activity - What's been happening?
# See what's changed recently
mcp__basic-memory__recent_activity(
timeframe="3d", # "1d", "1 week", "2 weeks"
depth=1,
project="main"
)
Option C: Search for Context
# Find relevant notes
mcp__basic-memory__search_notes(
query="search terms",
page_size=10,
project="main"
)
Once you identify relevant notes:
mcp__basic-memory__read_note(
identifier="note-title-or-permalink",
project="main"
)
Summarize what you found:
# 1. Read the spec
mcp__basic-memory__read_note(
identifier="SPEC-24: Postgres Database Migration",
project="specs"
)
# 2. Check recent activity on related topics
mcp__basic-memory__build_context(
url="memory://SPEC-24*",
timeframe="7d",
project="specs"
)
# 3. Look at what's been done in the codebase
# (Use regular file tools for this)
# 1. Check recent activity across projects
mcp__basic-memory__recent_activity(
timeframe="3d",
project="main"
)
# 2. Read any notes from recent sessions
mcp__basic-memory__read_note(
identifier="relevant-note",
project="main"
)
# 1. Search for the topic
mcp__basic-memory__search_notes(
query="topic keywords",
project="main"
)
# 2. Build context from best match
mcp__basic-memory__build_context(
url="memory://found-note-permalink",
depth=2,
project="main"
)
Natural language timeframes:
"today" - Current day"yesterday" - Previous day"3d" or "3 days" - Last 3 days"1 week" or "7d" - Last week"2 weeks" - Last 2 weeks"1 month" - Last monthProject names are user-specific. To discover what's available:
mcp__basic-memory__list_memory_projects()
Routing rules (when to use which project) live in ## Projects of ~/.basic-memory/basic-memory.md if configured.
1. Read SPEC-24 from specs project
2. Check for related notes about implementation progress
3. Summarize:
- Spec overview and goals
- What's been completed (checkmarks)
- What's pending (checkboxes)
- Any blockers or decisions needed
1. Get recent activity for last 2 days
2. List modified notes with brief descriptions
3. Ask which topic to dive into
1. Search for "async client pattern"
2. Build context from matching note
3. Include related notes via relations
4. Present the full picture
After building context, you might:
Schema lifecycle management for Basic Memory: discover unschemaed notes, infer schemas, create and edit schema definitions, validate notes, and detect drift. Use when working with structured note types (Task, Person, Meeting, etc.) to maintain consistency across the knowledge graph.
Task management via Basic Memory schemas: create, track, and resume structured tasks that survive context compaction. Uses BM's schema system for uniform notes queryable through the knowledge graph.
Interactively edit Basic Memory notes using MCP tools - view, modify, and update notes in a conversational workflow (works with cloud and local)
Capture the meaningful context of a Claude Code thread into a single coherent Basic Memory note. On subsequent invocations within the same thread (identified by the JSONL session UUID) the same note is rewritten, not appended.
Help organize, link, and maintain the Basic Memory knowledge graph - find orphan notes, suggest relations, identify duplicates, and improve overall knowledge structure
Decide where a new note belongs in a Basic Memory project — which folder, matching project conventions read from a unified config file (basic-memory.md). Triggered automatically by a PreToolUse hook matching any MCP basic-memory write_note tool.