@zosmaai/pi-llm-wiki 0.6.1 → 0.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/prompts/wiki-ingest.md +1 -1
- package/prompts/wiki-lint.md +1 -1
- package/prompts/wiki-status.md +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zosmaai/pi-llm-wiki",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.2",
|
|
4
4
|
"description": "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.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pi",
|
package/prompts/wiki-ingest.md
CHANGED
|
@@ -19,7 +19,7 @@ Read the LLM Wiki skill at `.pi/skills/llm-wiki/SKILL.md` first to understand th
|
|
|
19
19
|
|
|
20
20
|
1. Read `.llm-wiki/config.yaml` and `.llm-wiki/.discoveries/history.json`
|
|
21
21
|
2. If a specific path is given (e.g., `/wiki-ingest .llm-wiki/raw/articles/my-file.md`), process just that file
|
|
22
|
-
3. If no path given, scan all files in `.llm-wiki/raw/` and find ones not in history
|
|
22
|
+
3. If no path given, scan all files in `.llm-wiki/raw/` (respecting `.gitignore` — skip any matched files) and find ones not in history
|
|
23
23
|
4. For each new source:
|
|
24
24
|
a. Read the full content
|
|
25
25
|
b. Briefly discuss with the user: "This is about [topic]. Key points: [summary]. Any specific emphasis?"
|
package/prompts/wiki-lint.md
CHANGED
|
@@ -17,7 +17,7 @@ Read the LLM Wiki skill at `.pi/skills/llm-wiki/SKILL.md` first to understand th
|
|
|
17
17
|
|
|
18
18
|
## Steps
|
|
19
19
|
|
|
20
|
-
1. Scan all files in `.llm-wiki/wiki/`
|
|
20
|
+
1. Scan all files in `.llm-wiki/wiki/` (respecting `.gitignore` — skip any matched files)
|
|
21
21
|
2. Check for:
|
|
22
22
|
- **Contradictions:** Conflicting claims between pages
|
|
23
23
|
- **Orphans:** Pages with zero inbound `[[wikilinks]]`
|
package/prompts/wiki-status.md
CHANGED
|
@@ -11,8 +11,8 @@ Show a quick overview of wiki health and statistics.
|
|
|
11
11
|
|
|
12
12
|
## Steps
|
|
13
13
|
|
|
14
|
-
1. Count sources in `.llm-wiki/raw/` (recursive)
|
|
15
|
-
2. Count pages in `.llm-wiki/wiki/` (by type: entities, concepts, sources, syntheses)
|
|
14
|
+
1. Count sources in `.llm-wiki/raw/` (recursive, respecting `.gitignore`)
|
|
15
|
+
2. Count pages in `.llm-wiki/wiki/` (by type: entities, concepts, sources, syntheses, respecting `.gitignore`)
|
|
16
16
|
3. Check `.llm-wiki/wiki/LOG.md` for last ingest, lint, and discover dates
|
|
17
17
|
4. Check for orphan pages (zero inbound links)
|
|
18
18
|
5. Read `.llm-wiki/.discoveries/gaps.json` for known gaps
|