オファー

2026 必須の Hermes Agent Skills:完全リストとインストール優先度

AI エンジニアリング Hermes Agent · Skills
2026-06-16 約 14 分

Hermes Agent では MCP と Gateway が「何に触れるか」を決め、Skills が「定石どおりに動くか」を決めます——SKILL.md による手続き記憶です。

本記事はリスト + 順序構成:bundled 17 カテゴリ全列、official optional と Hub community の導入タイミング、第三者スキル審査、実践可能な P0–P4 優先度表

要点

  1. デフォルトで既にインストール済み:新規インストールで repo skills/ から約 70 bundled skills~/.hermes/skills/ にコピーされ、手動不要。
  2. まず P0 を検証plangithub-pr-workflowtest-driven-developmentsystematic-debugging——考える→実装→マージの主経路。
  3. official は場面が明確なときofficial/security/1passwordofficial/migration/openclaw-migrationofficial/mcp/fastmcp。コミュニティ源より信頼度高い。
  4. Hub を一括インストールしない:skills.sh / browse.sh は安全スキャン必須;dangerous 以外で --forcehermes skills inspect で先に確認。
  5. Hermes を 24/7 稼働:Skills・MCP・worktree は同一常時ホスト;ノート PC を閉じると slash セッションが切れる——Cloud Mac が長期 Agent ホストに適合(末尾チェックリスト参照)。
Hermes Agent Skills 必須リストとインストール優先度の図
Skills は Hermes の手続き記憶。数よりインストール順が重要。

1. MCP を積むより Skills が重要な理由

MCP は Agent に「手」を与える——Git 読取、DB 照会、HTTP。Skills は SOP 的な手続き記憶:PR の開き方、段階的デバッグ、コーディング前の計画。補完関係だが、初心者は MCP ばかり繋ぎデフォルト slash だけ使うことが多い。

Hermes Skills の 3 つの工程特性が優先度モデルの根拠:

  • 段階的開示:セッションは約 3k token のスキル索引(skills_list())のみ;全文は skill_view(name) でオンデマンド。多数インストールしても context を圧迫しにくい。
  • Slash command が第一級:インストール済みスキルは CLI・Telegram・Discord 等で /skill-name
  • 自己進化ループ:複雑タスク(5+ tool call)後、Agent が skill_manage で SKILL.md を作成——カタログが使用と共に成長。

ドキュメント:Skills SystemWorking with Skills。Hermes と OpenClaw で迷うなら Hermes を理解する:OpenClaw ができて Hermes ができないこと——本記事は Hermes を個人/チーム Agent ホストと仮定。

2. Hermes Skills:3 ソース(builtin / official / community)

すべてのスキルは最終的に ~/.hermes/skills/ にあるが、ソースと信頼レベルは異なる:

ソース インストール 信頼
Bundled repo skills/、install/update で同期 デフォルト;hermes update で未変更コピーを同期 builtin、常に信頼
Official Optional repo optional-skills/ hermes skills install official/... official、第三者警告なし
Community / Hub skills.sh、GitHub、browse.sh、well-known URL hermes skills install ...、必要時 --force trusted または community、安全スキャン必須

bundled ゼロ?--no-skills でインストール、または hermes skills opt-out。多くのチームはすべきでない——bundled カタログが本ガイドの骨格。

3. P0–P4 インストール優先度マトリクス(意思決定の核)

記事の核心:どのスキルを先に、Hub はいつ価値があるか。P が小さいほど優先;同層は並行検証可。

優先度 スキル / bundle 解決すること 検証
P0planコーディング前に .hermes/plans/ へ実装計画/plan refactor auth module
P0github-pr-workflow + github-code-reviewPR 作成・レビュー言語・マージチェックの標準化/github-pr-workflow open PR for feature/x
P0test-driven-development + systematic-debugging失敗テスト先行;推測ではなく段階的デバッグ/systematic-debugging intermittent CI failure
P1codebase-inspection, github-issues, github-repo-management大規模 repo ナビ、issue ライフサイクル、repo 設定hermes chat -q "scan src/ with codebase-inspection"
P1claude-code / codex / opencodeHermes 内で他 CLI Agent を編成—— Cloud Mac + Claude Code/claude-code explain current branch diff
P2notion, google-workspace, obsidianナレッジベースパイプライン;OAuth / API 設定が必要/notion then follow setup prompts
P2excalidraw, architecture-diagram, nano-pdfアーキテクチャ図、ホワイトボード、PDF レビュー出力/excalidraw draw three-tier architecture
P2 (macOS only)imessage, apple-reminders, findmy, macos-computer-useApple エコシステム自動化;platforms: [macos] で他環境は非表示/apple-reminders add release checklist item
P3official/security/1passwordシークレット・認証情報ワークフロー;共有 Agent ホスト推奨hermes skills install official/security/1password
P3official/migration/openclaw-migrationOpenClaw 設定を Hermes へ移行公式移行ドキュメント参照
P3official/mcp/fastmcp, official/mcp/mcporterMCP Server 足場とツール移植併用: MCP デプロイガイド
P4skills.sh / browse.sh / custom GitHub tap垂直ドメイン(React ベストプラクティス、サイト自動化など)hermes skills inspect ... then install

推奨 bundle: 常用 P0 をパッケージ——1 slash で全部ロード:

hermes bundles create backend-dev \
  --skill github-code-review \
  --skill test-driven-development \
  --skill github-pr-workflow \
  -d "Backend feature dev: test → implement → PR"

# Usage: /backend-dev refactor auth middleware

4. bundled 全カタログ(17 トップレベルカテゴリ)

NousResearch/hermes-agent/skills(main、2026-06)から同期。インストール後 hermes chat --toolsets skills -q "list all skills" または /skills list で確認。

4.1 software-development(11)

日常コーディングで最も使うカテゴリ。まず plantest-driven-developmentsystematic-debuggingrequesting-code-reviewsimplify-code を押さえる。

  • plan — いきなり書かず実装計画を作成
  • test-driven-development — TDD ワークフロー
  • systematic-debugging — 段階的トラブルシュート
  • requesting-code-review — 標準レビュープロンプト
  • simplify-code — リファクタと簡素化
  • spike — 探索用プロトタイプ
  • python-debugpy — Python デバッガ連携
  • node-inspect-debugger — Node デバッグ
  • hermes-agent-skill-authoring — Agent に SKILL.md 作成を教える

4.2 github(6)

  • github-pr-workflowgithub-code-reviewgithub-issues
  • github-repo-managementgithub-authcodebase-inspection

4.3 autonomous-ai-agents(4)

  • claude-codecodexopencodehermes-agent

4.4 devops(2)

  • kanban-orchestratorkanban-worker — マルチタスクかんばん編成

4.5 mlops(4)

  • evaluationhuggingface-hubinferencemodels

4.6 research(5)

  • arxivresearch-paper-writingllm-wikipolymarketblogwatcher

4.7 productivity(8)

  • notiongoogle-workspaceobsidianairtable
  • powerpointteams-meeting-pipelineocr-and-documentsmapsnano-pdf

4.8 creative(16)

ビジュアル・マルチメディア系は必要時に:excalidrawarchitecture-diagramascii-artmanim-videocomfyuip5jsclaude-designbaoyu-infographicsongwriting-and-ai-music など。

4.9 apple(5 · macOS のみ)

  • imessageapple-remindersapple-notesfindmymacos-computer-use

4.10 media(4)

  • gif-searchyoutube-contentheartmulasongsee

4.11 その他カテゴリ

  • data-sciencejupyter-live-kernel
  • emailhimalaya
  • social-mediaxurl
  • note-takingobsidian
  • smart-homeopenhue

70 bundled skills・17 カテゴリ。全部覚えなくてよい——主シナリオの P0–P2 を押さえ、他は /skill-name で試す。

5. 公式 optional スキル一覧

repo optional-skills/ にありデフォルトではコピーされない。明示的にインストール:

カテゴリ スキル 典型用途
security1password, godmode, oss-forensics, sherlock, web-pentest認証情報管理、OSINT、ペンテスト支援
migrationopenclaw-migrationOpenClaw → Hermes 設定移行
mcpfastmcp, mcporter自前 MCP Server 構築
software-developmentcode-wiki, rest-graphql-debug, subagent-driven-developmentドキュメント/wiki、API デバッグ、サブエージェント駆動開発
web-developmentpage-agentページレベル自動化 Agent
その他blockchain, finance, gaming, health, payments, etc.垂直ドメイン;hermes skills browse --source official で閲覧
# Browse official optional
hermes skills browse --source official

# Install examples
hermes skills install official/security/1password
hermes skills install official/migration/openclaw-migration
hermes skills install official/mcp/fastmcp

6. Skills Hub とコミュニティソース

Hermes は複数の発見ソースを統合(Skills Hub ドキュメント):

  • skills.sh (Vercel catalog): hermes skills search react --source skills-sh
  • GitHub direct: hermes skills install openai/skills/k8s
  • well-known: sites publish /.well-known/skills/index.json (e.g. Mintlify doc skills)
  • browse.sh: 200+ site automation SKILLs (Airbnb, arXiv, etc.), identifiers like browse-sh/...
  • Direct URL: hermes skills install https://example.com/SKILL.md --name my-skill

セキュリティ手順(必須):

  1. hermes skills inspect <identifier> — 内容と上流メタデータをプレビュー
  2. インストール時に自動スキャン;caution/warn はレビュー後 --force 可;dangerous強制不可
  3. hermes skills check + hermes skills update — 上流変更を定期同期

信頼層:openai/skillsanthropics/skillsNVIDIA/skillstrusted;多くのマーケットは communityインストール前に SKILL.md を読む——2026 Agent Skills セキュリティモデルは進化中(agentskills.io)。

7. Skill Bundles:一緒に使うスキルをパッケージ

Bundle は ~/.hermes/skill-bundles/ の小さな YAML。1 slash で複数スキル——チーム規約に最適:

# List existing bundles
hermes bundles list

# Release prep: review + PR + plan
hermes bundles create release-prep \
  --skill github-code-review \
  --skill github-pr-workflow \
  --skill plan \
  -d "Pre-release checks and PR flow"

Bundle は不足スキルをインストールしない;エイリアスのみロード。不足は警告してスキップ。

8. Agent 作成スキルと承認ゲート

Hermes は skill_manage 可能:成功タスク(特に 5+ tool call)やエラー回復後、Agent が create / patch。個人向け強力;本番は注意。

スキル書き込み毎に人間承認する場合、~/.hermes/config.yaml で:

skills:
  write_approval: true   # default false

セッション:/skills pending/skills diff <id>/skills approve <id>memory.write_approval と同様——コンプライアンスや小モデル向け。

bundled コピーを編集すると hermes update は上書きしない。上流復元:hermes skills reset google-workspace --restore

9. シナリオマトリクス:役割別スキル

あなたは P0 必須 P1–P2 推奨 P3 official
ソロ開発者plan + github-pr-workflow + TDD + debuggingcodebase-inspection, excalidraw
iOS / macOS エンジニア同上 + systematic-debuggingapple/*, claude-codefastmcp (if using MCP)
ML エンジニアplan + github-*mlops/*, arxiv, jupyter-live-kernelHub: huggingface-related
OpenClaw から移行plan + github-pr-workflowhermes-agent, notionopenclaw-migration
チーム共有 Agent ホストbackend-dev bundlegoogle-workspace, teams-meeting-pipeline1password, MCP optional

10. よくある 5 つの誤解

  1. 「スキルが多いほど良い」——索引は約 3k token だがルーティング混乱は起きる。まず P0 bundle を固める。
  2. 「Hub を入れたら使える」——多くは hermes setup や環境変数が必要;チャットに秘密を貼れない。
  3. 「bundled は自動更新」——ユーザー変更コピーは manifest でスキップ;hermes skills reset で復元。
  4. 「Skills は MCP を置き換える」——Skills は手順;MCP はライブツール。コーディングは両方—— MCP Server をどこで動かすか
  5. 「ノート PC を閉じても Skills は無事」——Gateway 長セッション・cron・slash はホスト常時オンラインが必要;Cloud Mac やサーバーで 24/7。

11. 48 時間検収と Cloud Mac 展開

  1. Cloud Mac を Macレンタル(またはローカル PoC):curl -fsSL https://hermes-agent.nousresearch.com/install.sh | bash
  2. bundled 確認:ls ~/.hermes/skills/software-development/plan
  3. P0 四コマンド:/plan/github-pr-workflow/test-driven-development/systematic-debugging——ログで skill_view 確認
  4. backend-dev bundle を作り実タスクを一巡
  5. チーム共有ホスト:hermes skills install official/security/1password
  6. 8 時間 PC を閉じ、Telegram/CLI から再接続——slash は動くはず
  7. 月額を確定;Runner / launchd 参照: Mac mini GitHub Actions Runner ガイド

マルチ Agent 構成(Hermes + Claude Code + worktree): リモート Mac worktree 短期レンタル;個人 AI 三層の文脈:AI Coding + 個人 AI + Agent アーキテクチャ

12. FAQ

Q:bundled スキルはいくつ?

A:2026-06 main で約 70、17 トップレベルディレクトリ。本機の hermes skills list または /skills list を信頼。

Q:Cursor Skills と互換?

A:どちらも SKILL.md + agentskills.io 方向だがパス・ローダー・slash 命名は異なる。Hermes は ~/.hermes/skills/skills.external_dirs で共有可。

Q:--force はいつ?

A:SKILL.md を手動レビューしスキャンが caution/warn のときのみ。dangerous はバイパス不可。

Q:bundled ゼロにしたい?

A:curl ... install.sh | bash -s -- --no-skills または hermes skills opt-out --remove(未変更コピー削除前に確認)。

まとめ

2026 年、Hermes の時間は優先度に使うべき——スキル囤積ではない:P0 plan + GitHub + TDD/debug で配送をカバー;P3 official は場面が明確なとき;P4 Hub は inspect + レビュー後。約 70 bundled は既に最も豊富な同梱カタログの一つ——まず習得し、skill_manage で拡張。

Cloud Mac で Hermes Agent + Skills を 24/7

APAC・米東の専用 M4 ベアメタル。Hermes Gateway、MCP、~/.hermes/skills/ を同一ホスト;48 時間日次レンタルで P0 検証後に月額。

Cloud Mac プランを見る · M4 スペック · オンボーディングチェックリスト