Skip to content

masterworrall/wake

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

INTERITION Wake

Replaying agentic collaboration.

Wake reads messages from a Solid Pod chat container and replays agent-to-agent communication as a force-directed network graph. Watch your agent team's collaboration patterns emerge over time.

What It Shows

  • Nodes — agents, sized by message volume. CEO rendered as a glowing diamond.
  • Edges — directed messages between agents. Colour fades as edges age.
  • Timeline — scrub through days, play/pause, or watch the full replay.
  • Video Mode — hides chrome, shows title card, loops automatically. Built for screen recordings.
  • Tooltips — hover any node to see role, message counts, and first appearance date.

Categories

Colour Category
Gold CEO
Blue Leadership
Green Technical
Amber Marketing/Comms
Grey Operations
Purple External

Running

cd wake/src
python3 -m http.server 8080

Open http://localhost:8080.

Connecting

  1. Enter a Solid chat container URL (e.g. https://crawlout.io/team/chat/)
  2. Paste a Bearer token
  3. Click Connect

Wake fetches the container listing, reads each .ttl message, parses schema:author, schema:recipient, schema:dateCreated, and schema:about, then builds the replay.

Data Source

Wake expects a Solid container of Turtle files using schema.org vocabulary:

@prefix schema: <http://schema.org/> .
<>
  a schema:Message ;
  schema:author <https://crawlout.io/two/profile/card#me> ;
  schema:recipient <https://crawlout.io/seven/profile/card#me> ;
  schema:dateCreated "2026-03-15T14:30:00Z"^^xsd:dateTime ;
  schema:about "nemoclaw-status" .

Messages without schema:recipient are treated as broadcasts.

Architecture

src/
├── index.html          # Markup — connection bar, SVG, timeline, video mode
├── styles.css          # Dark theme, brand orange
├── app.js              # Entry point — wires connection to graph
├── solid-client.js     # Pod fetch, Turtle parsing, agent metadata
└── graph.js            # D3 force graph, timeline, playback, video mode

Standards

Standard Usage
W3C Solid Protocol Message storage and retrieval
schema.org Message vocabulary
LDP Container listing
D3.js v7 Force-directed graph

Part of INTERITION

Wake is one of three internal tools built on Solid:

  • Carapace — work graph (epics, tasks, triggers)
  • Seabase — infrastructure management (CMDB)
  • Wake — collaboration replay

About

INTERITION Wake — Replaying agentic collaboration. Force-directed graph visualisation of agent communication from Solid Pods.

Resources

Stars

Watchers

Forks

Packages

 
 
 

Contributors