coordinate-external-ag…
Coordinate independently operated external agents through durable handoffs. Use when work crosses hosts, sessions, accounts, services, queues, boards, pull…
Audit Socket-to-Hermes compatibility across Agent Skills, Codex plugins, MCP, hooks, apps, agents, and Hermes extension systems. Use for skill exports, config translations, and Hermes adapter decisions.
$ npx -y skills add gaelic-ghost/socket --skill hermes-agent-compatibility --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/hermes-agent-compatibilityContext preview
The summary Claude sees to decide when to auto-load this skill.
Audit Socket-to-Hermes compatibility across Agent Skills, Codex plugins, MCP, hooks, apps, agents, and Hermes extension systems. Use for skill exports, config translations, and Hermes adapter decisions.
name: hermes-agent-compatibility
description: Audit Socket-to-Hermes compatibility across Agent Skills, Codex plugins, MCP, hooks, apps, agents, and Hermes extension systems. Use for skill exports, config translations, and Hermes adapter decisions.
metadata:
hermes:
category: agent-portability
tags: [hermes, agent-skills, codex, mcp, portability]Maintain Socket's deliberate compatibility boundary with Hermes Agent. Start by classifying the requested Socket surface, then choose the narrowest Hermes surface that preserves its real behavior.
| Socket surface | Hermes equivalent | Compatibility outcome | | --- | --- | --- | | `SKILL.md` workflow | GitHub skill tap or direct GitHub skill install | Export when the workflow is portable instructions plus existing tools. | | Codex plugin bundle | None | Do not present `.codex-plugin/plugin.json` as a Hermes plugin. Keep it as Codex packaging only. | | `.mcp.json` server declaration | `mcp_servers` entry in `~/.hermes/config.yaml` | Translate the transport and required environment, then validate the server in Hermes. | | Codex lifecycle hook | Python plugin hook, gateway hook, or shell hook | Select the Hermes event system by runtime owner; do not mechanically translate the Codex event file. | | Codex app or connector | MCP, API integration, or standalone plugin | Rebuild against the actual external-service contract; `.app.json` has no Hermes meaning. | | Codex custom agent | Hermes delegation, profile, or profile distribution | Redesign the role, state, tools, and isolation; do not translate `agents/openai.yaml` presentation metadata. | | Runtime tools, hooks, commands, or bundled skills | General Python Hermes plugin | Use `plugin.yaml` plus `register(ctx)` only when instruction-only or MCP configuration cannot express the behavior. | | Messaging channel | Platform adapter | Use the specialized gateway platform plugin surface. | | Inference, memory, context, secrets, media, search, or browser backend | Specialized Hermes plugin/provider | Use the subsystem-specific interface, not a general plugin wrapper. | | Native desktop or web dashboard UI | Desktop or dashboard SDK | These are separate Hermes UI extension systems and do not reuse the Python plugin API. |
Socket's Hermes tap is the checked-in root `skills/` export. Its authored source remains `plugins/agent-portability-skills/skills/`; do not edit the export manually.
1. Add or revise the authored skill under `plugins/agent-portability-skills/skills/`. 2. Use a lowercase hyphenated `name` that matches the skill directory and a concise, trigger-oriented `description`. 3. Add `metadata.hermes.category` and `metadata.hermes.tags` when they improve Hermes discovery without changing the skill's meaning. 4. Add the skill name to the relevant root `skills.sh.json` grouping. 5. Run `just repo-sync` and `just repo-validate` from the Socket root. 6. Review the generated root `skills/` diff with the authored source. The validator requires an exact mirror so a GitHub tap installs the reviewed content.
Hermes users add the Socket tap with `hermes skills tap add gaelic-ghost/socket` and install a skill by its root export slug, for example `hermes skills install gaelic-ghost/socket/hermes-agent-compatibility`.
Do not copy a Socket `.mcp.json` file into Hermes configuration. Translate each server into `mcp_servers.<name>` in `~/.hermes/config.yaml`:
mcp_servers:
example_server:
command: "uv"
args: ["run", "python", "app/server.py"]
env:
EXAMPLE_API_KEY: "set-this-in-your-private-config"
tools:
include: [read_status]
prompts: false
resources: falseUse `url` instead of `command` and `args` for an HTTP MCP server. Keep secrets out of Socket files and use a narrow `tools.include` list when the server has mutation-capable tools. Validate with `hermes mcp test <name>` before asking an agent to depend on the server.
Route broad Hermes use through `choose-hermes-agent-workflow`. Use `build-hermes-agent-extensions` when a Socket feature needs implementation beyond a portable skill or MCP translation.
Use a general Python Hermes plugin only when the integration needs a registered tool, plugin hook, slash command, CLI command, or namespaced bundled skill that cannot be represented as a standalone skill, configuration surface, or external MCP server. A plugin lives in Hermes's plugin install surface, declares `plugin.yaml`, and exposes behavior from `register(ctx)`.
Use the specialized platform/provider interfaces for messaging channels, model providers, memory, context engines, secret sources, image/video generation, web search, or browser sessions. Use the desktop and dashboard SDKs only for their respective UI hosts. Hermes calls all of these “plugins” in some contexts, but they have different discovery, registration, lifecycle, and distribution contracts.
Do not add a generic Socket-to-Hermes bridge, copy Codex manifests into a Hermes plugin, or create an adapter template without a concrete package that needs runtime behavior. Those would hide host differences rather than make them maintainable.
State each outcome as one of:
installed through the Socket tap.
documented `mcp_servers` translation but no automatic installation.
separate general or specialized Hermes plugin and is not supplied by the Socket Codex bundle.
equivalent.
Link claims that depend on Hermes behavior to the current official skills, MCP, plugin, provider, pl
Stuff for Agents on macOS Promo audio: Socket Codex Marketplace Promo
Coordinate independently operated external agents through durable handoffs. Use when work crosses hosts, sessions, accounts, services, queues, boards, pull…
Assign worktree, branch, write, validation, integration, and cleanup ownership before parallel repository work. Use when a worker will inspect or modify…
Design framework-neutral agent and automation workflows before implementation. Use when choosing between Codex app automations, codex exec, Codex subagents,…
Design evaluation workflows for agent, skill, prompt, and automation behavior before implementation. Use when choosing eval cases, graders, thresholds,…
Design safe n8n workflows with deterministic routing, credentials, idempotency, recovery, local-model checks, drafts, and exact approval gates.
Coordinate bounded worker tasks with a launch envelope, report-back, escalation, and synthesis contract. Use before spawning, resuming, steering, cancelling,…