wiki-export — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited wiki-export (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
You are exporting the wiki's wikilink graph to structured formats so it can be used in external tools (Gephi, Neo4j, custom scripts, browser visualization).
llm-wiki/SKILL.md (walk up CWD for .env → ~/.obsidian-wiki/config → prompt setup). This gives OBSIDIAN_VAULT_PATHIf the user's invocation includes a project name — e.g. /wiki-export prismor, "export the prismor project", "export project:security" — activate project filter mode:
id starts with projects/<name>/ (path-based match)tags array contains <name> (tag-based match)(filtered: project:<name> — X of Y pages)graph.graph.filter = "project:<name>" in the JSON output.If both a project filter and a visibility filter are active, apply both (project filter first, then visibility filter on the remaining set).
By default, all pages are exported regardless of visibility tags. This preserves existing behavior.
If the user requests a filtered export — phrases like "public export", "user-facing export", "exclude internal", "no internal pages" — activate visibility filtered mode:
{visibility/internal, visibility/pii}(filtered: visibility/internal, visibility/pii excluded)Pages with no visibility/ tag, or tagged visibility/public, are always included.
Glob all .md files in the vault (excluding _archives/, _raw/, .obsidian/, index.md, log.md, _insights.md). Apply any active filters (project and/or visibility) after collecting the full file list.
For each page, extract from frontmatter:
id — relative path from vault root, without .md extension (e.g. concepts/transformers)label — title field from frontmatter, or filename if missingcategory — directory prefix (concepts, entities, skills, references, synthesis, projects, or journal)tags — array from frontmatter tags fieldsummary — frontmatter summary field if presentThis is your node list.
For each page, Grep the body for \[\[.*?\]\] to extract all wikilinks:
[[target]] or [[target|display]] — use the target part only.md){source: page_id, target: linked_id, relation: "wikilink", confidence: "EXTRACTED"}^[inferred] or ^[ambiguous], override confidence accordinglyTyped edge enrichment: After building the wikilink edge list, read each page's relationships: frontmatter block. For each {target, type} entry:
target YAML value is a quoted wikilink string such as "[[concepts/lstm]]". Strip the surrounding [[ and ]] characters, then apply the same normalization (lowercase, spaces→hyphens, strip .md) to get the node id.(source, target) pair already exists, override its relation field with the typed value (e.g., "contradicts") and set typed: true{source: page_id, target: target_id, relation: <type>, confidence: "EXTRACTED", typed: true}This means relation: "wikilink" is the default for plain untyped links; a relationships: entry promotes it to a named semantic type. Edges that originated from both a body wikilink and a relationships: entry keep a single record — the typed version wins.
This is your edge list.
Group pages into communities by tag clustering:
nullThis enables community-based coloring in the HTML visualization and tools like Gephi.
Create wiki-export/ at the vault root if it doesn't exist. Write all four files:
graph.jsonNetworkX node_link format — standard for graph tools and scripts:
{
"directed": false,
"multigraph": false,
"graph": {
"exported_at": "<ISO timestamp>",
"vault": "<OBSIDIAN_VAULT_PATH>",
"total_nodes": N,
"total_edges": M
},
"nodes": [
{
"id": "concepts/transformers",
"label": "Transformer Architecture",
"category": "concepts",
"tags": ["ml", "architecture"],
"summary": "The attention-based architecture introduced in Attention Is All You Need.",
"community": 0
}
],
"links": [
{
"source": "concepts/transformers",
"target": "entities/vaswani",
"relation": "wikilink",
"confidence": "EXTRACTED"
},
{
"source": "concepts/transformers",
"target": "concepts/lstm",
"relation": "contradicts",
"confidence": "EXTRACTED",
"typed": true
}
]
}graph.graphmlGraphML XML format — loadable in Gephi, yEd, and Cytoscape:
<?xml version="1.0" encoding="UTF-8"?>
<graphml xmlns="http://graphml.graphdrawing.org/graphml">
<key id="label" for="node" attr.name="label" attr.type="string"/>
<key id="category" for="node" attr.name="category" attr.type="string"/>
<key id="tags" for="node" attr.name="tags" attr.type="string"/>
<key id="community" for="node" attr.name="community" attr.type="int"/>
<key id="relation" for="edge" attr.name="relation" attr.type="string"/>
<key id="type" for="edge" attr.name="type" attr.type="string"/>
<key id="confidence" for="edge" attr.name="confidence" attr.type="string"/>
<graph id="wiki" edgedefault="undirected">
<node id="concepts/transformers">
<data key="label">Transformer Architecture</data>
<data key="category">concepts</data>
<data key="tags">ml, architecture</data>
<data key="community">0</data>
</node>
<!-- Untyped wikilink — no <data key="type"> element -->
<edge source="concepts/transformers" target="entities/vaswani">
<data key="relation">wikilink</data>
<data key="confidence">EXTRACTED</data>
</edge>
<!-- Typed edge from relationships: block -->
<edge source="concepts/transformers" target="concepts/lstm">
<data key="relation">contradicts</data>
<data key="type">contradicts</data>
<data key="confidence">EXTRACTED</data>
</edge>
</graph>
</graphml>Write one <node> per page and one <edge> per link. For typed edges (those where typed: true in the edge list), emit both <data key="relation"> with the semantic type value and <data key="type"> with the same value — this keeps relation readable for tools that already consume it while letting type-aware tools filter on the dedicated type key. Untyped wikilinks omit the <data key="type"> element entirely.
cypher.txtNeo4j Cypher MERGE statements — paste into Neo4j Browser or run with cypher-shell:
// Wiki knowledge graph export — <TIMESTAMP>
// Load with: cypher-shell -u neo4j -p password < cypher.txt
// Nodes
MERGE (n:Page {id: "concepts/transformers"}) SET n.label = "Transformer Architecture", n.category = "concepts", n.tags = ["ml","architecture"], n.community = 0;
MERGE (n:Page {id: "entities/vaswani"}) SET n.label = "Ashish Vaswani", n.category = "entities", n.tags = ["person","ml"], n.community = 0;
MERGE (n:Page {id: "concepts/lstm"}) SET n.label = "LSTM", n.category = "concepts", n.tags = ["ml","rnn"], n.community = 0;
// Relationships
// Untyped wikilinks use [:WIKILINK]
MATCH (a:Page {id: "concepts/transformers"}), (b:Page {id: "entities/vaswani"}) MERGE (a)-[:WIKILINK {relation: "wikilink", confidence: "EXTRACTED"}]->(b);
// Typed edges use the relationship type as the label (UPPERCASE)
MATCH (a:Page {id: "concepts/transformers"}), (b:Page {id: "concepts/lstm"}) MERGE (a)-[:CONTRADICTS {relation: "contradicts", confidence: "EXTRACTED"}]->(b);Write one MERGE node statement per page, then one MATCH/MERGE relationship statement per edge. For typed edges, use the type value uppercased as the Cypher relationship label (e.g., contradicts → [:CONTRADICTS], derived_from → [:DERIVED_FROM]). Untyped wikilinks always use [:WIKILINK].
graph.htmlA self-contained interactive visualization using the vis.js CDN (no local dependencies). The user opens this file in any browser — no server needed.
Build the HTML file by:
{id: "concepts/transformers", label: "Transformer Architecture", color: {background: "#4E79A7"}, size: <degree * 3 + 8>, title: "concepts | #ml #architecture", community: 0}#4E79A7, #F28E2B, #E15759, #76B7B2, #59A14F, #EDC948, #B07AA1, #FF9DA7, #9C755F, #BAB0AC)size = degree * 3 + 8, capped at 60title = tooltip text shown on hover: category, tags, summary (if available)// Untyped wikilink
{from: "concepts/transformers", to: "entities/vaswani", dashes: false, width: 1, color: {color: "#666", opacity: 0.6}, title: "wikilink"}
// Typed edge
{from: "concepts/transformers", to: "concepts/lstm", dashes: false, width: 2, color: {color: "#E15759", opacity: 0.8}, label: "contradicts", font: {size: 9, color: "#ccc"}, title: "contradicts"}dashes: true for INFERRED edgesdashes: [4,8] for AMBIGUOUS edgestyped: true): set width: 2, add a label field showing the type, and apply a type-specific color:| Type | Edge color |
|---|---|
extends | #59A14F (green) |
implements | #4E79A7 (blue) |
contradicts | #E15759 (red) |
derived_from | #F28E2B (orange) |
uses | #76B7B2 (teal) |
replaces | #B07AA1 (purple) |
related_to | #BAB0AC (grey — same as untyped) |
Untyped wikilink edges keep the existing #666 grey color and no label.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Wiki Knowledge Graph</title>
<script src="https://unpkg.com/vis-network/standalone/umd/vis-network.min.js"></script>
<style>
* { box-sizing: border-box; margin: 0; padding: 0; }
body { background: #0f0f1a; color: #e0e0e0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; display: flex; height: 100vh; }
#graph { flex: 1; }
#sidebar { width: 260px; background: #1a1a2e; border-left: 1px solid #2a2a4e; padding: 14px; overflow-y: auto; font-size: 13px; }
#sidebar h3 { color: #aaa; font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; margin: 0 0 10px; }
#info { margin-bottom: 16px; line-height: 1.6; color: #ccc; }
.legend-item { display: flex; align-items: center; gap: 8px; padding: 3px 0; font-size: 12px; }
.dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
#stats { margin-top: 16px; color: #555; font-size: 11px; }
</style>
</head>
<body>
<div id="graph"></div>
<div id="sidebar">
<h3>Wiki Knowledge Graph</h3>
<div id="info">Click a node to see details.</div>
<h3 style="margin-top:12px">Communities</h3>
<div id="legend"><!-- populated by JS --></div>
<div id="stats"><!-- populated by JS --></div>
</div>
<script>
const NODES_DATA = /* NODES_JSON */;
const EDGES_DATA = /* EDGES_JSON */;
const COMMUNITY_COLORS = ["#4E79A7","#F28E2B","#E15759","#76B7B2","#59A14F","#EDC948","#B07AA1","#FF9DA7","#9C755F","#BAB0AC"];
const nodes = new vis.DataSet(NODES_DATA);
const edges = new vis.DataSet(EDGES_DATA);
const network = new vis.Network(document.getElementById('graph'), {nodes, edges}, {
physics: { solver: 'forceAtlas2Based', forceAtlas2Based: { gravitationalConstant: -60, springLength: 120 }, stabilization: { iterations: 200 } },
interaction: { hover: true, tooltipDelay: 100 },
nodes: { shape: 'dot', borderWidth: 1.5 },
edges: { smooth: { type: 'continuous' }, arrows: { to: { enabled: true, scaleFactor: 0.4 } } }
});
network.once('stabilizationIterationsDone', () => network.setOptions({ physics: { enabled: false } }));
network.on('click', ({nodes: sel}) => {
if (!sel.length) return;
const n = NODES_DATA.find(x => x.id === sel[0]);
if (!n) return;
document.getElementById('info').innerHTML = `<b>${n.label}</b><br>Category: ${n.category||'—'}<br>Tags: ${n.tags||'—'}<br>${n.summary ? '<br>'+n.summary : ''}`;
});
// Build legend
const communities = {};
NODES_DATA.forEach(n => { if (n.community != null) communities[n.community] = (communities[n.community]||0)+1; });
const leg = document.getElementById('legend');
Object.entries(communities).sort((a,b)=>b[1]-a[1]).forEach(([cid, count]) => {
const color = COMMUNITY_COLORS[cid % COMMUNITY_COLORS.length];
leg.innerHTML += `<div class="legend-item"><div class="dot" style="background:${color}"></div>Community ${cid} (${count})</div>`;
});
document.getElementById('stats').textContent = `${NODES_DATA.length} pages · ${EDGES_DATA.length} links`;
</script>
</body>
</html>Replace /* NODES_JSON */ and /* EDGES_JSON */ with the actual JSON arrays you generated in step 1.
Run this step only when the user asks for OKF / a markdown bundle (phrases like "export to OKF", "OKF bundle", "open knowledge format", "export as markdown bundle"). It is additive — the four graph files above are always produced; this writes an extra full-fidelity markdown bundle.
The four graph files are a lossy projection (graph skeleton only). An OKF bundle is the actual page bodies, so an export→wiki-import round-trip through OKF preserves full content, and the bundle drops straight into MkDocs, Notion, Hugo, GitHub's renderer, or any Open Knowledge Format consumer.
This table is the single source of truth for the mapping; wiki-import references it for the reverse direction.
| OKF key | ← export from | → import to | Notes |
|---|---|---|---|
type (required) | category, title-cased | category (lower-cased) | concepts→Concept, entities→Entity, skills→Skill, references→Reference, synthesis→Synthesis, projects→Project, journal→Journal. OKF requires type; consumers tolerate any string. |
title | title | title | Verbatim. |
description | summary | summary | Our one-line summary: is exactly OKF's description (used in index.md entries). |
tags | tags | tags | Verbatim list. visibility/* system tags pass through unchanged. |
timestamp | updated | updated | ISO 8601 both sides. |
resource | first sources: entry iff it is an http(s):// URL | — | Optional; omit when no source URL. Most pages describe abstract knowledge and have none. |
| (extensions) | category, sources, created, relationships, lifecycle, tier, base_confidence, … | preserved verbatim | OKF §4.1 permits arbitrary keys and requires consumers to preserve them. Writing our native keys as OKF extension frontmatter is what makes the round-trip lossless — on import, preserved category/created/sources are preferred over re-deriving from type. |
Reuse the node list from Step 1 (with any active project/visibility filters already applied). Write a directory tree under wiki-export/okf/:
type first, then title, description, tags, timestamp, optional resource, then the preserved extension keys), transform the body links (below), and write to wiki-export/okf/<category>/<slug>.md — same relative path the page has in the vault.[[wikilinks]] → standard markdown links):[[concepts/transformers]] → [<target title>](<file-relative path>.md), e.g. from entities/foo.md a link to concepts/transformers becomes [Transformer Architecture](../concepts/transformers.md). Link text = the target page's title (fall back to the target id if unknown).[[target|display]] → [display](<rel path>.md).../concepts/x.md), never /-absolute — /-rooted links break GitHub rendering. (This matches knowledge-catalog's own production agent.).md, then compute relpath(<target-file>, <source-file-dir>). Never call relpath() on the id before adding .md.projects/social-twitter.md plus projects/social-twitter/.... From projects/social-twitter/concepts/mem0-memory-analysis.md, a link to [[projects/social-twitter]] must export to ../../social-twitter.md, not ...md..md). Handle unresolved targets by form, so forward-references survive the round-trip:/, e.g. [[concepts/attention-mechanism]]) with no page yet, and not excluded by an active filter → still emit the relative markdown link. OKF §5.3 treats a missing target as not-yet-written knowledge, and keeping the link makes the user's forward-references lossless on re-import. (Verified on st3ve: dropping these silently deleted real [[wikilinks]].)[[tractorex]] when no such page exists in scope) → plain text; there is no reliable path to write.http(s):// links and # Citations sections untouched.wiki-export/okf/index.md — a # Subdirectories section listing each category folder: * [<category>](<category>/index.md) - <one-line description of the category>. This is the only index permitted frontmatter: add a single key okf_version: "0.1" (OKF §11).index.md per category folder listing its pages: * [<title>](<slug>.md) - <description from the page's summary>.wiki-export/okf/log.md as-is (OKF §7 treats the leading bold action word as convention, so the existing line-based log is conformant).Excluded from the bundle (same as the graph export): _archives/, _raw/, .obsidian/, _insights.md, _meta/*.base, and the vault root index.md (regenerated above).
Wiki export complete → wiki-export/
graph.json — N nodes, M edges (NetworkX node_link format)
graph.graphml — N nodes, M edges (Gephi / yEd / Cytoscape)
cypher.txt — N MERGE nodes + M MERGE relationships (Neo4j)
graph.html — interactive browser visualization (open in any browser)Append this line only when the OKF bundle was produced (Step 3.5):
okf/ — OKF v0.1 markdown bundle (N pages, lossless; import via wiki-import)Append filter notes when active:
(filtered: project:prismor — 19 of 67 pages)
(filtered: X of Y pages excluded — visibility/internal, visibility/pii)Only include lines for filters that were actually applied.
okf/ bundle) are overwritten on each rungraph.json reconstructs only stubs on import, while the okf/ bundle preserves full page bodies. Use OKF for vault-to-vault transfer and external markdown tools (MkDocs, Notion, GitHub); use the graph files for analysis tools (Gephi, Neo4j)graph.json~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.