Ecosystem

Software that implements or integrates with the Mark Protocol. First-party tooling lives in the main demarkus repository; third-party implementations are listed as they appear.

Browsers and readers

Demarkus Library

The web reading room: server-rendered Go + htmx over one world or a whole knowledge system, with the AI librarian. Trail canvas, hover preview cards, the universe floor, and a cataloging desk with version-guarded writes.

Caztor

Cross-platform Java GUI browser for Gemini, Spartan, Gopher, Nex, and Demarkus. By Kevin Boone.

Demarkus TUI

The reference terminal browser, built on Bubble Tea and Glamour.

Plugins

Obsidian

Fetch, publish, and browse Demarkus documents directly from Obsidian.

Claude Code

Two plugins ship from the same marketplace (/plugin marketplace add latebit-io/demarkus). They compose in one install and partition by server scope.

demarkus-memory is personal agent memory (the soul pattern). Zero-config: spawns a local demarkus-server, auto-generates a token, and wires the MCP tools on first session.

demarkus-knowledge joins an organizational knowledge system, a broker-fronted universe of worlds. No binaries and no local server: pure broker plus the Claude Code MCP OAuth flow.

pi

The same two plugins, ported to the pi coding agent and mapped onto its extension API. They share ~/.demarkus state with the Claude Code plugins (one soul, one token, one set of registries), so both agents can run on the same machine.

Both need the MCP adapter first:

pi install npm:pi-mcp-adapter

demarkus-pi-memory is the local soul, with the same zero-config provisioning, gates, and nudges. Commands: /soul, /soul-context, /soul-journal, /soul-init, /soul-join, /soul-default, /soul-status, /soul-doctor, /soul-refresh, /promote, /promote-scan, plus the soul-memory skill.

demarkus-pi-knowledge joins a knowledge system over the adapter’s OAuth, with no tokens stored locally. Commands: /knowledge, /knowledge-join, /knowledge-doctor, plus the knowledge-promote skill.

git clone https://github.com/latebit-io/demarkus
pi install ./demarkus/plugins/pi-memory      # add -l for project-local scope
pi install ./demarkus/plugins/pi-knowledge

Agent platforms

OpenClaw

ClawHub skill for OpenClaw agents. See the OpenClaw install guide.

Indexing agent

demarkus-agent crawls the worlds it is seeded with, collects content hashes, and publishes the aggregate back to a hub: hash indexes for content-addressed fetch and a /graph.md link-graph export. Clients seed their graph from that aggregate, so a cold agent answers backlink questions on its first call instead of crawling.

# one pass
demarkus-agent crawl -seeds mark://world.example.com -publish -publish-graph

# on a schedule
demarkus-agent daemon -config /etc/demarkus-agent/config.toml -publish -publish-graph

Published artifacts carry a version retention cap (newest 20 by default) so a generated document does not accumulate thousands of versions. The appliance installs it as a timer that republishes every 6 hours.

CLI and server tools

Tool Purpose
demarkus-server Reference QUIC server
demarkus CLI: fetch, list, publish, edit, graph, lookup, okf
demarkus-tui Terminal browser with graph view
demarkus-mcp MCP bridge for LLM agents
demarkus-agent Indexing agent: federation crawl, hash indexes, graph export
demarkus-broker OIDC-fronted MCP gateway for a knowledge system
demarkus-token Capability-based auth token management
demarkus-publish Direct-store writer for read-only server installs

Building your own

The protocol surface is small: QUIC with ALPN mark, a text request verb (one of FETCH, LIST, VERSIONS, LOOKUP, PUBLISH, APPEND, ARCHIVE), and YAML-style ----delimited metadata in responses. Caztor’s read-only Java client is roughly a hundred lines. See the protocol reference for the full spec.

If you ship something that speaks Demarkus, open an issue or drop a link and we will list it here.