cd /news/developer-tools/show-hn-skill-for-your-agent-to-visu… Β· home β€Ί topics β€Ί developer-tools β€Ί article
[ARTICLE Β· art-25948] src=github.com pub= topic=developer-tools verified=true sentiment=↑ positive

Show HN: Skill for your agent to visualize your gbrain and Obsidian

A developer released an open-source tool that converts a folder of Markdown notes from Obsidian or gbrain into a single interactive HTML knowledge map with force-directed graph, timeline, and click-to-inspect panel. The tool works with AI coding agents like Claude Code and OpenAI Codex, and requires no embeddings or server.

read2 min publishedJun 13, 2026

Turn a folder of Markdown notes (an Obsidian vault or a

gbrain export

) intoone self-contained, interactive HTML knowledge mapβ€” a force-directed graph coloured by theme, a timeline you can scrub to watch the base grow, and a click-to-inspect panel.

Works with: Claude Code Β· OpenAI Codex Β· Cursor Β· Gemini CLI Β· OpenClaw Β· or just run the script.

A prebuilt demo ships in this repo β€” no notes to generate, no embeddings, no gbrain, no Python. Open the file:

open demo/brain-map.html        # macOS
xdg-open demo/brain-map.html    # Linux
start demo/brain-map.html       # Windows

992 fictional notes across three themes (work Β· study Β· life). Scrub the timeline, press β–Ά Play growth, click nodes, toggle filters.

python3 scripts/build_map.py <notes_dir> out.html --title "My Second Brain"
open out.html

<notes_dir>

= your Obsidian vault, or a gbrain export --dir <out>

directory. The map reads plain Markdown: YAML frontmatter (tags

, created

) + [[wikilinks]]

.

Setup Result
Nothing (stdlib Python only)
Builds anywhere; the browser computes the layout (Cytoscape cose ).
pip install -r requirements.txt (networkx, numpy, scipy)
Layout pre-computed β†’ 1000-node maps open instantly and look cleaner.

The builder auto-detects networkx and picks the better path. No gbrain, no embeddings, no server required either way.

Theme= top-level folder (Work/

,Study/

,Life/

) β†’ node & edge colour.Type= subfolder / tags β†’ node shape (person, meeting, journal, lecture, project, link, todo, index, note).** Edges**= resolved[[wikilinks]]

. Node size scales with link count; hubs get labels.Timeline=created

timestamps, bucketed by month, stacked by theme.

The richer your cross-linking (people cards, meeting attendees, index pages), the more legible the map. Designed to pair with the save-note skill, which writes exactly this shape.

Scrub / Play the timeline β†’ the graph reveals notes up to that month; Play animates the whole base growing from empty to today.Filter by theme and type (live counts);search highlights matches.Click a node β†’ dim the rest, light its neighbourhood, open a detail panel (summary, tags, date, connected notes).- Responsive down to a phone.

Claude Code

git clone https://github.com/vladignatyev/brain-map-skill ~/.claude/skills/brain-map

OpenAI Codex

git clone https://github.com/vladignatyev/brain-map-skill ~/.agents/skills/brain-map

Cursor / others β€” paste SKILL.md

into your agent's instructions; it's self-contained.

python3 scripts/generate_demo_notes.py /tmp/demo-vault   # 992 invented notes
python3 scripts/build_map.py /tmp/demo-vault demo.html

All demo people, orgs and events are fictional β€” no real data.

brain-map-skill/
β”œβ”€β”€ SKILL.md                      # agent skill spec
β”œβ”€β”€ scripts/
β”‚   β”œβ”€β”€ build_map.py              # the builder (Markdown dir β†’ interactive HTML)
β”‚   └── generate_demo_notes.py    # writes the fictional demo vault
β”œβ”€β”€ demo/
β”‚   β”œβ”€β”€ brain-map.html            # PREBUILT β€” open it, zero setup
β”‚   β”œβ”€β”€ vault/                    # 992 source Markdown notes
β”‚   └── preview.png
β”œβ”€β”€ requirements.txt              # optional: networkx, numpy, scipy
└── LICENSE
── more in #developer-tools 4 stories Β· sorted by recency
sponsored brought to you by zahid.host 4,200+ EU-deployed projects
reading about agents? ship yours in a single git push.

Run your AI side-project on zahid.host

EU-based hosting, git-push deploys, automatic HTTPS, no cold starts. Free tier with a custom domain β€” perfect for shipping the agent you just read about.

$git push zahid main
β†’ Live at https://your-agent.zahid.host βœ“
Get free account β†’ Pricing
from €0/mo Β· no card required
LIVE [news/show-hn-skill-for-yo…] indexed:0 read:2min 2026-06-13 Β· β€”