UNPKG

@zosmaai/pi-llm-wiki

Version:

Self-maintaining LLM Wiki for Pi — Karpathy-pattern knowledge base with immutable source capture, automated ingestion, search, linting, and Obsidian-compatible vault. auto-updating personal & company wiki.

31 lines (23 loc) 1.2 kB
--- description: Auto-discover new sources from the web. Searches based on config topics and known knowledge gaps. argument-hint: "[--topic <topic>]" section: LLM Wiki topLevelCli: true --- # /wiki-discover Find new source material for the wiki by searching the web and capturing them as source packets. ## User Arguments $ARGUMENTS ## Steps 1. Call `wiki_status()` to get the current topic and mode from the wiki config. 2. Use `wiki_search(query=<topic>)` to find existing pages and identify what's already covered. 3. Search the web for new sources: - If `--topic` is specified in `$ARGUMENTS`, focus on that topic - Otherwise, search for the wiki's main topic + "latest", "news", "update" 4. For each promising result (max 5-10): a. Call `wiki_capture_source(url=<url>)` to capture it as an immutable source packet b. Skip ads, listicles, and duplicates prefer in-depth analysis 5. Report: "Discovered [N] new sources captured as packets. Run `/wiki-ingest` to synthesize them into knowledge pages." **Rules:** - Do NOT manually save files to `raw/` always use `wiki_capture_source`. - The extension handles manifest, extraction, and skeleton page creation automatically.