From claude-lore
Compile all pending lore captures into structured wiki pages. Merges inbox files into cross-linked pages, updates indexes, and commits to git.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-lore:lore-ingestThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Compile captures from the inbox into the lore wiki.
Compile captures from the inbox into the lore wiki.
Derive the project slug and lore base path using the same logic as lore-capture:
-, strip Windows drive letter$env:USERPROFILE\.claude\projects\<slug>\lore\~/.claude/projects/<slug>/lore/If lore base does not exist, tell the user to run /lore-init first and stop.
List files in <lore-base>/inbox/.
If empty: report "Lore inbox is empty — nothing to ingest." and stop.
Move all files from inbox/ to .pending/ before processing (so a crash mid-ingest doesn't lose captures or re-process them).
Use the appropriate shell:
Move-Item "$lore\inbox\*" "$lore\.pending\"mv "$lore/inbox/"* "$lore/.pending/"Read:
<lore-base>/index.md — overall structure.pending/suggested_category)<lore-base>/INGESTER.md — merge/create rules (if present); otherwise use the rules belowFor each capture file in .pending/:
Determine target page:
suggested_category to pick the category folder (project/, architecture/, decisions/, feedback/, user/)Merge or create:
Page format:
# <Title>
<Content written to be understood weeks later with no conversation context.
Include: what was decided, why, alternatives rejected, caveats.>
## Related
- [[other-page-slug]]
Update indexes after each page:
<category>/_index.md — one-line entry per page in that category<lore-base>/index.md — add new pages under their category# Unix/macOS
git -C "<lore-base>" add -A
git -C "<lore-base>" commit -m "lore: ingest N capture(s)"
# Windows (PowerShell)
git -C "$lore" add -A
git -C "$lore" commit -m "lore: ingest N capture(s)"
If git is not initialized, tell the user to run /lore-init first.
Delete all files from .pending/ after a successful commit.
Report: "Lore ingest complete — N page(s) updated, M page(s) created. Run /lore-capture to add more knowledge."
npx claudepluginhub tiagosilva07/claude-lore --plugin claude-loreProvides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.