From Strata
Shows a snapshot of the Strata vault: scope counts, recent activity, drifted notes, stale ADRs, hot files, ADR↔commit linkage, and suggested actions, synced to a markdown file.
How this skill is triggered — by the user, by Claude, or both
Slash command
/strata:dashboardThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
A single-page snapshot of vault state. Same content lives in `INDEX.md`
A single-page snapshot of vault state. Same content lives in INDEX.md
(renders natively in Obsidian) and gets emitted into the conversation
when you invoke this skill.
Two paths depending on freshness needs:
"${CLAUDE_PLUGIN_ROOT}/bin/run-python.sh" -c "
import sys
sys.path.insert(0, '${CLAUDE_PLUGIN_ROOT}/scripts')
from lib import memory_dir
print((memory_dir() / 'INDEX.md').read_text())
"
Use when you trust the cached state (it was regenerated on the last Write). 95% of cases.
"${CLAUDE_PLUGIN_ROOT}/bin/strata" dashboard
dashboard.py rebuilds the content from live data (db, code_graph,
commit_graph) without writing INDEX.md. Slightly slower.
| Section | Source | What it tells you |
|---|---|---|
| Scope counts | Filesystem | Episodic / semantic / procedural sizes |
| Recent activity | mtime, last 7d | What's been written or updated |
| Stale-proposed ADRs | db.stale_decisions | ADRs in proposed >14d — need closure |
| Drifted notes | code_graph.find_drifted_notes | Structural + temporal drift |
| Hot files | commit_graph.hotspots | Top-churn files last 90d |
| ADR implementations | commit_graph.adr_implementations | Which decisions became code |
| Active PR contexts | pr-context/ subdirs | In-flight branches |
| Suggested actions | Composed from above | Concrete next steps |
The vault is markdown on disk. Obsidian renders it. Sync clients
Distribute it. Teammates see updates as files change. We don't need
A web server. We don't run a port. The synced INDEX.md IS the
Dashboard, open Obsidian, get the view.
npx claudepluginhub gideondk/strata --plugin strataProvides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.