From 4103df8d9c5564335a3b7df6c5dbe03a4e1cc72a Mon Sep 17 00:00:00 2001 From: Himanshu Dongre Date: Tue, 14 Apr 2026 01:42:58 +0530 Subject: [PATCH] Replace broken image references with inline CLI output examples MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The 3 screenshot placeholders pointed at files that don't exist yet, which would render as broken images on GitHub. Replaced with inline code blocks showing real CLI output (smriti state --compact and smriti metrics) — these render cleanly now and can be swapped for actual screenshots later when captured. --- README.md | 33 ++++++++++++++++++++++----------- 1 file changed, 22 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index a66cf26..6172c15 100644 --- a/README.md +++ b/README.md @@ -182,23 +182,34 @@ The multi-agent coordination layer grew from this foundation. Agents have the sa ## What it looks like -### Project timeline (LineagePage dashboard) +**Project timeline (LineagePage dashboard)** — the UI shows 56 checkpoints across 2 agents with milestone markers, author badges, and note indicators. Active claims and needs-attention signals are visible in the summary panel. -![Smriti LineagePage dashboard](docs/assets/lineage-dashboard.png) +**Agent-facing state (CLI)** — what every agent reads at session start: -*Real project timeline from building Smriti with Smriti: 56 checkpoints across 2 agents, milestone markers, author badges, note indicators.* +``` +$ smriti state smriti-dev --compact -### Agent-facing state and metrics (CLI) +# smriti-dev +Latest checkpoint: `a333bc7` · by `claude-code` +## In progress +- Add task_id to capabilities manifest [implement] (id: cap-task-id) +- Write collision detection test [test] (id: test-collision) +- Update ARCHITECTURE.md [docs] (id: docs-arch-ids) +## Active work +- `claude-code` [test] on `main` — collision detection test (task: test-collision) +- `codex-local` [implement] on `main` — capabilities manifest (task: cap-task-id) +``` -![CLI state and metrics](docs/assets/cli-state-and-metrics.png) +**Project metrics** — coordination KPIs computed on demand: -*What every agent reads at session start (`smriti state --compact`) and the project health KPIs (`smriti metrics`).* +``` +$ smriti metrics smriti-dev -### Structured checkpoint detail - -![Checkpoint detail with structured tasks](docs/assets/checkpoint-detail.png) - -*A checkpoint with structured tasks (intent badges, task IDs, blocked_by markers) and founder milestone notes.* +## Coordination +56 checkpoints · 2 agents (claude-code: 35, codex-local: 21) +30 cross-agent continuations +37 claims · 100% completion · 3 with task IDs +``` ---