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>
44 lines
1.3 KiB
Markdown
44 lines
1.3 KiB
Markdown
---
|
|
description: Capture insights, decisions, or learnings to Basic Memory
|
|
argument-hint: [title] [optional: folder]
|
|
allowed-tools: mcp__basic-memory__write_note, mcp__basic-memory__search_notes
|
|
---
|
|
|
|
# Remember
|
|
|
|
Capture what we just discussed into a Basic Memory note.
|
|
|
|
## Arguments
|
|
|
|
- `$1` - Title for the note (required)
|
|
- `$2` - Folder to save in (optional, defaults to "notes")
|
|
|
|
## Your Task
|
|
|
|
Create a structured note capturing the key insights from our conversation.
|
|
|
|
1. **Analyze the conversation** for:
|
|
- Decisions made
|
|
- Insights discovered
|
|
- Problems solved
|
|
- Patterns identified
|
|
- Trade-offs discussed
|
|
|
|
2. **Structure the note** with:
|
|
- Clear title: "$1" (or generate one if not provided)
|
|
- Context section explaining the situation
|
|
- Main content with key points
|
|
- Observations using `[category]` format:
|
|
- `[decision]` - Choices made
|
|
- `[insight]` - Understanding gained
|
|
- `[pattern]` - Reusable approaches
|
|
- `[learning]` - Lessons learned
|
|
- Relations to link related concepts with `[[WikiLinks]]`
|
|
|
|
3. **Save using** `mcp__basic-memory__write_note`:
|
|
- folder: "$2" or "notes"
|
|
- Include relevant tags
|
|
- Project: use "main" unless user specifies otherwise
|
|
|
|
4. **Confirm** what was captured and where it was saved.
|