Help us improve
Share bugs, ideas, or general feedback.
From wiki
Use when the user wants to drop a source into the LLM Wiki inbox WITHOUT parsing it yet. Trigger phrases: "wiki:inbox <url|path>", "inbox this", "drop in inbox", "save to wiki later", "wiki: queue <url>", or when the user pastes a URL/file and says "for later". Stages the input in raw/_inbox/ so the wiki:parse skill (or the cron-ingest launchd job) can process it asynchronously. This skill does NOT call defuddle/yt-dlp/whisper — it only stages. Heavy parsing happens later.
npx claudepluginhub genkovich/llm-wiki --plugin wikiHow this skill is triggered — by the user, by Claude, or both
Slash command
/wiki:inboxThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Lightweight skill. Stages a source in `raw/_inbox/` without touching `sources/`, `entities/`, or `concepts/`. The `wiki:parse` skill (manual) or `cron-ingest.sh` launchd job (every 10 min) does the actual work later.
Guides technical evaluation of code review feedback: read fully, restate for understanding, verify against codebase, respond with reasoning or pushback before implementing.
Share bugs, ideas, or general feedback.
Lightweight skill. Stages a source in raw/_inbox/ without touching sources/, entities/, or concepts/. The wiki:parse skill (manual) or cron-ingest.sh launchd job (every 10 min) does the actual work later.
Find CLAUDE.md with frontmatter type: schema and scope: wiki:
pwd$VAULT_ROOT/**/wiki/CLAUDE.mdConfirm by reading frontmatter.
| Input | How to stage |
|---|---|
| URL (any web link, YouTube, etc.) | Write a .url file inside raw/_inbox/ with the URL on its own line and slug-derived filename |
| Local file path | Copy (do not move — leave original) into raw/_inbox/<basename> |
| Paste of raw text/markdown | Save as raw/_inbox/<slug>-<YYYY-MM-DD>.md with the text body |
| Multiple URLs in one message | One .url file per link |
youtube.com/watch?v=ABC → abc.url, anthropic.com/news/foo-bar → foo-bar.url)<video-id>.url or <title-slug>.url) — easier for yt-dlp lookup later-2, -3 etc.raw/_inbox/<slug>.<ext> with the contentls raw/_inbox/ | wc -l)com.wiki-parse runs every 10 min — will pick this up on next tick"wiki:parse raw/_inbox/ to run immediately"Do NOT append to log.md here. The wiki:parse skill writes the proper ingest log entry after processing. An inbox-only entry would just create noise.
sources/, entities/, concepts/, comparisons/, or questions/log.md from this skill_inbox/ — only add new ones_inbox/, ask the user before overwritingParsing is expensive (LLM context, whisper minutes, defuddle network). The user often wants to capture now, process later — like browser bookmarks or read-later apps. This skill is the wiki equivalent: 5-second drop-off, nothing more. Heavy lifting is async via launchd.