The single source of truth for how 0rk content is planned, written, themed, linked, and verified. Every other page obeys this. When a guru page and this Bible disagree, the Bible wins.
1. π§ Mission
Achieve holistic overstanding of the task, then act in pure wisdom: apply DRY / KISS / YAGNI, enforce SOLID + SoC + LoD, ship robust, 100%-complete systems β never stubs, mocks, or βTODO: implementβ. Architect elegantly with the pattern that fits, not the pattern you know best.
- π€ Autonomous loop: plan the work, work the plan, loop until 100% done. Pause only to conclude or escalate an emergency.
- π£οΈ Talk in conclusions, not transcripts. The 7-word response template:
π: [Condensed conclusion.]β routine done.π₯³: [Hype chant.]β a big nut cracked.π₯΅: [SHOUTING THE ISSUE.]β emergency, only after thewhen-stuckflow.
- π― Decision-completeness: resolve every path, signature, and command up front (see π Planning Standard). The implementer makes no design choices mid-flight.
2. πͺ Steps
Break ALL work into discrete phases β steps β sub-steps. Time estimates are forbidden β no hours, days, weeks, or βmin readβ.
- β
Allowed:
Phase 1/3,Step 2 of 5,Task 1.1 / 1.2,- [ ] Title,3/7 complete. - β Forbidden: β~2 hoursβ, βWeek 1β2β, βDuration: 1hβ.
flowchart LR P["Phase"] -->|"contains"| S["Step"] S -->|"contains"| SS["Sub-step"] SS -->|"tracked by"| C["Checkbox"]
When stuck, run the loop: reason deeply β gather logs/filetree/web β apply a triple-checked fix β test to 100% β loop with accumulated knowledge β document root cause. Shout π₯΅ only after that flow.
3. π¨ Style
This very page both states and demonstrates the rule: headings are number-first, then emoji, then 1β3 words.
- π’ Order:
## 1. π Skill Tableβ number, emoji, words. Never## π 1. .... - βοΈ Length: 1β3 words. If meaning is lost, fuse a single note under it instead of a long heading.
Example of the fuse rule: a heading that would read βDetailed Migration Rollback Procedureβ collapses to
## 9. β©οΈ Rollbackplus this one-line note.
- π« No redundant H1: drop a top-level title that just repeats the page title/breadcrumb β both already render.
- π§Ό Tasteful emoji: one leading emoji per heading, never per bullet. Zero-fluff, high-density, developer-grade prose.
- π Exception: π Planning Standard is emoji-free in its body β keep its headings plain, still number-first if numbered.
- ποΈ Frontmatter: keys are
title/description/tags/aliases/created/modified/published. Never add amodifieddate by hand β git supplies the realHH:mm. Moved files carryaliases: ["<old-slug>"]. - π·οΈ Tag vocab (pick 2β4):
discord,omp,memory,quartz,skill,cheatsheet,plan,hardware,research.
4. π§ Mermaid
The site themes Mermaid adaptively from CSS variables and re-themes live on dark/light toggle (verified in the plugin fork).
- π« No
%%{init}%%directives, ever. Never hardcodetheme,themeVariables, or colors β that forces dark in light mode and freezes the palette. Delete any you find. - π€ Quote every edge label:
-->|"Trigger Event"|, never-->|Trigger Event|. - π§· Quote node/subgraph text with
(),/,,,:,[]:subgraph S["Daemon (Python / discord.py)"]. - π· Never use the reserved word
endas a node id. - π Best-fit chart: pick
flowchart,sequenceDiagram,stateDiagram,erDiagram, ormindmapby intent. Convert anygantt/timeline with literal durations into abstract Step phases.
Deep dive + copy-paste snippets: π§ MermaidGuru. Diagrams beyond Mermaidβs reach β π¨ SvgGuru; spatial maps β πΊοΈ CanvasGuru.
5. π Links
markdownLinkResolution: shortestβ link files by basename, folders by directory path.
- π Files:
[[MermaidGuru|π§ MermaidGuru]],[omp](https://omp.0rk.de/omp),[[quartz5]]. - π Folders:
[[skills/gurus|π§ Skill Docs]]. - πΊοΈ Canvas:
[[knowledge/specs.canvas|πΊοΈ Site Map]]. - πΊοΈ Canvas Nesting: Every
.canvasfile must be a child element of its corresponding topic directory (e.g.,content/plans/w-0rk-migration/canvas.canvasunder parentcontent/plans/w-0rk-migration/index.md). In the Explorer navigation, it must be named simply ascanvasrather than repeating the parent name. - β οΈ Collision: basename
projectsis ambiguous (thecontent/projects/folder vs the cheatsheet). Always link the cheatsheet by full path:[[knowledge/cheatsheets/projects|Ecosystem Projects]]. - π Real URLs only:
baseUrlisssot.0rk.de. Neverexample.comβ articles βhttps://0rk.de/article; the feed lives athttps://ssot.0rk.de/llms.txt. Secrets become env placeholders ($DISCORD_WEBHOOK_URL,$CHANNEL_ID).
Densify: link omp β ompkeep β quartz5 β quartz5-checklist, and every guru β its topic page.
6. π§ Memory
OmpKeep is the governed memory layer β heuristics and process context, not factual ground truth.
- π₯ Daily writes append directly; long-term writes enter the inbox for curation. Trust repo files, runtime output, and user instruction for facts.
- π₯ Read
memory://root/memory_summary.mdfirst; escalate confidence only after repo verification. Memory alone is never proof. - β»οΈ If memory disagrees with the repo, treat it as stale: proceed corrected, then regenerate the artifact. See π§ OmpKeep and π Shared Memory.
7. β Verify
Done means it behaves end-to-end β not that a scaffold compiles.
- Every requested deliverable complete; no partial work presented as finished.
- All affected artifacts (callsites, links, frontmatter) updated.
- Mermaid blocks carry no init directive and quote every edge label.
- No
example.com; headings are number-first emojified; no time estimates. - Claims grounded in tools/repo; inferences marked. Build, deploy, and commit are the main agentβs job β content agents never run them.
Operate THIS Quartz fork via πͺ¨ QuartzGuru; the full checklist lives at β Quartz Checklist.