Files
hermes-agent/website/docs/reference/toolsets-reference.md
Teknium ca4907dfbc feat(gateway): add Feishu/Lark platform support (#3817)
Adds Feishu (ByteDance's enterprise messaging platform) as a gateway
platform adapter with full feature parity: WebSocket + webhook transports,
message batching, dedup, rate limiting, rich post/card content parsing,
media handling (images/audio/files/video), group @mention gating,
reaction routing, and interactive card button support.

Cherry-picked from PR #1793 by penwyp with:
- Moved to current main (PR was 458 commits behind)
- Fixed _send_with_retry shadowing BasePlatformAdapter method (renamed to
  _feishu_send_with_retry to avoid signature mismatch crash)
- Fixed import structure: aiohttp/websockets imported independently of
  lark_oapi so they remain available when SDK is missing
- Fixed get_hermes_home import (hermes_constants, not hermes_cli.config)
- Added skip decorators for tests requiring lark_oapi SDK
- All 16 integration points added surgically to current main

New dependency: lark-oapi>=1.5.3,<2 (optional, pip install hermes-agent[feishu])

Fixes #1788

Co-authored-by: penwyp <penwyp@users.noreply.github.com>
2026-03-29 18:17:42 -07:00

4.1 KiB

sidebar_position, title, description
sidebar_position title description
4 Toolsets Reference Reference for Hermes core, composite, platform, and dynamic toolsets

Toolsets Reference

Toolsets are named bundles of tools that you can enable with hermes chat --toolsets ..., configure per platform, or resolve inside the agent runtime.

Toolset Kind Resolves to
browser core browser_back, browser_click, browser_close, browser_console, browser_get_images, browser_navigate, browser_press, browser_scroll, browser_snapshot, browser_type, browser_vision, web_search
clarify core clarify
code_execution core execute_code
cronjob core cronjob
debugging composite patch, process, read_file, search_files, terminal, web_extract, web_search, write_file
delegation core delegate_task
file core patch, read_file, search_files, write_file
hermes-acp platform browser_back, browser_click, browser_close, browser_console, browser_get_images, browser_navigate, browser_press, browser_scroll, browser_snapshot, browser_type, browser_vision, delegate_task, execute_code, memory, patch, process, read_file, search_files, session_search, skill_manage, skill_view, skills_list, terminal, todo, vision_analyze, web_extract, web_search, write_file
hermes-cli platform browser_back, browser_click, browser_close, browser_console, browser_get_images, browser_navigate, browser_press, browser_scroll, browser_snapshot, browser_type, browser_vision, clarify, cronjob, delegate_task, execute_code, ha_call_service, ha_get_state, ha_list_entities, ha_list_services, honcho_conclude, honcho_context, honcho_profile, honcho_search, image_generate, memory, mixture_of_agents, patch, process, read_file, search_files, send_message, session_search, skill_manage, skill_view, skills_list, terminal, text_to_speech, todo, vision_analyze, web_extract, web_search, write_file
hermes-api-server platform (same as hermes-cli)
hermes-dingtalk platform (same as hermes-cli)
hermes-feishu platform (same as hermes-cli)
hermes-discord platform (same as hermes-cli)
hermes-email platform (same as hermes-cli)
hermes-gateway composite Union of all messaging platform toolsets
hermes-homeassistant platform (same as hermes-cli)
hermes-matrix platform (same as hermes-cli)
hermes-mattermost platform (same as hermes-cli)
hermes-signal platform (same as hermes-cli)
hermes-slack platform (same as hermes-cli)
hermes-sms platform (same as hermes-cli)
hermes-telegram platform (same as hermes-cli)
hermes-whatsapp platform (same as hermes-cli)
homeassistant core ha_call_service, ha_get_state, ha_list_entities, ha_list_services
honcho core honcho_conclude, honcho_context, honcho_profile, honcho_search
image_gen core image_generate
memory core memory
messaging core send_message
moa core mixture_of_agents
rl core rl_check_status, rl_edit_config, rl_get_current_config, rl_get_results, rl_list_environments, rl_list_runs, rl_select_environment, rl_start_training, rl_stop_training, rl_test_inference
safe composite image_generate, mixture_of_agents, vision_analyze, web_extract, web_search
search core web_search
session_search core session_search
skills core skill_manage, skill_view, skills_list
terminal core process, terminal
todo core todo
tts core text_to_speech
vision core vision_analyze
web core web_extract, web_search

Dynamic toolsets

  • mcp-<server> — generated at runtime for each configured MCP server.
  • Custom toolsets can be created in configuration and resolved at startup.
  • Wildcards: all and * expand to every registered toolset.