用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/javimosch/open-claw-skills --skill lore命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | lore |
| description | Search and ingest knowledge from Lore, a research repository with citations |
| version | 1.0 |
| user-invocable | false |
Lore is a research knowledge repository you have access to via MCP tools. It stores documents, meeting notes, interviews, and decisions with full citations — not just summaries, but the original content linked back to its source. Use it to ground your answers in evidence and to preserve important context from your conversations.
Push content into Lore using the ingest tool whenever you encounter information worth preserving:
Always include:
source_url: The original URL (Slack permalink, Notion page URL, GitHub issue URL) for citation linking.source_name: A human-readable label like "Slack #product-team" or "GitHub issue #42".project: The project this content belongs to.Ingestion is idempotent — calling ingest with the same content twice is safe and cheap (returns immediately with deduplicated: true).
Before answering questions about past decisions, user feedback, project history, or anything that might already be documented:
Use search for quick lookups. Pick the right mode:
hybrid (default): Best for most querieskeyword: For exact terms, names, identifierssemantic: For conceptual queries ("user frustrations", "pain points")Use research only when the question requires cross-referencing multiple sources or synthesizing findings. It costs 10x more than search — don't use it for simple lookups.
Use get_source with include_content=true when you need the full original text of a specific document.
Use retain (not ingest) for short, discrete pieces of knowledge:
When presenting information from Lore, always cite your sources:
source_url is available, link to the originalUser asks about past decisions:
search("authentication approach decisions", project: "my-app")get_source(source_id, include_content: true)User shares meeting notes:
ingest(content: "...", title: "Sprint Planning Jan 15", project: "my-app", source_type: "meeting", source_name: "Google Meet", participants: ["Alice", "Bob"])User asks a broad research question:
research(task: "What do users think about our onboarding flow?", project: "my-app")