Hermes Agent Skills

Hermes Agent Skills That Make It 10x More Powerful

🎬 AI LABS 📅 Aug 30, 2026 ⏱ 11:54
Hermes skills hooks context window orchestration

🎯 Intro — Why Install More Skills?

Hermes ships with 90+ built-in skills and can even write new ones from workflows it sees in your chat. But those auto-created skills only come from what Hermes learns from you. The skills in this video are built by people who already solved problems Hermes can't handle on its own — and packaged those solutions into installable skills. 0:00

The meta-lesson (stated at the end): "more is not better. The best skills fix a real problem you keep hitting — which is why half this list protects the context window instead of adding features." And most of these aren't Hermes-only: the same ideas apply to Claude Code, ChatGPT, or any AI coding agent.

📝 1. Planning with Files

Problem: long conversations make the agent forget details you mentioned earlier — faster on Opus models. Too many messages in the context window → the model loses track of smaller details. 0:52

Solution: move the plan into three files in your project folder: task_plan.md (splits the main task into smaller sub-tasks), findings.md (every problem + how it was solved, reusable learnings), and progress.md (how far the agent has gotten).

What sets it apart — the hook: keeping plans in files isn't new. But this skill installs a hook that forcefully inserts those three files into the context window — so the model can't choose to ignore the plan. "Most agents don't support hooks. Hermes does." Their testing showed the agent performed much better with the hook running because it didn't drift from the task.
The install auto-adds the hooks alongside the skill; the skill file explains what the three files are, where they live, and what each does — plus the rules the agent must follow.

🔗 github.com/OthmanAdi/planning-with-files

🤝 2. Delegate (Turns Hermes into an Orchestrator)

Problem: Hermes already has a Claude Code skill and a Codex skill, but it won't use them unless you ask — and you have to say which tasks go to which agent in every prompt. 3:10

Solution: the Delegate Setup skill (actually a set of skills) acts as an orchestrator across every coding tool installed on your machine. It figures out which tool suits which task, hands the work over, and gives you one collective report.

DetailWhat it means
Main skilldelegate setup coordinates the others
Dedicated skillsClaude Code, Codex, Cursor (and more — 18 to choose from)
Run modeDelegated agents run without asking permission per command (no approval stalls)
FlowIdentifies installed tools → maps which area each agent handles (with model name + effort level) → you approve → runs → collective report
Why it's "the best Hermes code skill": the coding actually goes to Claude Code / Codex / Cursor instead of staying in one place. Hermes becomes the director, not the coder.

🔗 github.com/amElnagdy/delegate-skills

🔇 3. RTK (Terminal Output Filter)

Problem: every terminal command returns output the agent has to read — but 90% of it is noise that bloats the context. Too much context → harder to focus → worse answers. 4:47

Solution: RTK cuts command output and keeps only what the agent needs, before it reaches the context window. It has a database of the commands agents run most often, so it knows how to filter each one. Example: when running tests, the agent only needs the failed results — RTK keeps only failures by default.

Not actually a skill: RTK is a separate terminal tool you install on your device. It's on this list because it guarantees your agent gets only the right context. The authors wrote a skill (in their AI Labs Pro community) that routes the agent's commands through RTK instead of the usual way — because agents tend to forget what we ask.

🔗 github.com/rtk-ai/rtk

🛡️ 4. Mantis (Google's Security Review Skills)

What it is: a set of security review skills by Google, each focusing on a different area of security review — for mobile or web apps. 7:14

Examples: Mantis Plan (plans the security review process before you begin) and Mantis Reflect (goes back over findings, makes sure failures are documented properly). Install all of them — they're separate pieces of one review process.
Why Hermes is the best place for it — cron jobs: once your app is hosted, it needs security reviews again and again, and you don't want to remember to do that. Hermes runs all the time, so you schedule the full review set against your hosted app via a cron job — and get alerted on Slack if it finds something. "We run the same setup on our own project."

🔗 github.com/google/mantis

🌐 5. Agent Reach (Access Restricted Sites)

Problem: agents get denied access to valuable research sites — like Reddit — because those sites don't want models scraping their content. 8:44

Solution: Agent Reach gives Hermes access to 15+ platforms — Reddit, GitHub, Instagram, Facebook, Twitter — using free methods (costs nothing). It was the #1 trending project on GitHub recently.

Usage: install → ask Hermes to search any topic on any platform → it runs its own scripts, finds the relevant info, and returns answers. Real users talking about problems, opinions, and experiences = valuable research data that's usually walled off.

🔗 github.com/Panniantong/Agent-Reach

🧲 6. Skill Retriever (Save 9K Tokens/Turn)

Problem: only a skill's name and description go into the context window — but they're sent with every message. Past 100 skills, that's a huge chunk of context gone before you've said anything. 9:46

The numbers (from their docs): with the full list going in → ~11,000 tokens. After Skill Retriever → ~2,300 tokens. That's 9,000+ tokens saved every turn.
MechanismDetail
Pre-model stepRuns before Hermes calls the model
ChunkingSplits your message into model-understandable chunks; does the same to every skill
MatchingMatches your message against the skill list; sends only the highest-scoring descriptions
FormA plugin; enable "Skill Retriever" from the plugins area
Two benefits: (1) less in the context window = cheaper to run; (2) the agent isn't distracted by irrelevant skills = better answers.

🔗 github.com/moonlight-lupin/agent-skills (plugins/skill-retrieval)

💡 Key Takeaways

  1. Half this list protects the context window, not adds features. The best skills fix a real, recurring problem.
  2. Hooks are Hermes' superpower. Planning with Files uses a hook to force plan files into context — "most agents don't support hooks. Hermes does."
  3. Delegate turns Hermes into a director, not a coder. It maps tasks to the right tool (Claude Code/Codex/Cursor) and reports collectively.
  4. 90% of terminal output is noise. RTK filters it before the context window — agents only need failures, not passing results.
  5. Cron jobs make security reviews hands-off. Mantis + Hermes' always-on scheduling = scheduled reviews + Slack alerts.
  6. Skill names/descriptions leak context. Past 100 skills, the index alone eats ~11K tokens. Skill Retriever cuts it to ~2.3K.
  7. Everything is agent-agnostic. The ideas transfer to Claude Code, ChatGPT, or any AI coding agent.

📍 Timestamp Index

0:00 Intro
0:52 Planning with Files
3:10 Delegate (orchestrator)
4:47 RTK (output filter)
7:14 Mantis (security)
8:44 Agent Reach
9:46 Skill Retriever
☰ View all