Stevesolun commited on
Commit
2eb06dc
·
verified ·
1 Parent(s): e87ebcc

Add files using upload-large-folder tool

Browse files
Files changed (1) hide show
  1. graph/README.md +18 -0
graph/README.md CHANGED
@@ -23,6 +23,7 @@ The runtime recommendation paths use this graph in two ways:
23
 
24
  | File | Contents |
25
  |---|---|
 
26
  | `wiki-graph.tar.gz` | Full LLM-wiki: entity pages, converted skill bodies, mirrored agent bodies, concept pages, `graphify-out/graph.json`, `graph-delta.json`, export manifest, communities, external catalogs, and Obsidian metadata |
27
  | `skills-sh-catalog.json.gz` | Compressed Skills.sh catalog for the 89,463 body-backed entries shipped in the wiki |
28
  | `communities.json` | Current Louvain community export |
@@ -37,6 +38,15 @@ and embed the graph export ID in `<meta name="ctx-graph-export-id">`. Static
37
  PNG snapshots are intentionally not shipped because they can drift from the
38
  current tarball without an executable freshness check.
39
 
 
 
 
 
 
 
 
 
 
40
  ## What Is Inside `wiki-graph.tar.gz`
41
 
42
  - `entities/skills/` - all skill entity pages, including `skills-sh-*` pages
@@ -61,6 +71,14 @@ conversion.
61
 
62
  ## Extract
63
 
 
 
 
 
 
 
 
 
64
  ```bash
65
  mkdir -p ~/.claude/skill-wiki
66
  tar xzf graph/wiki-graph.tar.gz -C ~/.claude/skill-wiki/
 
23
 
24
  | File | Contents |
25
  |---|---|
26
+ | `wiki-graph-runtime.tar.gz` | Fast install artifact used by default `ctx-init --graph`: `graphify-out/*`, the external Skills.sh catalog, 13 harness pages, wiki index files, and Obsidian metadata needed for recommendations and harness dry-runs without expanding every entity page |
27
  | `wiki-graph.tar.gz` | Full LLM-wiki: entity pages, converted skill bodies, mirrored agent bodies, concept pages, `graphify-out/graph.json`, `graph-delta.json`, export manifest, communities, external catalogs, and Obsidian metadata |
28
  | `skills-sh-catalog.json.gz` | Compressed Skills.sh catalog for the 89,463 body-backed entries shipped in the wiki |
29
  | `communities.json` | Current Louvain community export |
 
38
  PNG snapshots are intentionally not shipped because they can drift from the
39
  current tarball without an executable freshness check.
40
 
41
+ ## Runtime vs Full Wiki
42
+
43
+ `ctx-init --graph` installs `wiki-graph-runtime.tar.gz` by default. That is the
44
+ right path for recommendations and first-time installs because it avoids
45
+ expanding hundreds of thousands of markdown files while still shipping the
46
+ harness catalog pages needed by `ctx-harness-install --dry-run`. Use
47
+ `ctx-init --graph --graph-install-mode full` or manual full extraction when you
48
+ want local wiki browsing, Obsidian, or the converted skill body tree.
49
+
50
  ## What Is Inside `wiki-graph.tar.gz`
51
 
52
  - `entities/skills/` - all skill entity pages, including `skills-sh-*` pages
 
71
 
72
  ## Extract
73
 
74
+ Default runtime install:
75
+
76
+ ```bash
77
+ ctx-init --graph
78
+ ```
79
+
80
+ Full wiki extraction:
81
+
82
  ```bash
83
  mkdir -p ~/.claude/skill-wiki
84
  tar xzf graph/wiki-graph.tar.gz -C ~/.claude/skill-wiki/