Hermes Installed Catalog (this server)
A live inventory of what is actually installed on pedroiff0's Hermes server,
not a theoretical directory. Generated by scanning ~/.hermes / skills,
hermes-agent/plugins, and profiles.
Use it when the user asks "what skills/plugins do I have", "which agent can do X",
or to avoid suggesting a skill that isn't installed here.
Snapshot (regenerate with the script)
- Skills installed: 233 (default profile) — 210 are the
agency-* bundle.
- Plugins installed: 18 (browser, context_engine, cron_providers, dashboard_auth,
disk-cleanup, google_meet, hermes-achievements, image_gen, kanban, memory,
model-providers, observability, platforms, security-guidance, spotify,
teams_pipeline, video_gen, web).
- Custom agent definitions: 0. Subagents are runtime
leaf/orchestrator
spawned via delegate_task; there is no agents/ directory with definitions.
- Profiles: only
default (no extra profiles).
Skill groups (top counts)
| Group |
Qtd |
| agency:specialized |
46 |
| agency:marketing |
36 |
| agency:engineering |
30 |
| agency:game |
20 |
| agency:security |
10 |
| agency:design |
9 |
| (non-agency categories) |
23 |
Full list in references/installed-inventory.md; raw data in references/installed.json.
How to regenerate
The catalog can drift as skills are added/removed. Rebuild it from disk:
python3 skills/github/hermes-installed-catalog/scripts/gen_catalog.py
This rewrites references/installed-inventory.md and references/installed.json
by scanning the real Hermes home.
Notes / pitfalls
- Counts reflect skills with a
SKILL.md (a dir without it isn't a usable skill).
orch/runs/agents is runtime scratch for delegate_task, not agent definitions.
- Plugins live in
hermes-agent/plugins; some entries there are internal (__init__.py, plugin_utils.py) and are excluded from the count.
- If new profiles appear under
~/.hermes/profiles/, the generator picks them up automatically.
1---2name: hermes-installed-catalog3description: Live catalog of skills, plugins, and agents actually installed on THIS Hermes server (pedroiff0). Lists the 233 installed skills grouped by domain, the 18 installed plugins, and confirms there are no custom agent definitions (subagents are runtime leaf/orchestrator). Includes a generator script so the catalog can be refreshed from disk on demand.4license: MIT5---67# Hermes Installed Catalog (this server)89A **live inventory** of what is actually installed on pedroiff0's Hermes server,10not a theoretical directory. Generated by scanning `~/.hermes / skills`,11`hermes-agent/plugins`, and profiles.1213Use it when the user asks "what skills/plugins do I have", "which agent can do X",14or to avoid suggesting a skill that isn't installed here.1516## Snapshot (regenerate with the script)1718- **Skills installed:** 233 (default profile) — 210 are the `agency-*` bundle.19- **Plugins installed:** 18 (browser, context_engine, cron_providers, dashboard_auth,20 disk-cleanup, google_meet, hermes-achievements, image_gen, kanban, memory,21 model-providers, observability, platforms, security-guidance, spotify,22 teams_pipeline, video_gen, web).23- **Custom agent definitions:** 0. Subagents are runtime `leaf`/`orchestrator`24 spawned via `delegate_task`; there is no `agents/` directory with definitions.25- **Profiles:** only `default` (no extra profiles).2627## Skill groups (top counts)2829| Group | Qtd |30|---|---|31| agency:specialized | 46 |32| agency:marketing | 36 |33| agency:engineering | 30 |34| agency:game | 20 |35| agency:security | 10 |36| agency:design | 9 |37| (non-agency categories) | 23 |3839Full list in `references/installed-inventory.md`; raw data in `references/installed.json`.4041## How to regenerate4243The catalog can drift as skills are added/removed. Rebuild it from disk:4445```bash46python3 skills/github/hermes-installed-catalog/scripts/gen_catalog.py47```4849This rewrites `references/installed-inventory.md` and `references/installed.json`50by scanning the real Hermes home.5152## Notes / pitfalls5354- Counts reflect skills **with a `SKILL.md`** (a dir without it isn't a usable skill).55- `orch/runs/agents` is runtime scratch for delegate_task, not agent definitions.56- Plugins live in `hermes-agent/plugins`; some entries there are internal (`__init__.py`, `plugin_utils.py`) and are excluded from the count.57- If new profiles appear under `~/.hermes/profiles/`, the generator picks them up automatically.