llmwiki-ingest
Ingest one source document (or a folder of them) into the llmwiki. Use when the user drops a new markdown file, PDF, or URL into the wiki and asks you to…
Extract reusable patterns from recent sessions, propose framework improvements, and (with approval) update the framework docs. This is the dogfooding meta-loop — the project learns from its own usage. Use when the user says "learn from this", "what did we learn", "extract
$ npx -y skills add Pratiyush/llm-wiki --skill self-learn --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/self-learnContext preview
The summary Claude sees to decide when to auto-load this skill.
Extract reusable patterns from recent sessions, propose framework improvements, and (with approval) update the framework docs. This is the dogfooding meta-loop — the project learns from its own usage. Use when the user says "learn from this", "what did we learn", "extract
name: self-learn description: Extract reusable patterns from recent sessions, propose framework improvements, and (with approval) update the framework docs. This is the dogfooding meta-loop — the project learns from its own usage. Use when the user says "learn from this", "what did we learn", "extract lessons", "update the framework", "add this to steering rules", or after completing any substantial feature or debugging session.
Closes the **Dogfooding Meta-Loop** from the Open Source Framework v4.1.
Every non-trivial session on a framework-driven project produces lessons: patterns that worked, patterns that failed, gotchas hit, decisions made. Most tools let those lessons evaporate. This skill captures them, runs a quality gate, and proposes framework updates.
**It is the reason the framework evolves.** Framework v4.0 → v4.1 was a `self-learn` pass that folded llmwiki's learnings back into the parent Open Source Framework.
Do NOT invoke when:
1. **Gather context.** Read:
2. **Extract candidate lessons.** Look for:
3. **Score each candidate** on two axes:
4. **Propose updates** grouped by destination:
| Destination | When to update it | |---|---| | `.kiro/steering/<rule>.md` (project-specific) | 2+ data points in this one project | | `docs/framework.md` in the project repo | Learning applies to all projects of this type | | `.framework/Framework.md` (personal Obsidian copy) | Cross-cutting rule that applies to all open-source projects | | `CHANGELOG.md` | Every update gets logged as framework version bump | | New skill under `.claude/skills/` | Repeatable workflow that warrants its own invocation | | New phase in the pipeline | If the learning is about a missing step |
5. **Show the diff to the user before applying anything.**
6. **With approval, apply the changes:**
7. **Report** what changed, with line counts and a list of destination files.
## Self-learn report: <project> / <date> ### Sources consulted - <file 1> - <file 2> ### Candidate lessons (scored) | # | Lesson | Generality | Confidence | Destination | |---|---|---|---|---| | 1 | <lesson> | project \| type \| framework | 1 \| 2 \| 3+ | <file> | | 2 | ... | ... | ... | ... | ### Proposed updates **1. .kiro/steering/page-format.md — add rule** ```diff + ## New rule from self-learn + <content>
**2. docs/framework.md — new section under Phase 5.5**
+ ### New QA check from self-learn + <content>
Apply all proposed updates? (y/n)
## Hard rules 1. **Never update the framework silently.** Always surface the diff and ask. 2. **Never invent a learning from one data point.** If confidence is 1, mark it as a draft and wait for a second occurrence. 3. **Respect the framework hierarchy.** Project → Type → Framework. Don't promote a project-specific learning to a cross-cutting rule without 3+ data points across projects. 4. **Version-bump the framework** (e.g. v4.1 → v4.2) on any update to `docs/framework.md`. Update `CHANGELOG.md` in sync. 5. **Never touch code** as part of self-learn. This skill only touches docs, steering files, and framework versioning. Code changes go through the normal PR flow. 6. **Dogfood itself.** Self-learn should produce a session transcript that future self-learn passes can read. ## Example outcomes (from llmwiki's own history) - Framework v4.0 → v4.1: added **Phase 1.25 Research** after discovering that cloning 15 reference repos up-front prevented 3+ hours of rework during Phase 3 Structure. - Added **`.llmwikiignore`** rule after hitting sessions containing contract data that shouldn't enter the wiki. - Added **live-session detection** (`<60 min`) after the converter read a file mid-write and produced a truncated markdown. - Added **"no AI co-authored-by"** rule to `.kiro/steering/contributing-rules.md` after a first-run slip. Each of these started as a single session observation and got promoted
LLM-powered knowledge base from your Claude Code, Codex CLI, Cursor, Gemini CLI, and Obsidian sessions. Built on Andrej Karpathy's LLM Wiki pattern.
Repo: Pratiyush/llm-wiki
Ingest one source document (or a folder of them) into the llmwiki. Use when the user drops a new markdown file, PDF, or URL into the wiki and asks you to…
Answer a question by querying the user's llmwiki. Use when the user asks about their own past work — "what did I decide about X", "what have I been working…
Sync Claude Code session transcripts into the user's llmwiki and ingest them into the wiki. Use when the user says "sync the wiki", "update llmwiki", "ingest…
Maintain an llmwiki-style open-source project across the full framework pipeline. Use when the user says "maintain the project", "check my tasks", "update…
Run the complete llmwiki pipeline from scratch — init, sync, graph, build, lint, and serve. Use when the user says "run everything", "full pipeline",…