mirror of
https://github.com/basicmachines-co/basic-memory
synced 2026-06-21 13:47:35 +00:00
9c3d2eb335
Reorganize plugin files into a dedicated subdirectory to keep them separate from the main Basic Memory Python package: - Move all plugin files to claude-code-plugin/ - Add README.md with quick start guide - Update installation paths to use subdirectory New structure: ``` claude-code-plugin/ ├── .claude-plugin/ │ ├── plugin.json │ └── marketplace.json ├── commands/ ├── skills/ ├── hooks/ ├── README.md └── PLUGIN.md ``` Installation: /plugin marketplace add basicmachines-co/basic-memory/claude-code-plugin /plugin install basic-memory@basicmachines 🤖 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.
|