Skip to content

Commit 1c861c0

Browse files
Expand Other Platforms section with cross-platform linking narrative
1 parent 758d543 commit 1c861c0

1 file changed

Lines changed: 14 additions & 4 deletions

File tree

README.md

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -234,12 +234,22 @@ python -m pipeline.load_fuseki output/claude/*.ttl --auth admin:admin
234234

235235
After the backfill, automatic processing takes over — every future session is indexed as you work, with no manual steps.
236236

237-
### Other Platforms
237+
### Other Platforms (Cross-Platform Insights)
238+
239+
Most AI tools let you export your conversation history — DeepSeek and Grok offer JSON/zip downloads, Warp stores sessions in a local SQLite database. session-graph ingests all of them into the same knowledge graph, using the same ontology and entity vocabulary.
240+
241+
This is where it gets interesting: entities are linked **across platforms**. If you discussed "Kubernetes" in Claude Code, "k8s" in DeepSeek, and "container orchestration" in Grok, they all resolve to the same Wikidata entity and connect in the graph. You can query relationships that span tools you used months apart, on different projects, without remembering where you had each conversation.
238242

239243
```bash
240-
python -m pipeline.deepseek_to_rdf data/deepseek_export.zip output/deepseek.ttl
241-
python -m pipeline.grok_to_rdf data/grok_export.zip output/grok.ttl
242-
python -m pipeline.warp_to_rdf output/warp.ttl --min-exchanges 5
244+
# Export your chat history from each platform, then:
245+
python -m pipeline.deepseek_to_rdf data/deepseek_export.zip output/deepseek/deepseek.ttl
246+
python -m pipeline.grok_to_rdf data/grok_export.zip output/grok/grok.ttl
247+
python -m pipeline.warp_to_rdf output/warp/warp.ttl --min-exchanges 5
248+
249+
# Link entities and load — same as Claude sessions
250+
PYTHONUNBUFFERED=1 python -m pipeline.link_entities \
251+
--input output/**/*.ttl --output output/wikidata_links.ttl
252+
python -m pipeline.load_fuseki output/**/*.ttl --auth admin:admin
243253
```
244254

245255
## Why RDF/SPARQL?

0 commit comments

Comments
 (0)