-
Notifications
You must be signed in to change notification settings - Fork 176
Description
Summary
Basic Memory skills (memory-notes, memory-tasks, memory-reflect, etc.) should be discoverable and loadable through multiple access patterns — not just file reads. This would make BM skills first-class citizens across any agent framework.
Motivation
Currently, agents need to know the filesystem path to a SKILL.md and read it into context. This works but is tightly coupled to specific agent frameworks. With FastMCP 3.0 introducing the Skills Provider, there is an opportunity to make BM skills natively available via MCP resources, CLI, and existing agent skill directories — all from the same source files.
Proposal
1. FastMCP Skills Provider (MCP-native discovery)
Since Basic Memory already uses FastMCP, add a SkillsDirectoryProvider to the MCP server that exposes BM skills as skill:// resources:
from fastmcp.server.providers.skills import SkillsDirectoryProvider
# Point at wherever BM ships its skills
mcp.add_provider(SkillsDirectoryProvider(roots=BM_SKILLS_DIR))This gives any MCP client:
list_resources()→ discoversskill://memory-notes/SKILL.md,skill://memory-tasks/SKILL.md, etc.read_resource("skill://memory-notes/SKILL.md")→ full skill content injected into context- Manifest resources for supporting files (schemas, examples, references)
2. CLI-native skill loading
Add a skill subcommand to the basic-memory CLI:
# List available skills
basic-memory skill list
# Dump skill content to stdout (agent execs this, content lands in context)
basic-memory skill load memory-notes
# Load multiple at once
basic-memory skill load memory-notes memory-tasksThis makes skills accessible to any agent that can shell out — Claude Code, Codex, Cursor, or any custom agent. No MCP required.
3. Agent skills directory integration
Skills should also be installable into standard agent skill directories (~/.claude/skills/, ~/.cursor/skills/, etc.) so they are picked up natively by those tools. This is already partially addressed by the basic-memory-skills repo.
Three access paths, one source of truth
| Access Pattern | Who Uses It | How |
|---|---|---|
| FastMCP Skills Provider | Any MCP client (Claude Desktop, Cursor, etc.) | skill:// resources |
CLI basic-memory skill |
Any agent with exec/shell access | stdout injection |
| Agent skills directories | Claude Code, Cursor, OpenClaw, etc. | Native skill scanning |
Open Questions
- Where do skills physically live? Inside the
basic-memoryPython package? Separate repo (basic-memory-skills)? Both (bundled core + extensible)? - Skill distribution — should
basic-memory skill install <name>pull from a registry, or just copy bundled skills into the appropriate agent directory? - Relationship to existing skills repo — the basic-memory-skills repo already ships skills. How does this integrate?
References
- FastMCP Skills Provider docs
- basic-memory-skills repo
- FastMCP vendor providers already cover Claude, Cursor, Codex, Gemini, etc.