Omnigraph Cookbooks
June 20, 2026 · View on GitHub
Opinionated, ready-to-run graph cookbooks built on Omnigraph. Each cookbook is a self-contained schema, seed, and query set for a specific use case.
Cookbooks
| Cookbook | Status | Description |
|---|---|---|
industry-intel/ | ✅ ready | AI/ML industry intelligence graph |
pharma-intel/ | ✅ ready | Pharma competitive intelligence |
second-brain/ | ✅ ready | Personal life automation graph |
vc-os/ | ✅ ready | Venture-capital operating system |
company-context/ | 🚧 planned | Internal decisions, traces, actors, artifacts |
biomed-research/ | 🚧 planned | Biotech & medical research tracking |
competitor-intel/ | 🚧 planned | Competitor launches, pricing, positioning |
Agent Skills
The bootstrap skill ships with the industry-intel cookbook it builds from, and installs with the npx skills CLI:
| Skill | Description |
|---|---|
industry-intel/skill | Bootstrap a new SPIKE graph from scratch — choose demo or custom, elicit domain + sources, adapt schema, research seed content, apply + load |
Install (direct-path form):
npx skills add https://github.com/ModernRelay/omnigraph-cookbooks/tree/main/industry-intel/skill
Day-to-day operations are covered by the
omnigraphskill, which ships in the engine repo (co-versioned with the CLI):npx skills add ModernRelay/omnigraph@omnigraph(ModernRelay/omnigraph). The operating guide and schema-design docs live in that repo and on the docs site.
Typical flow: use the bootstrap skill once to set up a new graph, then the omnigraph skill for day-to-day operations.
Repo Structure
omnigraph-cookbooks/
├── README.md CLAUDE.md LICENSE
├── railway.toml deploy/railway/ ← container deploy (Dockerfile, config)
└── <cookbook>/ ← industry-intel, pharma-intel, second-brain, vc-os
├── README.md
├── CLAUDE.md
├── schema.pg
├── cluster.yaml
├── seed.md
├── seed.jsonl
├── omnigraph-config.example.yaml
└── queries/*.gq
The industry-intel cookbook additionally ships the bootstrap skill at
industry-intel/skill/. Each cookbook is fully
self-contained — cd in and follow its README.
Getting Started
- Pick a cookbook.
- Make sure you have a running Omnigraph instance — see the Omnigraph repo.
- Follow the cookbook's Quick Start. The SPIKE cookbooks are cluster
directories (omnigraph >= 0.7.0):
omnigraph cluster applycreates the graph and publishes the stored queries;omnigraph-server --cluster .serves them — no object store needed to get started.
SPIKE Framework
The industry-intel/ cookbook uses SPIKE, an opinionated graph modeling lens:
Signal: a dated external fact, movement, or observationPattern: a recurring theme formed, contradicted, or driven by signalsInsight: a synthesized interpretation explaining why a pattern mattersKnowHow: an actionable practice or playbook grounded in the graphElement: a concrete product, framework, company, or concept the signals are about
SPIKE is a cookbook-level convention, not a requirement for every graph in this repo.
Contributing
Create a new folder, add a schema, seed, queries, and docs. Ship real seed data, not placeholders.