hermes-link-curator

作者 dodo-reach已验证

Hermes profile pack for archiving and browsing curated links + web dashboard app

116
Stars
8
Forks
HTML
语言
2026/8/23
添加时间

⚠️ 第三方软件声明

本 Skill 为第三方开源软件,独立托管于 GitHub。SkillTip 仅为信息目录,不控制或维护底层仓库。所显示的安全检查为自动化且范围有限,安装前请自行审查源码。

阅读服务条款

安装

添加到你的 Claude Code skills 目录:

# Add to your Claude Code skills
git clone https://github.com/dodo-reach/hermes-link-curator

快速入门

使用 hermes-link-curator 等 Skills 的指南。

安全报告

已验证

上次扫描:—

{
  "status": "PASSED",
  "issues": []
}

README.md

Hermes Link Curator

A link curator profile pack for Hermes Agent — turn any Hermes agent into a librarian. Send a URL, get it archived, tagged, summarized, and browsable in a fast Obsidian-style dashboard.

Dashboard preview

Hermes Link Curator dashboard running on iPhone

The archive is just a local web app, so it works well on desktop and mobile: list view, calendar, search, tags, day pages, graph view, and JSON stats all read from the same markdown vault.

What this is

  • 2 skills (obsidian + link-curator-dashboard) — drop into any Hermes profile
  • 1 dashboard — standalone FastAPI app, Obsidian-style web UI (port 8090)
  • 1 SOUL template — gives the agent a "librarian" personality (archive, don't summarize)

The agent receives links on Telegram, Discord, or anywhere else → fetches content → writes entries to a local markdown vault → the dashboard reads the vault and serves a search/tag/graph view.

Requirements and platforms

Hermes Link Curator is designed for Unix-like environments:

  • macOS — supported
  • Linux — supported
  • Windows via WSL — should work if Hermes works in your WSL environment
  • Windows native — not currently supported by the installer

You need Hermes Agent, Python 3.10+, and a Bash-compatible shell. The dashboard itself is a standard FastAPI app, but the installer and profile paths assume ~/.hermes/....

Install (30 seconds, agent-guided)

Send your Hermes agent a message like:

Install https://github.com/dodo-reach/hermes-link-curator — follow the AGENT_GUIDE.md.

The agent will read AGENT_GUIDE.md, create a new profile, copy the pieces, and start the dashboard. You can then start archiving:

archive https://github.com/some/repo

or use the dashboard at http://localhost:8090.

Prefer the manual path? Run ./install.sh from this repo — it asks one question (profile name) and does the same thing.

Where the dashboard lives

The installer copies the web app into your Hermes profile and starts it from:

~/.hermes/profiles/<profile-name>/dashboard/

By default it listens on:

http://localhost:8090

That means it is exposed only on the machine running Hermes. The dashboard reads the vault at ~/.hermes/profiles/<profile-name>/vault/, so every archived link appears there as markdown and in the web UI.

You can change the port when installing, or later by running:

cd ~/.hermes/profiles/<profile-name>/dashboard
./start.sh 8091

The dashboard binds to 127.0.0.1 by default. To make it reachable from your iPhone on the same private network, start it with:

cd ~/.hermes/profiles/<profile-name>/dashboard
ARCHIVE_HOST=0.0.0.0 ./start.sh 8090

Then open http://<your-mac-ip>:8090 from Safari on iPhone.

Use it like an iPhone app

Once the dashboard is reachable from your iPhone:

  1. Open the dashboard URL in Safari.
  2. Tap the Share button.
  3. Tap Add to Home Screen.
  4. Name it Archive or Hermes Links.

From then on, you can launch the archive from your Home Screen like a small private app.

Access from anywhere with Tailscale

For access outside your home network, use Tailscale instead of exposing the dashboard to the public internet:

  1. Install Tailscale on the hardware running Hermes and on your iPhone.
  2. Sign both devices into the same tailnet.
  3. Start the dashboard with ARCHIVE_HOST=0.0.0.0.
  4. On iPhone, open http://<mac-tailscale-name>:8090 or http://<mac-tailscale-ip>:8090.
  5. Add that page to the Home Screen from Safari.

The dashboard does not include authentication, so keep it behind localhost, your LAN, or Tailscale. Do not publish it directly to the open internet.

Repo layout

hermes-link-curator/
├── README.md                          # you are here
├── AGENT_GUIDE.md                     # instructions for the agent
├── install.sh                         # self-service installer
├── SOUL.template.md                   # paste into your profile's SOUL.md
├── skill-obsidian/                    # the save-link skill
├── skill-link-curator-dashboard/      # the dashboard maintenance skill
└── dashboard/                         # standalone FastAPI web app

Architecture

Everything lives under ~/.hermes/profiles/<profile-name>/. Path auto-discovery — no env vars to set, no config files to edit:

~/.hermes/profiles/link-curator/
├── SOUL.md                            # personality + triggers
├── vault/                             # the archive (auto-created on first save)
│   ├── INDEX.md                       # master list, newest first
│   └── YYYY-MM-DD.md                  # daily notes
├── skills/note-taking/
│   ├── obsidian/                      # the save workflow
│   └── link-curator-dashboard/        # dashboard maintenance
└── dashboard/                         # the FastAPI web app
    ├── main.py
    ├── archive.py                     # vault parser
    ├── validate.py                    # integrity checker
    └── start.sh                       # launcher

The dashboard reads the vault and exposes: list, calendar, search, tag pages, day pages, a D3 force-directed tag graph, and a JSON stats endpoint.

Optional upgrades

The base install gets you archiving. Two more steps are documented in AGENT_GUIDE.md:

  • Fetch context from difficult links — add a browser-based fetcher and the Playwright MCP server for sites that need JavaScript rendering or an existing browser session
  • Send links from messaging apps — add a Telegram/Discord/Slack gateway and forward URLs to the link-curator agent

Acknowledgments

Built by dodo-reach as a personal system, packaged for the Hermes community. Powered by Hermes Agent by Nous Research.

License

MIT

常见问题

What is hermes-link-curator?

hermes-link-curator is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by dodo-reach. Hermes profile pack for archiving and browsing curated links + web dashboard app. It has 116 GitHub stars.

Is hermes-link-curator safe to use?

Yes. hermes-link-curator passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install hermes-link-curator?

Clone the repository with "git clone https://github.com/dodo-reach/hermes-link-curator" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is hermes-link-curator written in?

hermes-link-curator is primarily written in HTML. It is open-source under dodo-reach on GitHub, so you can review or fork the full source.

Are there alternatives to hermes-link-curator?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh hermes-link-curator against similar tools.

评论 (0)

暂无评论,成为第一个分享想法的人!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI 智能体
查看详情

开发者还喜欢

基于喜欢此 Skill 的开发者投票和收藏

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP 服务器apisai-tools
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情