用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/TuYv/ccpm --skill continue-conversation命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| 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: