build-hermes-agent-extensions

build-hermes-agent-extensions is a skill for Claude Code, Codex from gaelic-ghost/socket. It costs 44 tokens per session (956 once invoked), scanned A, original, Apache-2.0.

A guide to extending Hermes Agent, an AI agent framework, through its different extension systems. It covers skills, MCP servers, Python plugins, model and messaging providers, memory, secrets, hooks, user interfaces, and programmatic hosts.

In plain words
What is it for?
Use it when adding tools, instructions, providers, memory, integrations, hooks, desktop features, dashboards, or external control to Hermes Agent.
Why use it?
Hermes has several separate ways to add capabilities, and they are not interchangeable. The guide helps select the correct system before creating files or configuration.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/gaelic-ghost/socket/build-hermes-agent-extensions
Any agent
npx skills add gaelic-ghost/socket --skill build-hermes-agent-extensions
Clone the repo
git clone --depth 1 https://github.com/gaelic-ghost/socket

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 build-hermes-agent-extensions

README.md
[![agentmods](https://agentmods.dev/badge/skills/gaelic-ghost/socket/build-hermes-agent-extensions.svg)](https://agentmods.dev/skills/gaelic-ghost/socket/build-hermes-agent-extensions)
Your own site
<a href="https://agentmods.dev/skills/gaelic-ghost/socket/build-hermes-agent-extensions"><img src="https://agentmods.dev/badge/skills/gaelic-ghost/socket/build-hermes-agent-extensions.svg" alt="Measured on agentmods" height="20"></a>
Per session 44 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 956 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00044 $0.00956
Opus 5 $0.00022 $0.00478
Sonnet 5 $0.00009 $0.00191
Haiku 4.5 $0.00004 $0.00096

Measured 4d ago against content hash 63e898574eba, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

build-hermes-agent-extensions scanned grade A with 0 findings 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 4d 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/agent-portability-skills/skills/build-hermes-agent-extensions/SKILL.md · 82 lines

How it starts

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

Build Hermes Agent Extensions

Choose the owned extension surface before creating files. Hermes uses several unrelated plugin and integration systems; do not force them into one generic package.

Select the Surface

  1. Use a skill for instructions, existing commands, and progressive disclosure.
  2. Use MCP for an external tool server.
  3. Use a general Python plugin for registered tools, lifecycle hooks, slash commands, CLI commands, or bundled namespaced skills.
  4. Use a specialized provider/plugin surface for models, messaging platforms, memory, context engines, secrets, image/video generation, web search, or browser sessions.
  5. Use configuration for TTS commands, STT commands, shell hooks, MCP, and other explicitly config-driven surfaces.
  6. Use gateway hook directories for gateway event handlers.
  7. Use the desktop SDK or dashboard SDK only for their respective UI host; they do not share the Python plugin API.
  8. Use ACP when an editor or compatible client drives the agent; hand generic ACP implementation to build-acp-agent and existing client setup to operate-acp-agent-integration.
  9. Use A2A when independently operated agents exchange discovered tasks; hand operation to operate-a2a-agent-integration and use Hermes's specialized platform adapter only when extending its native A2A surface.
  10. Use TUI gateway JSON-RPC or the OpenAI-compatible API server for custom programs that drive the agent without an ACP client.
  11. Modify Hermes core only when the feature belongs upstream and the official contributor guide selects that path.

Read references/extension-surface-map.md before implementing any surface beyond a skill or MCP declaration.

Implement a Standalone Python Plugin

For a third-party or project integration:

  1. Keep it in an independently installable repository or project/user plugin directory.
  2. Add plugin.yaml and a narrow register(ctx) entry point.
  3. Split schemas from handlers so model-visible contracts stay reviewable.
  4. Declare provided tools, hooks, commands, skills, and required environment only when they are actually registered or required.
  5. Keep credentials in Hermes/private environment configuration.
  6. Add unit tests for registration, schemas, handlers, redaction, and failure messages.
  7. Add an opt-in smoke test for the real backend.
  8. Require explicit enablement through plugins.enabled; discovery alone must not execute third-party code. Test bundled, user, project, and pip discovery plus name-collision precedence when more than one source can provide it.

Read the full file on GitHub · 82 lines

Files

What ships with it

2 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. 4d ago First seen · 82 lines · 44 tokens per session scan A 63e898574eba

Subscribe to this mod's changes

build-hermes-agent-extensions is a skill published in the GitHub repository gaelic-ghost/socket (7 stars, last pushed 8d ago), licensed Apache-2.0. It adds 44 tokens to every session and 956 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

archon

Autonomous multi-session campaign agent. Decomposes large work into phases, delegates to sub-agents, reviews output, and maintains campaign state across context windows. Use for work that spans multiple sessions and needs persistent state, quality judgment, and strategic decomposition.

SethGammon/Citadel · 54 tokens

marshal

Meta-orchestrator that takes any direction — broad, specific, or vague — and autonomously chains skills and context into actionable work. Gathers context from codebase, docs, and memory. Only asks the user when it genuinely cannot proceed. Single-session orchestrator.

SethGammon/Citadel · 56 tokens

wiki

Markdown-first knowledge base where the LLM acts as librarian. Ingests raw sources, compiles and interlinks topic files, self-maintains an index. No vector DB or embeddings required -- uses LLM-native navigation over structured markdown up to 400K words.

SethGammon/Citadel · 56 tokens

self-service-and-knowledge

Builds the help center, in-product guidance, and knowledge base that let customers resolve problems without contacting anyone — content, findability, maintenance, and deflection measurement. Use this to build or fix a help center, reduce support volume, write documentation for customers, improve findability, or decide…

cbrock84/headcount · 75 tokens

memory-sync

Persist new context, terms, learnings, and settled lightweight decisions. Use when the user says remember this, save this for later, add to glossary, note this down, or at session end to consolidate what was learned — that goes to the memory layer (CLAUDE.md hot cache, docs/memory/, docs/inbox.md). Also use to record…

ramboz/jig · 228 tokens

agent-memory

3-tier markdown memory protocol (shared/agent/conversation) for cross-session knowledge. TRIGGER when: reading or writing agent memory files, choosing which memory tier an insight belongs in, or starting a task needing prior context. SKIP: vector recall (use semantic-memory-mcp); distilling conversations into…

komluk/scaffolding · 70 tokens