mirror of
https://github.com/basicmachines-co/basic-memory
synced 2026-06-21 13:47:35 +00:00
a70b355838
Add full plugin infrastructure for distribution: Marketplace: - Add marketplace.json for self-hosting at basicmachines-co/basic-memory - Users can add via: /plugin marketplace add basicmachines-co/basic-memory Slash Commands: - /remember [title] - Capture insights to Basic Memory - /continue [topic] - Resume previous work with context - /context <url> - Build context from memory:// URLs - /recent [timeframe] - Show recent activity Hooks: - PostToolUse: Confirm when notes are saved - Stop: Suggest /remember for valuable conversations Updated PLUGIN.md with comprehensive documentation. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com> Signed-off-by: phernandez <paul@basicmachines.co>
47 lines
1.4 KiB
Markdown
47 lines
1.4 KiB
Markdown
---
|
|
description: Resume previous work from Basic Memory context
|
|
argument-hint: [topic]
|
|
allowed-tools: mcp__basic-memory__build_context, mcp__basic-memory__recent_activity, mcp__basic-memory__search_notes, mcp__basic-memory__read_note
|
|
---
|
|
|
|
# Continue
|
|
|
|
Resume previous work by building context from Basic Memory.
|
|
|
|
## Arguments
|
|
|
|
- `$ARGUMENTS` - Topic, note title, or search terms to find previous context
|
|
|
|
## Your Task
|
|
|
|
Build context to continue previous work seamlessly.
|
|
|
|
1. **Find relevant context**:
|
|
|
|
If a specific topic is provided ("$ARGUMENTS"):
|
|
- Search for matching notes: `mcp__basic-memory__search_notes`
|
|
- Build context from matches: `mcp__basic-memory__build_context`
|
|
- Read key notes for details: `mcp__basic-memory__read_note`
|
|
|
|
If no topic provided:
|
|
- Get recent activity: `mcp__basic-memory__recent_activity` with timeframe "3d"
|
|
- Present what's been happening
|
|
- Ask which topic to dive into
|
|
|
|
2. **Present context**:
|
|
- Summarize current state of the work
|
|
- Highlight recent changes or progress
|
|
- List open items or next steps
|
|
- Show related context from the knowledge graph
|
|
|
|
3. **Be ready to continue**:
|
|
- Understand what was done before
|
|
- Know what needs to happen next
|
|
- Have relevant context loaded
|
|
|
|
## Tips
|
|
|
|
- Use `memory://topic` URL format with `build_context`
|
|
- Check multiple projects if needed (main, specs)
|
|
- Follow relations to find connected knowledge
|