link-curator-dashboard

link-curator-dashboard is a skill for Claude Code, Codex from dodo-reach/hermes-link-curator. It costs 28 tokens per session (2,589 once invoked), scanned A, original, MIT.

A maintenance workflow for a read-only web dashboard that displays links from an Obsidian vault. The dashboard runs as a separate FastAPI service on port 8090.

In plain words
What is it for?
Use it to find the dashboard process, verify how it is running, and maintain or debug the service.
Why use it?
It helps distinguish this dashboard from another service and gives a consistent way to inspect or troubleshoot its process and data source.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Needs its repository: it reads a path above its own folder, which exists only inside the repository. The line is mkdir -p ../logs.

Good fit Use it to find the dashboard process, verify how it is running, and maintain or debug the service.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/dodo-reach/hermes-link-curator
agentmods
npx agentmods add skills/dodo-reach/hermes-link-curator/skill-link-curator-dashboard

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for link-curator-dashboard

README.md
[![agentmods](https://agentmods.dev/badge/skills/dodo-reach/hermes-link-curator/skill-link-curator-dashboard/github.svg)](https://agentmods.dev/skills/dodo-reach/hermes-link-curator/skill-link-curator-dashboard)
Your own site
<a href="https://agentmods.dev/skills/dodo-reach/hermes-link-curator/skill-link-curator-dashboard"><img src="https://agentmods.dev/badge/skills/dodo-reach/hermes-link-curator/skill-link-curator-dashboard/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for link-curator-dashboard

Your own site · 80×15
<a href="https://agentmods.dev/skills/dodo-reach/hermes-link-curator/skill-link-curator-dashboard"><img src="https://agentmods.dev/badge/skills/dodo-reach/hermes-link-curator/skill-link-curator-dashboard.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 28 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,589 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00028 $0.02589
Opus 5 $0.00014 $0.01295
Sonnet 5 $0.00006 $0.00518
Haiku 4.5 $0.00003 $0.00259

Measured 12d ago against content hash 84a7e16a7f2c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

link-curator-dashboard scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

sleep 2 && curl -s --max-time 3 http://localhost:8090/health
skill-link-curator-dashboard/SKILL.md · 226 lines

How it starts

The opening of the file, as written. The whole thing — 226 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Service overview

The link-curator dashboard is a FastAPI app running on port 8090, separate from the official Hermes dashboard (hermes dashboard, default port 9119). It reads from the vault at <profile-dir>/vault/ and exposes a read-only web UI.

Process inventory

# Find all dashboard processes
lsof -nP -iTCP:8090 -sTCP:LISTEN

# Check the command
ps -p <pid> -o pid,command

# Check working directory (macOS)
lsof -a -p <pid> -d cwd

# Check working directory (Linux)
readlink /proc/<pid>/cwd

Current layout (verify with ps aux | grep "8090"):

  • The dashboard process typically runs uvicorn main:app --port 8090 from <profile-dir>/dashboard/
  • The process working directory is authoritative — do not assume the path matches the skill's description if multiple dashboard instances exist
  • This dashboard is a separate process from the official Hermes dashboard (the hermes dashboard command, default port 9119). They are independent and can run side-by-side.

Key paths

Component Path
Dashboard app <profile-dir>/dashboard/
Main app entry <profile-dir>/dashboard/main.py
Vault parser <profile-dir>/dashboard/archive.py
Templates <profile-dir>/dashboard/templates/
Vault <profile-dir>/vault/

Endpoints

Endpoint Purpose
GET / Dashboard UI
GET /health Health check + entry count
GET /stats Tag counts, date distribution
GET /reload-cache Force-clear and reload vault cache
GET /calendar Calendar view
GET /search?q=... Search entries
GET /tag/{tag} Entries for a specific tag
GET /day/YYYY-MM-DD Entries for a specific day
GET /day-json/YYYY-MM-DD JSON feed for a day
GET /graph Force-directed graph view (HTML + D3.js)
GET /graph-json Graph dataset as {nodes, links} JSON

Caching — automatic

archive.py uses mtime-based invalidation — no lru_cache, no manual invalidation needed:

Read the full file on GitHub · 226 lines

Files

What ships with it

5 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 226 lines · 28 tokens per session scan A 84a7e16a7f2c

Subscribe to this mod's changes

link-curator-dashboard is a skill published in the GitHub repository dodo-reach/hermes-link-curator (136 stars, last pushed 3mo ago), licensed MIT. It adds 28 tokens to every session and 2,589 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

compose-python-stack

Design and generate a compatible project from the Python Template component layers or presets. Use when choosing a workload, framework, AI providers, data engines, interfaces, training and serving tools, deployment target, or IaC option; also use when a user wants a simple library, CLI, or API without AI.

leynier/python-template · 65 tokens

nextjs-app-router-patterns

Architect and implement modern Next.js App Router applications with Server Components (RSC), Server Actions, Parallel/Intercepting Routes, and Streaming SSR.

pedroiff0/awesome-skills · 36 tokens

engineering-senior-developer

A senior full-stack web development guide focused on Laravel, Livewire, FluxUI, advanced CSS, and Three.js.

clowlove/Hermes-House · 50 tokens

speccrew-dev-desktop-tauri

SpecCrew Tauri Desktop Development Skill. Implements desktop application features using Tauri framework based on system design documents. Handles Rust backend commands, frontend integration, Tauri Command API, and Tauri Build packaging.

charlesmu99/speccrew · 50 tokens

speccrew-fd-api-contract

API Contract Generation SOP. Based on feature spec document, outputs structured frontend-backend API contract document. Once confirmed, the contract cannot be modified in downstream stages.

charlesmu99/speccrew · 40 tokens

github

GitHub operations via gh CLI: issues, PRs, CI runs, code review, API queries. Use when: (1) checking PR status or CI, (2) creating/commenting on issues, (3) listing/filtering PRs or issues, (4) viewing run logs. NOT for: complex web UI interactions requiring manual browser flows (use browser tooling when available)…

djblack1209-coder/OpenClaw-Bot · 101 tokens