One-screen vocabulary map of the 0rk ecosystem. Skim the domain that matches your task; follow the See link for the full page.
1. π§© OMP Core
| Term | Domain | One-liner | See |
|---|---|---|---|
| OMP / Oh My Pi | Framework | The agentic runtime: a reasoning LLM plus tools that loops, plans, and spawns subagents. | omp |
| Extension | OMP | Host-side TS/JS module loaded via jiti; registers tools, commands, and lifecycle hooks. | omp |
| Plugin | OMP | Packaging + CLI install mechanism that maps NPM packages or local folders into extensions/MCP servers. | omp |
| Agent | OMP | The active execution unit running the reasoning loop and tools. | omp |
| Subagent | OMP | Specialized child agent (explore, plan, oracle) spawned for parallel work. | omp |
| Skill | OMP | Agent-side SKILL.md instruction sheet injected into prompt context on query match. | skill-md |
| Rule | OMP | Behavioral constraint β Hard Rules (memory records) or Domain Rules (*.md files). | agents-md |
| Profile | OMP | Identity + boundary config; Agent Profile (persona) vs Project Profile (workspace scope). | omp |
| Task | OMP | Atomic unit of work β sequential via todo, or parallel via subagents. | omp |
| pi-package | OMP | A package.json with "pi-package" keyword and a pi manifest, discoverable by the loader. | omp |
| MCP server | OMP | Model Context Protocol endpoint surfaced as tools/resources to the agent. | omp |
| AGENTS.md | Convention | Repo-scoped instruction file declaring purpose, architecture, and conventions for agents. | agents-md |
2. π§ Memory β OmpKeep / Hermes
| Term | Domain | One-liner | See |
|---|---|---|---|
| OmpKeep | Memory | Local-first, governed persistent-memory extension (SQLite FTS5 + vector search). | ompkeep |
| Hermes | Memory | Peer agent runtime that shares OmpKeep persistent memory with OMP. | omp-hermes-shared-memory |
| L1 / L2 | Memory | Storage tiers β L1 identity (human-ratified) vs L2 playbooks (auto/manual-curated). | ompkeep |
| FTS5 / BM25 | Memory | SQLite full-text search index providing keyword relevance scoring. | ompkeep |
| qmd | Memory | Semantic vector search complementing keyword retrieval. | ompkeep |
| RRF | Memory | Reciprocal Rank Fusion β merges keyword + vector result lists into one ranking. | ompkeep |
| Evidence / Provenance | Memory | Trust records; candidates need β₯35% token overlap with their supporting evidence. | ompkeep |
| Tombstone | Memory | Content-free delete marker preventing a record from being re-created. | ompkeep |
| Inbox / Candidate | Memory | Captured observations awaiting curation in captured.jsonl. | ompkeep |
| Patch / Curation | Memory | Deterministic, gated mutation applied via applyPatch (never raw JSONL writes). | ompkeep |
| Decay | Memory | Confidence reduction on overdue records each maintenance loop. | ompkeep |
| Budget Assembly | Memory | Compaction of rules/memory/scratchpad into runtime/context.md under a 14KB budget. | ompkeep |
3. πͺ» Quartz
| Term | Domain | One-liner | See |
|---|---|---|---|
| Quartz 5 | SSG | YAML-configured static site generator for Obsidian vaults / digital gardens. | quartz5 |
| Transformer | Quartz | Pipeline stage that parses/alters the Markdown AST (frontmatter, links, syntax). | quartz5-checklist |
| Filter | Quartz | Pipeline stage that prunes content (drafts, non-published) before build. | quartz5-checklist |
| Emitter | Quartz | Pipeline stage that writes outputs β pages, search index, graph, sitemap. | quartz5-checklist |
quartz.config.yaml | Quartz | Site-wide config: theme, locale, baseUrl, and the active plugin list. | quartz5 |
| baseUrl | Quartz | Root domain (ssot.0rk.de) used for feeds, sitemap, and canonical URLs. | quartz5 |
| Digital garden | Quartz | Interlinked, continuously-grown knowledge site (this wiki). | quartz5 |
| Wikilink | Quartz | [[basename|Label]] link resolved by shortest basename. | quartz5 |
| JSON Canvas | Quartz | .canvas spatial map rendered as a pannable page. | CanvasGuru |
| llms.txt | Quartz | LLM-readable site aggregator emitted to public/ at build. | llms-txt |
4. π¬ Discord β Ompycord
| Term | Domain | One-liner | See |
|---|---|---|---|
| Ompycord | Discord | Python (discord.py + FastAPI) rewrite of the always-on OMPβDiscord bridge. | ompycord |
| Omp (persona) | Discord | The front-facing bot identity answering mentions and slash commands. | ompycord |
| StatusSnapshot | Discord | Dataclass schema tracking daemon, runtime, run, queue, and usage state. | ompycord |
| Embed Dashboard | Discord | Single in-place embed aggregating live session context per thread. | ompycord |
| Rocket Launch Channel | Discord | Channel where posting text + reacting π triggers an OMP run. | ompycord |
| Hybrid command | Discord | discord.py command registered as both prefix and slash command. | ompycord |
| Webhook telemetry | Discord | OMP processes POST OMPEvent to the FastAPI sidecar (port 8901). | ompycord |
| UniDialog | Discord | Schema-driven Discord component engine (Red cog) from YAML specs. | unidialog |
| Red vs OMP | Discord | Command/config comparison between Red-DiscordBot and OMP. | red-vs-omp |
5. π Related
- π¦ SKILL.md anatomy β author agent skills.
- π€ AGENTS.md anatomy β author repo instruction files.
- π llms.txt β LLM-readable site export.