From claude-lore
Initialize the lore knowledge base and memory system for the current project. Run once per project before using lore-capture or lore-ingest.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-lore:lore-initThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Set up the lore wiki and memory system for the current project. Run this once.
Set up the lore wiki and memory system for the current project. Run this once.
Derive the project slug from the current working directory:
/ or \) with -C: → drop it)C:\Development\my-project → Development-my-projectLore base (platform-aware):
$env:USERPROFILE\.claude\projects\<slug>\~/.claude/projects/<slug>/Paths to create:
<lore-base>/lore/inbox/<lore-base>/lore/.pending/<lore-base>/lore/project/<lore-base>/lore/architecture/<lore-base>/lore/decisions/<lore-base>/lore/feedback/<lore-base>/lore/user/<lore-base>/memory/# Lore — Knowledge Base
## Categories
- **project/** — platform status, product vision, roadmap, demo notes
- **architecture/** — modules, data flows, technical design decisions
- **decisions/** — ADRs: technology choices and tradeoffs
- **feedback/** — coding preferences, workflow rules the user has stated
- **user/** — user profile, working style, expertise areas
## Pages
(empty — add pages as you ingest captures)
# Ingester Instructions
When processing a capture from inbox, follow these rules:
## Determine the target page
Use `suggested_category` from the capture frontmatter to pick the category folder.
Within that folder, find the most relevant existing page or create a new one.
Naming: `<topic-slug>.md` — 2-4 words, kebab-case, describing the subject.
## Merge vs create
- If a page on this topic already exists: merge the new content in. Update rather than duplicate.
- If no page exists: create it with a clear title and the capture content.
## Page format
```markdown
# <Title>
<Content — written to be understood weeks later with no conversation context.
Include: what was decided, why, what alternatives were rejected, any caveats.>
## Related
- [[other-page-slug]]
After writing or updating a page:
<category>/_index.md — one-line entry per page in that categoryindex.md — add the page under its category if it's new
## Step 4: Create memory/MEMORY.md
```markdown
# Memory Index
(empty — memories are added automatically during conversations)
cd <lore-base>
git init
git add -A
git commit -m "lore: init knowledge base"
Report:
Lore initialized at <lore-base>
Directories created:
lore/inbox/ ← captures land here (/lore-capture)
lore/.pending/ ← in-flight during ingest
lore/project/
lore/architecture/
lore/decisions/
lore/feedback/
lore/user/
memory/ ← auto memory (MEMORY.md index)
Next steps:
/lore-capture — capture knowledge from this conversation
/lore-ingest — compile inbox into wiki pages
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.