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.
- 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.
| Colour | Category |
|---|---|
| Gold | CEO |
| Blue | Leadership |
| Green | Technical |
| Amber | Marketing/Comms |
| Grey | Operations |
| Purple | External |
cd wake/src
python3 -m http.server 8080Open http://localhost:8080.
- Enter a Solid chat container URL (e.g.
https://crawlout.io/team/chat/) - Paste a Bearer token
- 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.
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.
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
| Standard | Usage |
|---|---|
| W3C Solid Protocol | Message storage and retrieval |
| schema.org | Message vocabulary |
| LDP | Container listing |
| D3.js v7 | Force-directed graph |
Wake is one of three internal tools built on Solid:
- Carapace — work graph (epics, tasks, triggers)
- Seabase — infrastructure management (CMDB)
- Wake — collaboration replay