hermes-agent 0.10.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (843) hide show
  1. hermes_agent-0.10.0/LICENSE +21 -0
  2. hermes_agent-0.10.0/MANIFEST.in +4 -0
  3. hermes_agent-0.10.0/PKG-INFO +295 -0
  4. hermes_agent-0.10.0/README.md +178 -0
  5. hermes_agent-0.10.0/acp_adapter/__init__.py +1 -0
  6. hermes_agent-0.10.0/acp_adapter/__main__.py +5 -0
  7. hermes_agent-0.10.0/acp_adapter/auth.py +24 -0
  8. hermes_agent-0.10.0/acp_adapter/entry.py +85 -0
  9. hermes_agent-0.10.0/acp_adapter/events.py +175 -0
  10. hermes_agent-0.10.0/acp_adapter/permissions.py +77 -0
  11. hermes_agent-0.10.0/acp_adapter/server.py +728 -0
  12. hermes_agent-0.10.0/acp_adapter/session.py +475 -0
  13. hermes_agent-0.10.0/acp_adapter/tools.py +214 -0
  14. hermes_agent-0.10.0/agent/__init__.py +6 -0
  15. hermes_agent-0.10.0/agent/anthropic_adapter.py +1520 -0
  16. hermes_agent-0.10.0/agent/auxiliary_client.py +2716 -0
  17. hermes_agent-0.10.0/agent/bedrock_adapter.py +1098 -0
  18. hermes_agent-0.10.0/agent/context_compressor.py +1163 -0
  19. hermes_agent-0.10.0/agent/context_engine.py +184 -0
  20. hermes_agent-0.10.0/agent/context_references.py +520 -0
  21. hermes_agent-0.10.0/agent/copilot_acp_client.py +586 -0
  22. hermes_agent-0.10.0/agent/credential_pool.py +1418 -0
  23. hermes_agent-0.10.0/agent/display.py +996 -0
  24. hermes_agent-0.10.0/agent/error_classifier.py +829 -0
  25. hermes_agent-0.10.0/agent/gemini_cloudcode_adapter.py +764 -0
  26. hermes_agent-0.10.0/agent/google_code_assist.py +417 -0
  27. hermes_agent-0.10.0/agent/google_oauth.py +1048 -0
  28. hermes_agent-0.10.0/agent/insights.py +768 -0
  29. hermes_agent-0.10.0/agent/manual_compression_feedback.py +49 -0
  30. hermes_agent-0.10.0/agent/memory_manager.py +373 -0
  31. hermes_agent-0.10.0/agent/memory_provider.py +231 -0
  32. hermes_agent-0.10.0/agent/model_metadata.py +1116 -0
  33. hermes_agent-0.10.0/agent/models_dev.py +586 -0
  34. hermes_agent-0.10.0/agent/nous_rate_guard.py +182 -0
  35. hermes_agent-0.10.0/agent/prompt_builder.py +1045 -0
  36. hermes_agent-0.10.0/agent/prompt_caching.py +72 -0
  37. hermes_agent-0.10.0/agent/rate_limit_tracker.py +246 -0
  38. hermes_agent-0.10.0/agent/redact.py +198 -0
  39. hermes_agent-0.10.0/agent/retry_utils.py +57 -0
  40. hermes_agent-0.10.0/agent/skill_commands.py +377 -0
  41. hermes_agent-0.10.0/agent/skill_utils.py +465 -0
  42. hermes_agent-0.10.0/agent/smart_model_routing.py +195 -0
  43. hermes_agent-0.10.0/agent/subdirectory_hints.py +224 -0
  44. hermes_agent-0.10.0/agent/title_generator.py +125 -0
  45. hermes_agent-0.10.0/agent/trajectory.py +56 -0
  46. hermes_agent-0.10.0/agent/usage_pricing.py +687 -0
  47. hermes_agent-0.10.0/batch_runner.py +1290 -0
  48. hermes_agent-0.10.0/cli.py +10275 -0
  49. hermes_agent-0.10.0/cron/__init__.py +42 -0
  50. hermes_agent-0.10.0/cron/jobs.py +768 -0
  51. hermes_agent-0.10.0/cron/scheduler.py +1009 -0
  52. hermes_agent-0.10.0/gateway/__init__.py +35 -0
  53. hermes_agent-0.10.0/gateway/builtin_hooks/__init__.py +1 -0
  54. hermes_agent-0.10.0/gateway/builtin_hooks/boot_md.py +85 -0
  55. hermes_agent-0.10.0/gateway/channel_directory.py +276 -0
  56. hermes_agent-0.10.0/gateway/config.py +1178 -0
  57. hermes_agent-0.10.0/gateway/delivery.py +256 -0
  58. hermes_agent-0.10.0/gateway/display_config.py +194 -0
  59. hermes_agent-0.10.0/gateway/hooks.py +170 -0
  60. hermes_agent-0.10.0/gateway/mirror.py +132 -0
  61. hermes_agent-0.10.0/gateway/pairing.py +309 -0
  62. hermes_agent-0.10.0/gateway/platforms/__init__.py +19 -0
  63. hermes_agent-0.10.0/gateway/platforms/api_server.py +2436 -0
  64. hermes_agent-0.10.0/gateway/platforms/base.py +2164 -0
  65. hermes_agent-0.10.0/gateway/platforms/bluebubbles.py +918 -0
  66. hermes_agent-0.10.0/gateway/platforms/dingtalk.py +347 -0
  67. hermes_agent-0.10.0/gateway/platforms/discord.py +3191 -0
  68. hermes_agent-0.10.0/gateway/platforms/email.py +625 -0
  69. hermes_agent-0.10.0/gateway/platforms/feishu.py +4131 -0
  70. hermes_agent-0.10.0/gateway/platforms/helpers.py +264 -0
  71. hermes_agent-0.10.0/gateway/platforms/homeassistant.py +449 -0
  72. hermes_agent-0.10.0/gateway/platforms/matrix.py +2216 -0
  73. hermes_agent-0.10.0/gateway/platforms/mattermost.py +740 -0
  74. hermes_agent-0.10.0/gateway/platforms/qqbot.py +1960 -0
  75. hermes_agent-0.10.0/gateway/platforms/signal.py +825 -0
  76. hermes_agent-0.10.0/gateway/platforms/slack.py +1695 -0
  77. hermes_agent-0.10.0/gateway/platforms/sms.py +373 -0
  78. hermes_agent-0.10.0/gateway/platforms/telegram.py +2914 -0
  79. hermes_agent-0.10.0/gateway/platforms/telegram_network.py +246 -0
  80. hermes_agent-0.10.0/gateway/platforms/webhook.py +672 -0
  81. hermes_agent-0.10.0/gateway/platforms/wecom.py +1430 -0
  82. hermes_agent-0.10.0/gateway/platforms/wecom_callback.py +401 -0
  83. hermes_agent-0.10.0/gateway/platforms/wecom_crypto.py +142 -0
  84. hermes_agent-0.10.0/gateway/platforms/weixin.py +1829 -0
  85. hermes_agent-0.10.0/gateway/platforms/whatsapp.py +989 -0
  86. hermes_agent-0.10.0/gateway/restart.py +20 -0
  87. hermes_agent-0.10.0/gateway/run.py +9892 -0
  88. hermes_agent-0.10.0/gateway/session.py +1090 -0
  89. hermes_agent-0.10.0/gateway/session_context.py +145 -0
  90. hermes_agent-0.10.0/gateway/status.py +455 -0
  91. hermes_agent-0.10.0/gateway/sticker_cache.py +111 -0
  92. hermes_agent-0.10.0/gateway/stream_consumer.py +761 -0
  93. hermes_agent-0.10.0/hermes_agent.egg-info/PKG-INFO +295 -0
  94. hermes_agent-0.10.0/hermes_agent.egg-info/SOURCES.txt +841 -0
  95. hermes_agent-0.10.0/hermes_agent.egg-info/dependency_links.txt +1 -0
  96. hermes_agent-0.10.0/hermes_agent.egg-info/entry_points.txt +4 -0
  97. hermes_agent-0.10.0/hermes_agent.egg-info/requires.txt +135 -0
  98. hermes_agent-0.10.0/hermes_agent.egg-info/top_level.txt +20 -0
  99. hermes_agent-0.10.0/hermes_cli/__init__.py +15 -0
  100. hermes_agent-0.10.0/hermes_cli/auth.py +3429 -0
  101. hermes_agent-0.10.0/hermes_cli/auth_commands.py +587 -0
  102. hermes_agent-0.10.0/hermes_cli/backup.py +655 -0
  103. hermes_agent-0.10.0/hermes_cli/banner.py +535 -0
  104. hermes_agent-0.10.0/hermes_cli/callbacks.py +242 -0
  105. hermes_agent-0.10.0/hermes_cli/claw.py +734 -0
  106. hermes_agent-0.10.0/hermes_cli/cli_output.py +78 -0
  107. hermes_agent-0.10.0/hermes_cli/clipboard.py +432 -0
  108. hermes_agent-0.10.0/hermes_cli/codex_models.py +176 -0
  109. hermes_agent-0.10.0/hermes_cli/colors.py +38 -0
  110. hermes_agent-0.10.0/hermes_cli/commands.py +1234 -0
  111. hermes_agent-0.10.0/hermes_cli/completion.py +315 -0
  112. hermes_agent-0.10.0/hermes_cli/config.py +3619 -0
  113. hermes_agent-0.10.0/hermes_cli/copilot_auth.py +299 -0
  114. hermes_agent-0.10.0/hermes_cli/cron.py +290 -0
  115. hermes_agent-0.10.0/hermes_cli/curses_ui.py +466 -0
  116. hermes_agent-0.10.0/hermes_cli/debug.py +477 -0
  117. hermes_agent-0.10.0/hermes_cli/default_soul.py +11 -0
  118. hermes_agent-0.10.0/hermes_cli/doctor.py +1149 -0
  119. hermes_agent-0.10.0/hermes_cli/dump.py +345 -0
  120. hermes_agent-0.10.0/hermes_cli/env_loader.py +123 -0
  121. hermes_agent-0.10.0/hermes_cli/gateway.py +3161 -0
  122. hermes_agent-0.10.0/hermes_cli/logs.py +390 -0
  123. hermes_agent-0.10.0/hermes_cli/main.py +6552 -0
  124. hermes_agent-0.10.0/hermes_cli/mcp_config.py +777 -0
  125. hermes_agent-0.10.0/hermes_cli/memory_setup.py +457 -0
  126. hermes_agent-0.10.0/hermes_cli/model_normalize.py +407 -0
  127. hermes_agent-0.10.0/hermes_cli/model_switch.py +1125 -0
  128. hermes_agent-0.10.0/hermes_cli/models.py +2173 -0
  129. hermes_agent-0.10.0/hermes_cli/nous_subscription.py +778 -0
  130. hermes_agent-0.10.0/hermes_cli/pairing.py +97 -0
  131. hermes_agent-0.10.0/hermes_cli/platforms.py +47 -0
  132. hermes_agent-0.10.0/hermes_cli/plugins.py +843 -0
  133. hermes_agent-0.10.0/hermes_cli/plugins_cmd.py +1128 -0
  134. hermes_agent-0.10.0/hermes_cli/profiles.py +1094 -0
  135. hermes_agent-0.10.0/hermes_cli/providers.py +583 -0
  136. hermes_agent-0.10.0/hermes_cli/runtime_provider.py +996 -0
  137. hermes_agent-0.10.0/hermes_cli/setup.py +3235 -0
  138. hermes_agent-0.10.0/hermes_cli/skills_config.py +177 -0
  139. hermes_agent-0.10.0/hermes_cli/skills_hub.py +1300 -0
  140. hermes_agent-0.10.0/hermes_cli/skin_engine.py +818 -0
  141. hermes_agent-0.10.0/hermes_cli/status.py +488 -0
  142. hermes_agent-0.10.0/hermes_cli/tips.py +349 -0
  143. hermes_agent-0.10.0/hermes_cli/tools_config.py +1868 -0
  144. hermes_agent-0.10.0/hermes_cli/uninstall.py +326 -0
  145. hermes_agent-0.10.0/hermes_cli/web_server.py +2350 -0
  146. hermes_agent-0.10.0/hermes_cli/webhook.py +259 -0
  147. hermes_agent-0.10.0/hermes_constants.py +294 -0
  148. hermes_agent-0.10.0/hermes_logging.py +390 -0
  149. hermes_agent-0.10.0/hermes_state.py +1238 -0
  150. hermes_agent-0.10.0/hermes_time.py +104 -0
  151. hermes_agent-0.10.0/model_tools.py +562 -0
  152. hermes_agent-0.10.0/optional-skills/DESCRIPTION.md +24 -0
  153. hermes_agent-0.10.0/optional-skills/autonomous-ai-agents/DESCRIPTION.md +2 -0
  154. hermes_agent-0.10.0/optional-skills/autonomous-ai-agents/blackbox/SKILL.md +143 -0
  155. hermes_agent-0.10.0/optional-skills/autonomous-ai-agents/honcho/SKILL.md +428 -0
  156. hermes_agent-0.10.0/optional-skills/blockchain/base/SKILL.md +231 -0
  157. hermes_agent-0.10.0/optional-skills/blockchain/base/scripts/base_client.py +1008 -0
  158. hermes_agent-0.10.0/optional-skills/blockchain/solana/SKILL.md +207 -0
  159. hermes_agent-0.10.0/optional-skills/blockchain/solana/scripts/solana_client.py +698 -0
  160. hermes_agent-0.10.0/optional-skills/communication/DESCRIPTION.md +1 -0
  161. hermes_agent-0.10.0/optional-skills/communication/one-three-one-rule/SKILL.md +103 -0
  162. hermes_agent-0.10.0/optional-skills/creative/blender-mcp/SKILL.md +116 -0
  163. hermes_agent-0.10.0/optional-skills/creative/concept-diagrams/SKILL.md +361 -0
  164. hermes_agent-0.10.0/optional-skills/creative/concept-diagrams/examples/apartment-floor-plan-conversion.md +244 -0
  165. hermes_agent-0.10.0/optional-skills/creative/concept-diagrams/examples/automated-password-reset-flow.md +276 -0
  166. hermes_agent-0.10.0/optional-skills/creative/concept-diagrams/examples/autonomous-llm-research-agent-flow.md +240 -0
  167. hermes_agent-0.10.0/optional-skills/creative/concept-diagrams/examples/banana-journey-tree-to-smoothie.md +161 -0
  168. hermes_agent-0.10.0/optional-skills/creative/concept-diagrams/examples/commercial-aircraft-structure.md +209 -0
  169. hermes_agent-0.10.0/optional-skills/creative/concept-diagrams/examples/cpu-ooo-microarchitecture.md +236 -0
  170. hermes_agent-0.10.0/optional-skills/creative/concept-diagrams/examples/electricity-grid-flow.md +182 -0
  171. hermes_agent-0.10.0/optional-skills/creative/concept-diagrams/examples/feature-film-production-pipeline.md +172 -0
  172. hermes_agent-0.10.0/optional-skills/creative/concept-diagrams/examples/hospital-emergency-department-flow.md +165 -0
  173. hermes_agent-0.10.0/optional-skills/creative/concept-diagrams/examples/ml-benchmark-grouped-bar-chart.md +114 -0
  174. hermes_agent-0.10.0/optional-skills/creative/concept-diagrams/examples/place-order-uml-sequence.md +325 -0
  175. hermes_agent-0.10.0/optional-skills/creative/concept-diagrams/examples/smart-city-infrastructure.md +173 -0
  176. hermes_agent-0.10.0/optional-skills/creative/concept-diagrams/examples/smartphone-layer-anatomy.md +154 -0
  177. hermes_agent-0.10.0/optional-skills/creative/concept-diagrams/examples/sn2-reaction-mechanism.md +247 -0
  178. hermes_agent-0.10.0/optional-skills/creative/concept-diagrams/examples/wind-turbine-structure.md +338 -0
  179. hermes_agent-0.10.0/optional-skills/creative/concept-diagrams/references/dashboard-patterns.md +43 -0
  180. hermes_agent-0.10.0/optional-skills/creative/concept-diagrams/references/infrastructure-patterns.md +144 -0
  181. hermes_agent-0.10.0/optional-skills/creative/concept-diagrams/references/physical-shape-cookbook.md +42 -0
  182. hermes_agent-0.10.0/optional-skills/creative/concept-diagrams/templates/template.html +174 -0
  183. hermes_agent-0.10.0/optional-skills/creative/meme-generation/EXAMPLES.md +46 -0
  184. hermes_agent-0.10.0/optional-skills/creative/meme-generation/SKILL.md +129 -0
  185. hermes_agent-0.10.0/optional-skills/creative/meme-generation/scripts/.gitignore +1 -0
  186. hermes_agent-0.10.0/optional-skills/creative/meme-generation/scripts/generate_meme.py +471 -0
  187. hermes_agent-0.10.0/optional-skills/creative/meme-generation/scripts/templates.json +97 -0
  188. hermes_agent-0.10.0/optional-skills/devops/cli/SKILL.md +155 -0
  189. hermes_agent-0.10.0/optional-skills/devops/cli/references/app-discovery.md +112 -0
  190. hermes_agent-0.10.0/optional-skills/devops/cli/references/authentication.md +59 -0
  191. hermes_agent-0.10.0/optional-skills/devops/cli/references/cli-reference.md +104 -0
  192. hermes_agent-0.10.0/optional-skills/devops/cli/references/running-apps.md +171 -0
  193. hermes_agent-0.10.0/optional-skills/devops/docker-management/SKILL.md +280 -0
  194. hermes_agent-0.10.0/optional-skills/email/agentmail/SKILL.md +125 -0
  195. hermes_agent-0.10.0/optional-skills/health/DESCRIPTION.md +1 -0
  196. hermes_agent-0.10.0/optional-skills/health/fitness-nutrition/SKILL.md +255 -0
  197. hermes_agent-0.10.0/optional-skills/health/fitness-nutrition/references/FORMULAS.md +100 -0
  198. hermes_agent-0.10.0/optional-skills/health/fitness-nutrition/scripts/body_calc.py +210 -0
  199. hermes_agent-0.10.0/optional-skills/health/fitness-nutrition/scripts/nutrition_search.py +86 -0
  200. hermes_agent-0.10.0/optional-skills/health/neuroskill-bci/SKILL.md +458 -0
  201. hermes_agent-0.10.0/optional-skills/health/neuroskill-bci/references/api.md +286 -0
  202. hermes_agent-0.10.0/optional-skills/health/neuroskill-bci/references/metrics.md +220 -0
  203. hermes_agent-0.10.0/optional-skills/health/neuroskill-bci/references/protocols.md +452 -0
  204. hermes_agent-0.10.0/optional-skills/mcp/DESCRIPTION.md +3 -0
  205. hermes_agent-0.10.0/optional-skills/mcp/fastmcp/SKILL.md +299 -0
  206. hermes_agent-0.10.0/optional-skills/mcp/fastmcp/references/fastmcp-cli.md +110 -0
  207. hermes_agent-0.10.0/optional-skills/mcp/fastmcp/scripts/scaffold_fastmcp.py +56 -0
  208. hermes_agent-0.10.0/optional-skills/mcp/fastmcp/templates/api_wrapper.py +54 -0
  209. hermes_agent-0.10.0/optional-skills/mcp/fastmcp/templates/database_server.py +77 -0
  210. hermes_agent-0.10.0/optional-skills/mcp/fastmcp/templates/file_processor.py +55 -0
  211. hermes_agent-0.10.0/optional-skills/migration/DESCRIPTION.md +2 -0
  212. hermes_agent-0.10.0/optional-skills/migration/openclaw-migration/SKILL.md +297 -0
  213. hermes_agent-0.10.0/optional-skills/migration/openclaw-migration/scripts/openclaw_to_hermes.py +2794 -0
  214. hermes_agent-0.10.0/optional-skills/mlops/accelerate/SKILL.md +335 -0
  215. hermes_agent-0.10.0/optional-skills/mlops/accelerate/references/custom-plugins.md +453 -0
  216. hermes_agent-0.10.0/optional-skills/mlops/accelerate/references/megatron-integration.md +489 -0
  217. hermes_agent-0.10.0/optional-skills/mlops/accelerate/references/performance.md +525 -0
  218. hermes_agent-0.10.0/optional-skills/mlops/chroma/SKILL.md +409 -0
  219. hermes_agent-0.10.0/optional-skills/mlops/chroma/references/integration.md +38 -0
  220. hermes_agent-0.10.0/optional-skills/mlops/faiss/SKILL.md +224 -0
  221. hermes_agent-0.10.0/optional-skills/mlops/faiss/references/index_types.md +280 -0
  222. hermes_agent-0.10.0/optional-skills/mlops/flash-attention/SKILL.md +370 -0
  223. hermes_agent-0.10.0/optional-skills/mlops/flash-attention/references/benchmarks.md +215 -0
  224. hermes_agent-0.10.0/optional-skills/mlops/flash-attention/references/transformers-integration.md +293 -0
  225. hermes_agent-0.10.0/optional-skills/mlops/hermes-atropos-environments/SKILL.md +302 -0
  226. hermes_agent-0.10.0/optional-skills/mlops/hermes-atropos-environments/references/agentresult-fields.md +59 -0
  227. hermes_agent-0.10.0/optional-skills/mlops/hermes-atropos-environments/references/atropos-base-env.md +65 -0
  228. hermes_agent-0.10.0/optional-skills/mlops/hermes-atropos-environments/references/usage-patterns.md +199 -0
  229. hermes_agent-0.10.0/optional-skills/mlops/huggingface-tokenizers/SKILL.md +519 -0
  230. hermes_agent-0.10.0/optional-skills/mlops/huggingface-tokenizers/references/algorithms.md +653 -0
  231. hermes_agent-0.10.0/optional-skills/mlops/huggingface-tokenizers/references/integration.md +637 -0
  232. hermes_agent-0.10.0/optional-skills/mlops/huggingface-tokenizers/references/pipeline.md +723 -0
  233. hermes_agent-0.10.0/optional-skills/mlops/huggingface-tokenizers/references/training.md +565 -0
  234. hermes_agent-0.10.0/optional-skills/mlops/instructor/SKILL.md +743 -0
  235. hermes_agent-0.10.0/optional-skills/mlops/instructor/references/examples.md +107 -0
  236. hermes_agent-0.10.0/optional-skills/mlops/instructor/references/providers.md +70 -0
  237. hermes_agent-0.10.0/optional-skills/mlops/instructor/references/validation.md +606 -0
  238. hermes_agent-0.10.0/optional-skills/mlops/lambda-labs/SKILL.md +548 -0
  239. hermes_agent-0.10.0/optional-skills/mlops/lambda-labs/references/advanced-usage.md +611 -0
  240. hermes_agent-0.10.0/optional-skills/mlops/lambda-labs/references/troubleshooting.md +530 -0
  241. hermes_agent-0.10.0/optional-skills/mlops/llava/SKILL.md +307 -0
  242. hermes_agent-0.10.0/optional-skills/mlops/llava/references/training.md +197 -0
  243. hermes_agent-0.10.0/optional-skills/mlops/nemo-curator/SKILL.md +386 -0
  244. hermes_agent-0.10.0/optional-skills/mlops/nemo-curator/references/deduplication.md +87 -0
  245. hermes_agent-0.10.0/optional-skills/mlops/nemo-curator/references/filtering.md +102 -0
  246. hermes_agent-0.10.0/optional-skills/mlops/pinecone/SKILL.md +361 -0
  247. hermes_agent-0.10.0/optional-skills/mlops/pinecone/references/deployment.md +181 -0
  248. hermes_agent-0.10.0/optional-skills/mlops/pytorch-lightning/SKILL.md +349 -0
  249. hermes_agent-0.10.0/optional-skills/mlops/pytorch-lightning/references/callbacks.md +436 -0
  250. hermes_agent-0.10.0/optional-skills/mlops/pytorch-lightning/references/distributed.md +490 -0
  251. hermes_agent-0.10.0/optional-skills/mlops/pytorch-lightning/references/hyperparameter-tuning.md +556 -0
  252. hermes_agent-0.10.0/optional-skills/mlops/qdrant/SKILL.md +496 -0
  253. hermes_agent-0.10.0/optional-skills/mlops/qdrant/references/advanced-usage.md +648 -0
  254. hermes_agent-0.10.0/optional-skills/mlops/qdrant/references/troubleshooting.md +631 -0
  255. hermes_agent-0.10.0/optional-skills/mlops/saelens/SKILL.md +389 -0
  256. hermes_agent-0.10.0/optional-skills/mlops/saelens/references/README.md +70 -0
  257. hermes_agent-0.10.0/optional-skills/mlops/saelens/references/api.md +333 -0
  258. hermes_agent-0.10.0/optional-skills/mlops/saelens/references/tutorials.md +318 -0
  259. hermes_agent-0.10.0/optional-skills/mlops/simpo/SKILL.md +222 -0
  260. hermes_agent-0.10.0/optional-skills/mlops/simpo/references/datasets.md +478 -0
  261. hermes_agent-0.10.0/optional-skills/mlops/simpo/references/hyperparameters.md +452 -0
  262. hermes_agent-0.10.0/optional-skills/mlops/simpo/references/loss-functions.md +350 -0
  263. hermes_agent-0.10.0/optional-skills/mlops/slime/SKILL.md +467 -0
  264. hermes_agent-0.10.0/optional-skills/mlops/slime/references/api-reference.md +392 -0
  265. hermes_agent-0.10.0/optional-skills/mlops/slime/references/troubleshooting.md +386 -0
  266. hermes_agent-0.10.0/optional-skills/mlops/tensorrt-llm/SKILL.md +190 -0
  267. hermes_agent-0.10.0/optional-skills/mlops/tensorrt-llm/references/multi-gpu.md +298 -0
  268. hermes_agent-0.10.0/optional-skills/mlops/tensorrt-llm/references/optimization.md +242 -0
  269. hermes_agent-0.10.0/optional-skills/mlops/tensorrt-llm/references/serving.md +470 -0
  270. hermes_agent-0.10.0/optional-skills/mlops/torchtitan/SKILL.md +361 -0
  271. hermes_agent-0.10.0/optional-skills/mlops/torchtitan/references/checkpoint.md +181 -0
  272. hermes_agent-0.10.0/optional-skills/mlops/torchtitan/references/custom-models.md +258 -0
  273. hermes_agent-0.10.0/optional-skills/mlops/torchtitan/references/float8.md +133 -0
  274. hermes_agent-0.10.0/optional-skills/mlops/torchtitan/references/fsdp.md +126 -0
  275. hermes_agent-0.10.0/optional-skills/productivity/canvas/SKILL.md +97 -0
  276. hermes_agent-0.10.0/optional-skills/productivity/canvas/scripts/canvas_api.py +157 -0
  277. hermes_agent-0.10.0/optional-skills/productivity/memento-flashcards/SKILL.md +324 -0
  278. hermes_agent-0.10.0/optional-skills/productivity/memento-flashcards/scripts/memento_cards.py +353 -0
  279. hermes_agent-0.10.0/optional-skills/productivity/memento-flashcards/scripts/youtube_quiz.py +88 -0
  280. hermes_agent-0.10.0/optional-skills/productivity/siyuan/SKILL.md +297 -0
  281. hermes_agent-0.10.0/optional-skills/productivity/telephony/SKILL.md +417 -0
  282. hermes_agent-0.10.0/optional-skills/productivity/telephony/scripts/telephony.py +1343 -0
  283. hermes_agent-0.10.0/optional-skills/research/bioinformatics/SKILL.md +235 -0
  284. hermes_agent-0.10.0/optional-skills/research/domain-intel/SKILL.md +96 -0
  285. hermes_agent-0.10.0/optional-skills/research/domain-intel/scripts/domain_intel.py +397 -0
  286. hermes_agent-0.10.0/optional-skills/research/drug-discovery/SKILL.md +226 -0
  287. hermes_agent-0.10.0/optional-skills/research/drug-discovery/references/ADMET_REFERENCE.md +66 -0
  288. hermes_agent-0.10.0/optional-skills/research/drug-discovery/scripts/chembl_target.py +53 -0
  289. hermes_agent-0.10.0/optional-skills/research/drug-discovery/scripts/ro5_screen.py +44 -0
  290. hermes_agent-0.10.0/optional-skills/research/duckduckgo-search/SKILL.md +237 -0
  291. hermes_agent-0.10.0/optional-skills/research/duckduckgo-search/scripts/duckduckgo.sh +28 -0
  292. hermes_agent-0.10.0/optional-skills/research/gitnexus-explorer/SKILL.md +213 -0
  293. hermes_agent-0.10.0/optional-skills/research/gitnexus-explorer/scripts/proxy.mjs +92 -0
  294. hermes_agent-0.10.0/optional-skills/research/parallel-cli/SKILL.md +390 -0
  295. hermes_agent-0.10.0/optional-skills/research/qmd/SKILL.md +441 -0
  296. hermes_agent-0.10.0/optional-skills/research/scrapling/SKILL.md +335 -0
  297. hermes_agent-0.10.0/optional-skills/security/1password/SKILL.md +162 -0
  298. hermes_agent-0.10.0/optional-skills/security/1password/references/cli-examples.md +31 -0
  299. hermes_agent-0.10.0/optional-skills/security/1password/references/get-started.md +21 -0
  300. hermes_agent-0.10.0/optional-skills/security/DESCRIPTION.md +3 -0
  301. hermes_agent-0.10.0/optional-skills/security/oss-forensics/SKILL.md +422 -0
  302. hermes_agent-0.10.0/optional-skills/security/oss-forensics/references/evidence-types.md +89 -0
  303. hermes_agent-0.10.0/optional-skills/security/oss-forensics/references/github-archive-guide.md +184 -0
  304. hermes_agent-0.10.0/optional-skills/security/oss-forensics/references/investigation-templates.md +131 -0
  305. hermes_agent-0.10.0/optional-skills/security/oss-forensics/references/recovery-techniques.md +164 -0
  306. hermes_agent-0.10.0/optional-skills/security/oss-forensics/scripts/evidence-store.py +313 -0
  307. hermes_agent-0.10.0/optional-skills/security/oss-forensics/templates/forensic-report.md +151 -0
  308. hermes_agent-0.10.0/optional-skills/security/oss-forensics/templates/malicious-package-report.md +43 -0
  309. hermes_agent-0.10.0/optional-skills/security/sherlock/SKILL.md +192 -0
  310. hermes_agent-0.10.0/plugins/__init__.py +1 -0
  311. hermes_agent-0.10.0/plugins/context_engine/__init__.py +219 -0
  312. hermes_agent-0.10.0/plugins/example-dashboard/dashboard/plugin_api.py +14 -0
  313. hermes_agent-0.10.0/plugins/memory/__init__.py +406 -0
  314. hermes_agent-0.10.0/plugins/memory/byterover/__init__.py +383 -0
  315. hermes_agent-0.10.0/plugins/memory/hindsight/__init__.py +883 -0
  316. hermes_agent-0.10.0/plugins/memory/holographic/__init__.py +407 -0
  317. hermes_agent-0.10.0/plugins/memory/holographic/holographic.py +203 -0
  318. hermes_agent-0.10.0/plugins/memory/holographic/retrieval.py +593 -0
  319. hermes_agent-0.10.0/plugins/memory/holographic/store.py +574 -0
  320. hermes_agent-0.10.0/plugins/memory/honcho/__init__.py +1054 -0
  321. hermes_agent-0.10.0/plugins/memory/honcho/cli.py +1398 -0
  322. hermes_agent-0.10.0/plugins/memory/honcho/client.py +676 -0
  323. hermes_agent-0.10.0/plugins/memory/honcho/session.py +1255 -0
  324. hermes_agent-0.10.0/plugins/memory/mem0/__init__.py +373 -0
  325. hermes_agent-0.10.0/plugins/memory/openviking/__init__.py +674 -0
  326. hermes_agent-0.10.0/plugins/memory/retaindb/__init__.py +766 -0
  327. hermes_agent-0.10.0/plugins/memory/supermemory/__init__.py +791 -0
  328. hermes_agent-0.10.0/pyproject.toml +140 -0
  329. hermes_agent-0.10.0/rl_cli.py +446 -0
  330. hermes_agent-0.10.0/run_agent.py +11603 -0
  331. hermes_agent-0.10.0/setup.cfg +4 -0
  332. hermes_agent-0.10.0/skills/apple/DESCRIPTION.md +3 -0
  333. hermes_agent-0.10.0/skills/apple/apple-notes/SKILL.md +90 -0
  334. hermes_agent-0.10.0/skills/apple/apple-reminders/SKILL.md +98 -0
  335. hermes_agent-0.10.0/skills/apple/findmy/SKILL.md +131 -0
  336. hermes_agent-0.10.0/skills/apple/imessage/SKILL.md +102 -0
  337. hermes_agent-0.10.0/skills/autonomous-ai-agents/DESCRIPTION.md +3 -0
  338. hermes_agent-0.10.0/skills/autonomous-ai-agents/claude-code/SKILL.md +744 -0
  339. hermes_agent-0.10.0/skills/autonomous-ai-agents/codex/SKILL.md +113 -0
  340. hermes_agent-0.10.0/skills/autonomous-ai-agents/hermes-agent/SKILL.md +706 -0
  341. hermes_agent-0.10.0/skills/autonomous-ai-agents/opencode/SKILL.md +218 -0
  342. hermes_agent-0.10.0/skills/creative/DESCRIPTION.md +3 -0
  343. hermes_agent-0.10.0/skills/creative/architecture-diagram/SKILL.md +147 -0
  344. hermes_agent-0.10.0/skills/creative/architecture-diagram/templates/template.html +319 -0
  345. hermes_agent-0.10.0/skills/creative/ascii-art/SKILL.md +321 -0
  346. hermes_agent-0.10.0/skills/creative/ascii-video/README.md +290 -0
  347. hermes_agent-0.10.0/skills/creative/ascii-video/SKILL.md +232 -0
  348. hermes_agent-0.10.0/skills/creative/ascii-video/references/architecture.md +802 -0
  349. hermes_agent-0.10.0/skills/creative/ascii-video/references/composition.md +892 -0
  350. hermes_agent-0.10.0/skills/creative/ascii-video/references/effects.md +1865 -0
  351. hermes_agent-0.10.0/skills/creative/ascii-video/references/inputs.md +685 -0
  352. hermes_agent-0.10.0/skills/creative/ascii-video/references/optimization.md +688 -0
  353. hermes_agent-0.10.0/skills/creative/ascii-video/references/scenes.md +1011 -0
  354. hermes_agent-0.10.0/skills/creative/ascii-video/references/shaders.md +1385 -0
  355. hermes_agent-0.10.0/skills/creative/ascii-video/references/troubleshooting.md +367 -0
  356. hermes_agent-0.10.0/skills/creative/creative-ideation/SKILL.md +147 -0
  357. hermes_agent-0.10.0/skills/creative/creative-ideation/references/full-prompt-library.md +110 -0
  358. hermes_agent-0.10.0/skills/creative/excalidraw/SKILL.md +194 -0
  359. hermes_agent-0.10.0/skills/creative/excalidraw/references/colors.md +44 -0
  360. hermes_agent-0.10.0/skills/creative/excalidraw/references/dark-mode.md +68 -0
  361. hermes_agent-0.10.0/skills/creative/excalidraw/references/examples.md +141 -0
  362. hermes_agent-0.10.0/skills/creative/excalidraw/scripts/upload.py +133 -0
  363. hermes_agent-0.10.0/skills/creative/manim-video/README.md +23 -0
  364. hermes_agent-0.10.0/skills/creative/manim-video/SKILL.md +264 -0
  365. hermes_agent-0.10.0/skills/creative/manim-video/references/animation-design-thinking.md +161 -0
  366. hermes_agent-0.10.0/skills/creative/manim-video/references/animations.md +282 -0
  367. hermes_agent-0.10.0/skills/creative/manim-video/references/camera-and-3d.md +135 -0
  368. hermes_agent-0.10.0/skills/creative/manim-video/references/decorations.md +202 -0
  369. hermes_agent-0.10.0/skills/creative/manim-video/references/equations.md +216 -0
  370. hermes_agent-0.10.0/skills/creative/manim-video/references/graphs-and-data.md +163 -0
  371. hermes_agent-0.10.0/skills/creative/manim-video/references/mobjects.md +333 -0
  372. hermes_agent-0.10.0/skills/creative/manim-video/references/paper-explainer.md +255 -0
  373. hermes_agent-0.10.0/skills/creative/manim-video/references/production-quality.md +190 -0
  374. hermes_agent-0.10.0/skills/creative/manim-video/references/rendering.md +185 -0
  375. hermes_agent-0.10.0/skills/creative/manim-video/references/scene-planning.md +118 -0
  376. hermes_agent-0.10.0/skills/creative/manim-video/references/troubleshooting.md +135 -0
  377. hermes_agent-0.10.0/skills/creative/manim-video/references/updaters-and-trackers.md +260 -0
  378. hermes_agent-0.10.0/skills/creative/manim-video/references/visual-design.md +124 -0
  379. hermes_agent-0.10.0/skills/creative/manim-video/scripts/setup.sh +14 -0
  380. hermes_agent-0.10.0/skills/creative/p5js/README.md +64 -0
  381. hermes_agent-0.10.0/skills/creative/p5js/SKILL.md +547 -0
  382. hermes_agent-0.10.0/skills/creative/p5js/references/animation.md +439 -0
  383. hermes_agent-0.10.0/skills/creative/p5js/references/color-systems.md +352 -0
  384. hermes_agent-0.10.0/skills/creative/p5js/references/core-api.md +410 -0
  385. hermes_agent-0.10.0/skills/creative/p5js/references/export-pipeline.md +566 -0
  386. hermes_agent-0.10.0/skills/creative/p5js/references/interaction.md +398 -0
  387. hermes_agent-0.10.0/skills/creative/p5js/references/shapes-and-geometry.md +300 -0
  388. hermes_agent-0.10.0/skills/creative/p5js/references/troubleshooting.md +532 -0
  389. hermes_agent-0.10.0/skills/creative/p5js/references/typography.md +302 -0
  390. hermes_agent-0.10.0/skills/creative/p5js/references/visual-effects.md +895 -0
  391. hermes_agent-0.10.0/skills/creative/p5js/references/webgl-and-3d.md +423 -0
  392. hermes_agent-0.10.0/skills/creative/p5js/scripts/export-frames.js +179 -0
  393. hermes_agent-0.10.0/skills/creative/p5js/scripts/render.sh +108 -0
  394. hermes_agent-0.10.0/skills/creative/p5js/scripts/serve.sh +28 -0
  395. hermes_agent-0.10.0/skills/creative/p5js/scripts/setup.sh +87 -0
  396. hermes_agent-0.10.0/skills/creative/p5js/templates/viewer.html +395 -0
  397. hermes_agent-0.10.0/skills/creative/popular-web-designs/SKILL.md +207 -0
  398. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/airbnb.md +259 -0
  399. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/airtable.md +102 -0
  400. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/apple.md +326 -0
  401. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/bmw.md +193 -0
  402. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/cal.md +272 -0
  403. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/claude.md +325 -0
  404. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/clay.md +317 -0
  405. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/clickhouse.md +294 -0
  406. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/cohere.md +279 -0
  407. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/coinbase.md +142 -0
  408. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/composio.md +320 -0
  409. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/cursor.md +322 -0
  410. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/elevenlabs.md +278 -0
  411. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/expo.md +294 -0
  412. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/figma.md +233 -0
  413. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/framer.md +259 -0
  414. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/hashicorp.md +291 -0
  415. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/ibm.md +345 -0
  416. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/intercom.md +159 -0
  417. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/kraken.md +138 -0
  418. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/linear.app.md +380 -0
  419. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/lovable.md +311 -0
  420. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/minimax.md +270 -0
  421. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/mintlify.md +339 -0
  422. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/miro.md +121 -0
  423. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/mistral.ai.md +274 -0
  424. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/mongodb.md +279 -0
  425. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/notion.md +322 -0
  426. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/nvidia.md +306 -0
  427. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/ollama.md +280 -0
  428. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/opencode.ai.md +294 -0
  429. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/pinterest.md +243 -0
  430. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/posthog.md +269 -0
  431. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/raycast.md +281 -0
  432. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/replicate.md +274 -0
  433. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/resend.md +316 -0
  434. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/revolut.md +198 -0
  435. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/runwayml.md +257 -0
  436. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/sanity.md +370 -0
  437. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/sentry.md +275 -0
  438. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/spacex.md +207 -0
  439. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/spotify.md +259 -0
  440. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/stripe.md +335 -0
  441. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/supabase.md +268 -0
  442. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/superhuman.md +265 -0
  443. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/together.ai.md +276 -0
  444. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/uber.md +308 -0
  445. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/vercel.md +323 -0
  446. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/voltagent.md +336 -0
  447. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/warp.md +266 -0
  448. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/webflow.md +105 -0
  449. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/wise.md +186 -0
  450. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/x.ai.md +270 -0
  451. hermes_agent-0.10.0/skills/creative/popular-web-designs/templates/zapier.md +341 -0
  452. hermes_agent-0.10.0/skills/creative/songwriting-and-ai-music/SKILL.md +289 -0
  453. hermes_agent-0.10.0/skills/data-science/DESCRIPTION.md +3 -0
  454. hermes_agent-0.10.0/skills/data-science/jupyter-live-kernel/SKILL.md +171 -0
  455. hermes_agent-0.10.0/skills/devops/webhook-subscriptions/SKILL.md +180 -0
  456. hermes_agent-0.10.0/skills/diagramming/DESCRIPTION.md +3 -0
  457. hermes_agent-0.10.0/skills/dogfood/SKILL.md +161 -0
  458. hermes_agent-0.10.0/skills/dogfood/references/issue-taxonomy.md +109 -0
  459. hermes_agent-0.10.0/skills/dogfood/templates/dogfood-report-template.md +86 -0
  460. hermes_agent-0.10.0/skills/domain/DESCRIPTION.md +24 -0
  461. hermes_agent-0.10.0/skills/email/DESCRIPTION.md +3 -0
  462. hermes_agent-0.10.0/skills/email/himalaya/SKILL.md +278 -0
  463. hermes_agent-0.10.0/skills/email/himalaya/references/configuration.md +184 -0
  464. hermes_agent-0.10.0/skills/email/himalaya/references/message-composition.md +199 -0
  465. hermes_agent-0.10.0/skills/feeds/DESCRIPTION.md +3 -0
  466. hermes_agent-0.10.0/skills/gaming/DESCRIPTION.md +3 -0
  467. hermes_agent-0.10.0/skills/gaming/minecraft-modpack-server/SKILL.md +186 -0
  468. hermes_agent-0.10.0/skills/gaming/pokemon-player/SKILL.md +215 -0
  469. hermes_agent-0.10.0/skills/gifs/DESCRIPTION.md +3 -0
  470. hermes_agent-0.10.0/skills/github/DESCRIPTION.md +3 -0
  471. hermes_agent-0.10.0/skills/github/codebase-inspection/SKILL.md +115 -0
  472. hermes_agent-0.10.0/skills/github/github-auth/SKILL.md +246 -0
  473. hermes_agent-0.10.0/skills/github/github-auth/scripts/gh-env.sh +66 -0
  474. hermes_agent-0.10.0/skills/github/github-code-review/SKILL.md +480 -0
  475. hermes_agent-0.10.0/skills/github/github-code-review/references/review-output-template.md +74 -0
  476. hermes_agent-0.10.0/skills/github/github-issues/SKILL.md +369 -0
  477. hermes_agent-0.10.0/skills/github/github-issues/templates/bug-report.md +35 -0
  478. hermes_agent-0.10.0/skills/github/github-issues/templates/feature-request.md +31 -0
  479. hermes_agent-0.10.0/skills/github/github-pr-workflow/SKILL.md +366 -0
  480. hermes_agent-0.10.0/skills/github/github-pr-workflow/references/ci-troubleshooting.md +183 -0
  481. hermes_agent-0.10.0/skills/github/github-pr-workflow/references/conventional-commits.md +71 -0
  482. hermes_agent-0.10.0/skills/github/github-pr-workflow/templates/pr-body-bugfix.md +35 -0
  483. hermes_agent-0.10.0/skills/github/github-pr-workflow/templates/pr-body-feature.md +33 -0
  484. hermes_agent-0.10.0/skills/github/github-repo-management/SKILL.md +515 -0
  485. hermes_agent-0.10.0/skills/github/github-repo-management/references/github-api-cheatsheet.md +161 -0
  486. hermes_agent-0.10.0/skills/index-cache/anthropics_skills_skills_.json +1 -0
  487. hermes_agent-0.10.0/skills/index-cache/claude_marketplace_anthropics_skills.json +1 -0
  488. hermes_agent-0.10.0/skills/index-cache/lobehub_index.json +1 -0
  489. hermes_agent-0.10.0/skills/index-cache/openai_skills_skills_.json +1 -0
  490. hermes_agent-0.10.0/skills/inference-sh/DESCRIPTION.md +19 -0
  491. hermes_agent-0.10.0/skills/leisure/find-nearby/SKILL.md +69 -0
  492. hermes_agent-0.10.0/skills/leisure/find-nearby/scripts/find_nearby.py +184 -0
  493. hermes_agent-0.10.0/skills/mcp/DESCRIPTION.md +3 -0
  494. hermes_agent-0.10.0/skills/mcp/mcporter/SKILL.md +122 -0
  495. hermes_agent-0.10.0/skills/mcp/native-mcp/SKILL.md +356 -0
  496. hermes_agent-0.10.0/skills/media/DESCRIPTION.md +3 -0
  497. hermes_agent-0.10.0/skills/media/gif-search/SKILL.md +86 -0
  498. hermes_agent-0.10.0/skills/media/heartmula/SKILL.md +170 -0
  499. hermes_agent-0.10.0/skills/media/songsee/SKILL.md +82 -0
  500. hermes_agent-0.10.0/skills/media/youtube-content/SKILL.md +72 -0
  501. hermes_agent-0.10.0/skills/media/youtube-content/references/output-formats.md +56 -0
  502. hermes_agent-0.10.0/skills/media/youtube-content/scripts/fetch_transcript.py +124 -0
  503. hermes_agent-0.10.0/skills/mlops/DESCRIPTION.md +3 -0
  504. hermes_agent-0.10.0/skills/mlops/cloud/DESCRIPTION.md +3 -0
  505. hermes_agent-0.10.0/skills/mlops/cloud/modal/SKILL.md +344 -0
  506. hermes_agent-0.10.0/skills/mlops/cloud/modal/references/advanced-usage.md +503 -0
  507. hermes_agent-0.10.0/skills/mlops/cloud/modal/references/troubleshooting.md +494 -0
  508. hermes_agent-0.10.0/skills/mlops/evaluation/DESCRIPTION.md +3 -0
  509. hermes_agent-0.10.0/skills/mlops/evaluation/lm-evaluation-harness/SKILL.md +493 -0
  510. hermes_agent-0.10.0/skills/mlops/evaluation/lm-evaluation-harness/references/api-evaluation.md +490 -0
  511. hermes_agent-0.10.0/skills/mlops/evaluation/lm-evaluation-harness/references/benchmark-guide.md +488 -0
  512. hermes_agent-0.10.0/skills/mlops/evaluation/lm-evaluation-harness/references/custom-tasks.md +602 -0
  513. hermes_agent-0.10.0/skills/mlops/evaluation/lm-evaluation-harness/references/distributed-eval.md +519 -0
  514. hermes_agent-0.10.0/skills/mlops/evaluation/weights-and-biases/SKILL.md +593 -0
  515. hermes_agent-0.10.0/skills/mlops/evaluation/weights-and-biases/references/artifacts.md +584 -0
  516. hermes_agent-0.10.0/skills/mlops/evaluation/weights-and-biases/references/integrations.md +700 -0
  517. hermes_agent-0.10.0/skills/mlops/evaluation/weights-and-biases/references/sweeps.md +847 -0
  518. hermes_agent-0.10.0/skills/mlops/huggingface-hub/SKILL.md +80 -0
  519. hermes_agent-0.10.0/skills/mlops/inference/DESCRIPTION.md +3 -0
  520. hermes_agent-0.10.0/skills/mlops/inference/gguf/SKILL.md +430 -0
  521. hermes_agent-0.10.0/skills/mlops/inference/gguf/references/advanced-usage.md +504 -0
  522. hermes_agent-0.10.0/skills/mlops/inference/gguf/references/troubleshooting.md +442 -0
  523. hermes_agent-0.10.0/skills/mlops/inference/guidance/SKILL.md +575 -0
  524. hermes_agent-0.10.0/skills/mlops/inference/guidance/references/backends.md +554 -0
  525. hermes_agent-0.10.0/skills/mlops/inference/guidance/references/constraints.md +674 -0
  526. hermes_agent-0.10.0/skills/mlops/inference/guidance/references/examples.md +767 -0
  527. hermes_agent-0.10.0/skills/mlops/inference/llama-cpp/SKILL.md +261 -0
  528. hermes_agent-0.10.0/skills/mlops/inference/llama-cpp/references/optimization.md +89 -0
  529. hermes_agent-0.10.0/skills/mlops/inference/llama-cpp/references/quantization.md +213 -0
  530. hermes_agent-0.10.0/skills/mlops/inference/llama-cpp/references/server.md +125 -0
  531. hermes_agent-0.10.0/skills/mlops/inference/obliteratus/SKILL.md +330 -0
  532. hermes_agent-0.10.0/skills/mlops/inference/obliteratus/references/analysis-modules.md +166 -0
  533. hermes_agent-0.10.0/skills/mlops/inference/obliteratus/references/methods-guide.md +141 -0
  534. hermes_agent-0.10.0/skills/mlops/inference/obliteratus/templates/abliteration-config.yaml +33 -0
  535. hermes_agent-0.10.0/skills/mlops/inference/obliteratus/templates/analysis-study.yaml +40 -0
  536. hermes_agent-0.10.0/skills/mlops/inference/obliteratus/templates/batch-abliteration.yaml +41 -0
  537. hermes_agent-0.10.0/skills/mlops/inference/outlines/SKILL.md +655 -0
  538. hermes_agent-0.10.0/skills/mlops/inference/outlines/references/backends.md +615 -0
  539. hermes_agent-0.10.0/skills/mlops/inference/outlines/references/examples.md +773 -0
  540. hermes_agent-0.10.0/skills/mlops/inference/outlines/references/json_generation.md +652 -0
  541. hermes_agent-0.10.0/skills/mlops/inference/vllm/SKILL.md +367 -0
  542. hermes_agent-0.10.0/skills/mlops/inference/vllm/references/optimization.md +226 -0
  543. hermes_agent-0.10.0/skills/mlops/inference/vllm/references/quantization.md +284 -0
  544. hermes_agent-0.10.0/skills/mlops/inference/vllm/references/server-deployment.md +255 -0
  545. hermes_agent-0.10.0/skills/mlops/inference/vllm/references/troubleshooting.md +447 -0
  546. hermes_agent-0.10.0/skills/mlops/models/DESCRIPTION.md +3 -0
  547. hermes_agent-0.10.0/skills/mlops/models/audiocraft/SKILL.md +567 -0
  548. hermes_agent-0.10.0/skills/mlops/models/audiocraft/references/advanced-usage.md +666 -0
  549. hermes_agent-0.10.0/skills/mlops/models/audiocraft/references/troubleshooting.md +504 -0
  550. hermes_agent-0.10.0/skills/mlops/models/clip/SKILL.md +256 -0
  551. hermes_agent-0.10.0/skills/mlops/models/clip/references/applications.md +207 -0
  552. hermes_agent-0.10.0/skills/mlops/models/segment-anything/SKILL.md +503 -0
  553. hermes_agent-0.10.0/skills/mlops/models/segment-anything/references/advanced-usage.md +589 -0
  554. hermes_agent-0.10.0/skills/mlops/models/segment-anything/references/troubleshooting.md +484 -0
  555. hermes_agent-0.10.0/skills/mlops/models/stable-diffusion/SKILL.md +522 -0
  556. hermes_agent-0.10.0/skills/mlops/models/stable-diffusion/references/advanced-usage.md +716 -0
  557. hermes_agent-0.10.0/skills/mlops/models/stable-diffusion/references/troubleshooting.md +555 -0
  558. hermes_agent-0.10.0/skills/mlops/models/whisper/SKILL.md +320 -0
  559. hermes_agent-0.10.0/skills/mlops/models/whisper/references/languages.md +189 -0
  560. hermes_agent-0.10.0/skills/mlops/research/DESCRIPTION.md +3 -0
  561. hermes_agent-0.10.0/skills/mlops/research/dspy/SKILL.md +593 -0
  562. hermes_agent-0.10.0/skills/mlops/research/dspy/references/examples.md +663 -0
  563. hermes_agent-0.10.0/skills/mlops/research/dspy/references/modules.md +475 -0
  564. hermes_agent-0.10.0/skills/mlops/research/dspy/references/optimizers.md +566 -0
  565. hermes_agent-0.10.0/skills/mlops/training/DESCRIPTION.md +3 -0
  566. hermes_agent-0.10.0/skills/mlops/training/axolotl/SKILL.md +161 -0
  567. hermes_agent-0.10.0/skills/mlops/training/axolotl/references/api.md +5548 -0
  568. hermes_agent-0.10.0/skills/mlops/training/axolotl/references/dataset-formats.md +1029 -0
  569. hermes_agent-0.10.0/skills/mlops/training/axolotl/references/index.md +15 -0
  570. hermes_agent-0.10.0/skills/mlops/training/axolotl/references/other.md +3563 -0
  571. hermes_agent-0.10.0/skills/mlops/training/grpo-rl-training/README.md +97 -0
  572. hermes_agent-0.10.0/skills/mlops/training/grpo-rl-training/SKILL.md +575 -0
  573. hermes_agent-0.10.0/skills/mlops/training/grpo-rl-training/templates/basic_grpo_training.py +228 -0
  574. hermes_agent-0.10.0/skills/mlops/training/peft/SKILL.md +434 -0
  575. hermes_agent-0.10.0/skills/mlops/training/peft/references/advanced-usage.md +514 -0
  576. hermes_agent-0.10.0/skills/mlops/training/peft/references/troubleshooting.md +480 -0
  577. hermes_agent-0.10.0/skills/mlops/training/pytorch-fsdp/SKILL.md +129 -0
  578. hermes_agent-0.10.0/skills/mlops/training/pytorch-fsdp/references/index.md +7 -0
  579. hermes_agent-0.10.0/skills/mlops/training/pytorch-fsdp/references/other.md +4261 -0
  580. hermes_agent-0.10.0/skills/mlops/training/trl-fine-tuning/SKILL.md +458 -0
  581. hermes_agent-0.10.0/skills/mlops/training/trl-fine-tuning/references/dpo-variants.md +227 -0
  582. hermes_agent-0.10.0/skills/mlops/training/trl-fine-tuning/references/online-rl.md +82 -0
  583. hermes_agent-0.10.0/skills/mlops/training/trl-fine-tuning/references/reward-modeling.md +122 -0
  584. hermes_agent-0.10.0/skills/mlops/training/trl-fine-tuning/references/sft-training.md +168 -0
  585. hermes_agent-0.10.0/skills/mlops/training/unsloth/SKILL.md +83 -0
  586. hermes_agent-0.10.0/skills/mlops/training/unsloth/references/index.md +7 -0
  587. hermes_agent-0.10.0/skills/mlops/training/unsloth/references/llms-full.md +16799 -0
  588. hermes_agent-0.10.0/skills/mlops/training/unsloth/references/llms-txt.md +12044 -0
  589. hermes_agent-0.10.0/skills/mlops/training/unsloth/references/llms.md +82 -0
  590. hermes_agent-0.10.0/skills/mlops/vector-databases/DESCRIPTION.md +3 -0
  591. hermes_agent-0.10.0/skills/note-taking/DESCRIPTION.md +3 -0
  592. hermes_agent-0.10.0/skills/note-taking/obsidian/SKILL.md +66 -0
  593. hermes_agent-0.10.0/skills/productivity/DESCRIPTION.md +3 -0
  594. hermes_agent-0.10.0/skills/productivity/google-workspace/SKILL.md +279 -0
  595. hermes_agent-0.10.0/skills/productivity/google-workspace/references/gmail-search-syntax.md +63 -0
  596. hermes_agent-0.10.0/skills/productivity/google-workspace/scripts/google_api.py +855 -0
  597. hermes_agent-0.10.0/skills/productivity/google-workspace/scripts/gws_bridge.py +105 -0
  598. hermes_agent-0.10.0/skills/productivity/google-workspace/scripts/setup.py +409 -0
  599. hermes_agent-0.10.0/skills/productivity/linear/SKILL.md +297 -0
  600. hermes_agent-0.10.0/skills/productivity/nano-pdf/SKILL.md +51 -0
  601. hermes_agent-0.10.0/skills/productivity/notion/SKILL.md +171 -0
  602. hermes_agent-0.10.0/skills/productivity/notion/references/block-types.md +112 -0
  603. hermes_agent-0.10.0/skills/productivity/ocr-and-documents/DESCRIPTION.md +3 -0
  604. hermes_agent-0.10.0/skills/productivity/ocr-and-documents/SKILL.md +171 -0
  605. hermes_agent-0.10.0/skills/productivity/ocr-and-documents/scripts/extract_marker.py +87 -0
  606. hermes_agent-0.10.0/skills/productivity/ocr-and-documents/scripts/extract_pymupdf.py +98 -0
  607. hermes_agent-0.10.0/skills/productivity/powerpoint/LICENSE.txt +30 -0
  608. hermes_agent-0.10.0/skills/productivity/powerpoint/SKILL.md +232 -0
  609. hermes_agent-0.10.0/skills/productivity/powerpoint/editing.md +205 -0
  610. hermes_agent-0.10.0/skills/productivity/powerpoint/pptxgenjs.md +420 -0
  611. hermes_agent-0.10.0/skills/productivity/powerpoint/scripts/__init__.py +0 -0
  612. hermes_agent-0.10.0/skills/productivity/powerpoint/scripts/add_slide.py +195 -0
  613. hermes_agent-0.10.0/skills/productivity/powerpoint/scripts/clean.py +286 -0
  614. hermes_agent-0.10.0/skills/productivity/powerpoint/scripts/office/helpers/__init__.py +0 -0
  615. hermes_agent-0.10.0/skills/productivity/powerpoint/scripts/office/helpers/merge_runs.py +199 -0
  616. hermes_agent-0.10.0/skills/productivity/powerpoint/scripts/office/helpers/simplify_redlines.py +197 -0
  617. hermes_agent-0.10.0/skills/productivity/powerpoint/scripts/office/pack.py +159 -0
  618. hermes_agent-0.10.0/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
  619. hermes_agent-0.10.0/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
  620. hermes_agent-0.10.0/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
  621. hermes_agent-0.10.0/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
  622. hermes_agent-0.10.0/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
  623. hermes_agent-0.10.0/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
  624. hermes_agent-0.10.0/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
  625. hermes_agent-0.10.0/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
  626. hermes_agent-0.10.0/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
  627. hermes_agent-0.10.0/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
  628. hermes_agent-0.10.0/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
  629. hermes_agent-0.10.0/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
  630. hermes_agent-0.10.0/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
  631. hermes_agent-0.10.0/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
  632. hermes_agent-0.10.0/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
  633. hermes_agent-0.10.0/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
  634. hermes_agent-0.10.0/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
  635. hermes_agent-0.10.0/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
  636. hermes_agent-0.10.0/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
  637. hermes_agent-0.10.0/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
  638. hermes_agent-0.10.0/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
  639. hermes_agent-0.10.0/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
  640. hermes_agent-0.10.0/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
  641. hermes_agent-0.10.0/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
  642. hermes_agent-0.10.0/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
  643. hermes_agent-0.10.0/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
  644. hermes_agent-0.10.0/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
  645. hermes_agent-0.10.0/skills/productivity/powerpoint/scripts/office/schemas/ecma/fourth-edition/opc-contentTypes.xsd +42 -0
  646. hermes_agent-0.10.0/skills/productivity/powerpoint/scripts/office/schemas/ecma/fourth-edition/opc-coreProperties.xsd +50 -0
  647. hermes_agent-0.10.0/skills/productivity/powerpoint/scripts/office/schemas/ecma/fourth-edition/opc-digSig.xsd +49 -0
  648. hermes_agent-0.10.0/skills/productivity/powerpoint/scripts/office/schemas/ecma/fourth-edition/opc-relationships.xsd +33 -0
  649. hermes_agent-0.10.0/skills/productivity/powerpoint/scripts/office/schemas/mce/mc.xsd +75 -0
  650. hermes_agent-0.10.0/skills/productivity/powerpoint/scripts/office/schemas/microsoft/wml-2010.xsd +560 -0
  651. hermes_agent-0.10.0/skills/productivity/powerpoint/scripts/office/schemas/microsoft/wml-2012.xsd +67 -0
  652. hermes_agent-0.10.0/skills/productivity/powerpoint/scripts/office/schemas/microsoft/wml-2018.xsd +14 -0
  653. hermes_agent-0.10.0/skills/productivity/powerpoint/scripts/office/schemas/microsoft/wml-cex-2018.xsd +20 -0
  654. hermes_agent-0.10.0/skills/productivity/powerpoint/scripts/office/schemas/microsoft/wml-cid-2016.xsd +13 -0
  655. hermes_agent-0.10.0/skills/productivity/powerpoint/scripts/office/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
  656. hermes_agent-0.10.0/skills/productivity/powerpoint/scripts/office/schemas/microsoft/wml-symex-2015.xsd +8 -0
  657. hermes_agent-0.10.0/skills/red-teaming/godmode/SKILL.md +403 -0
  658. hermes_agent-0.10.0/skills/red-teaming/godmode/references/jailbreak-templates.md +128 -0
  659. hermes_agent-0.10.0/skills/red-teaming/godmode/references/refusal-detection.md +142 -0
  660. hermes_agent-0.10.0/skills/red-teaming/godmode/scripts/auto_jailbreak.py +769 -0
  661. hermes_agent-0.10.0/skills/red-teaming/godmode/scripts/godmode_race.py +530 -0
  662. hermes_agent-0.10.0/skills/red-teaming/godmode/scripts/load_godmode.py +45 -0
  663. hermes_agent-0.10.0/skills/red-teaming/godmode/scripts/parseltongue.py +550 -0
  664. hermes_agent-0.10.0/skills/red-teaming/godmode/templates/prefill-subtle.json +10 -0
  665. hermes_agent-0.10.0/skills/red-teaming/godmode/templates/prefill.json +18 -0
  666. hermes_agent-0.10.0/skills/research/DESCRIPTION.md +3 -0
  667. hermes_agent-0.10.0/skills/research/arxiv/SKILL.md +281 -0
  668. hermes_agent-0.10.0/skills/research/arxiv/scripts/search_arxiv.py +114 -0
  669. hermes_agent-0.10.0/skills/research/blogwatcher/SKILL.md +136 -0
  670. hermes_agent-0.10.0/skills/research/llm-wiki/SKILL.md +450 -0
  671. hermes_agent-0.10.0/skills/research/polymarket/SKILL.md +76 -0
  672. hermes_agent-0.10.0/skills/research/polymarket/references/api-endpoints.md +220 -0
  673. hermes_agent-0.10.0/skills/research/polymarket/scripts/polymarket.py +284 -0
  674. hermes_agent-0.10.0/skills/research/research-paper-writing/SKILL.md +2375 -0
  675. hermes_agent-0.10.0/skills/research/research-paper-writing/references/autoreason-methodology.md +394 -0
  676. hermes_agent-0.10.0/skills/research/research-paper-writing/references/checklists.md +434 -0
  677. hermes_agent-0.10.0/skills/research/research-paper-writing/references/citation-workflow.md +564 -0
  678. hermes_agent-0.10.0/skills/research/research-paper-writing/references/experiment-patterns.md +728 -0
  679. hermes_agent-0.10.0/skills/research/research-paper-writing/references/human-evaluation.md +476 -0
  680. hermes_agent-0.10.0/skills/research/research-paper-writing/references/paper-types.md +481 -0
  681. hermes_agent-0.10.0/skills/research/research-paper-writing/references/reviewer-guidelines.md +433 -0
  682. hermes_agent-0.10.0/skills/research/research-paper-writing/references/sources.md +191 -0
  683. hermes_agent-0.10.0/skills/research/research-paper-writing/references/writing-guide.md +474 -0
  684. hermes_agent-0.10.0/skills/research/research-paper-writing/templates/README.md +251 -0
  685. hermes_agent-0.10.0/skills/research/research-paper-writing/templates/aaai2026/README.md +534 -0
  686. hermes_agent-0.10.0/skills/research/research-paper-writing/templates/aaai2026/aaai2026-unified-supp.tex +144 -0
  687. hermes_agent-0.10.0/skills/research/research-paper-writing/templates/aaai2026/aaai2026-unified-template.tex +952 -0
  688. hermes_agent-0.10.0/skills/research/research-paper-writing/templates/aaai2026/aaai2026.bib +111 -0
  689. hermes_agent-0.10.0/skills/research/research-paper-writing/templates/aaai2026/aaai2026.bst +1493 -0
  690. hermes_agent-0.10.0/skills/research/research-paper-writing/templates/aaai2026/aaai2026.sty +315 -0
  691. hermes_agent-0.10.0/skills/research/research-paper-writing/templates/acl/README.md +50 -0
  692. hermes_agent-0.10.0/skills/research/research-paper-writing/templates/acl/acl.sty +312 -0
  693. hermes_agent-0.10.0/skills/research/research-paper-writing/templates/acl/acl_latex.tex +377 -0
  694. hermes_agent-0.10.0/skills/research/research-paper-writing/templates/acl/acl_lualatex.tex +101 -0
  695. hermes_agent-0.10.0/skills/research/research-paper-writing/templates/acl/acl_natbib.bst +1940 -0
  696. hermes_agent-0.10.0/skills/research/research-paper-writing/templates/acl/anthology.bib.txt +26 -0
  697. hermes_agent-0.10.0/skills/research/research-paper-writing/templates/acl/custom.bib +70 -0
  698. hermes_agent-0.10.0/skills/research/research-paper-writing/templates/acl/formatting.md +326 -0
  699. hermes_agent-0.10.0/skills/research/research-paper-writing/templates/colm2025/README.md +3 -0
  700. hermes_agent-0.10.0/skills/research/research-paper-writing/templates/colm2025/colm2025_conference.bib +11 -0
  701. hermes_agent-0.10.0/skills/research/research-paper-writing/templates/colm2025/colm2025_conference.bst +1440 -0
  702. hermes_agent-0.10.0/skills/research/research-paper-writing/templates/colm2025/colm2025_conference.pdf +0 -0
  703. hermes_agent-0.10.0/skills/research/research-paper-writing/templates/colm2025/colm2025_conference.sty +218 -0
  704. hermes_agent-0.10.0/skills/research/research-paper-writing/templates/colm2025/colm2025_conference.tex +305 -0
  705. hermes_agent-0.10.0/skills/research/research-paper-writing/templates/colm2025/fancyhdr.sty +485 -0
  706. hermes_agent-0.10.0/skills/research/research-paper-writing/templates/colm2025/math_commands.tex +508 -0
  707. hermes_agent-0.10.0/skills/research/research-paper-writing/templates/colm2025/natbib.sty +1246 -0
  708. hermes_agent-0.10.0/skills/research/research-paper-writing/templates/iclr2026/fancyhdr.sty +485 -0
  709. hermes_agent-0.10.0/skills/research/research-paper-writing/templates/iclr2026/iclr2026_conference.bib +24 -0
  710. hermes_agent-0.10.0/skills/research/research-paper-writing/templates/iclr2026/iclr2026_conference.bst +1440 -0
  711. hermes_agent-0.10.0/skills/research/research-paper-writing/templates/iclr2026/iclr2026_conference.pdf +0 -0
  712. hermes_agent-0.10.0/skills/research/research-paper-writing/templates/iclr2026/iclr2026_conference.sty +246 -0
  713. hermes_agent-0.10.0/skills/research/research-paper-writing/templates/iclr2026/iclr2026_conference.tex +414 -0
  714. hermes_agent-0.10.0/skills/research/research-paper-writing/templates/iclr2026/math_commands.tex +508 -0
  715. hermes_agent-0.10.0/skills/research/research-paper-writing/templates/iclr2026/natbib.sty +1246 -0
  716. hermes_agent-0.10.0/skills/research/research-paper-writing/templates/icml2026/algorithm.sty +79 -0
  717. hermes_agent-0.10.0/skills/research/research-paper-writing/templates/icml2026/algorithmic.sty +201 -0
  718. hermes_agent-0.10.0/skills/research/research-paper-writing/templates/icml2026/example_paper.bib +75 -0
  719. hermes_agent-0.10.0/skills/research/research-paper-writing/templates/icml2026/example_paper.pdf +0 -0
  720. hermes_agent-0.10.0/skills/research/research-paper-writing/templates/icml2026/example_paper.tex +662 -0
  721. hermes_agent-0.10.0/skills/research/research-paper-writing/templates/icml2026/fancyhdr.sty +864 -0
  722. hermes_agent-0.10.0/skills/research/research-paper-writing/templates/icml2026/icml2026.bst +1443 -0
  723. hermes_agent-0.10.0/skills/research/research-paper-writing/templates/icml2026/icml2026.sty +767 -0
  724. hermes_agent-0.10.0/skills/research/research-paper-writing/templates/icml2026/icml_numpapers.pdf +0 -0
  725. hermes_agent-0.10.0/skills/research/research-paper-writing/templates/neurips2025/Makefile +36 -0
  726. hermes_agent-0.10.0/skills/research/research-paper-writing/templates/neurips2025/extra_pkgs.tex +53 -0
  727. hermes_agent-0.10.0/skills/research/research-paper-writing/templates/neurips2025/main.tex +38 -0
  728. hermes_agent-0.10.0/skills/research/research-paper-writing/templates/neurips2025/neurips.sty +382 -0
  729. hermes_agent-0.10.0/skills/smart-home/DESCRIPTION.md +3 -0
  730. hermes_agent-0.10.0/skills/smart-home/openhue/SKILL.md +108 -0
  731. hermes_agent-0.10.0/skills/social-media/DESCRIPTION.md +3 -0
  732. hermes_agent-0.10.0/skills/social-media/xitter/SKILL.md +202 -0
  733. hermes_agent-0.10.0/skills/software-development/plan/SKILL.md +57 -0
  734. hermes_agent-0.10.0/skills/software-development/requesting-code-review/SKILL.md +282 -0
  735. hermes_agent-0.10.0/skills/software-development/subagent-driven-development/SKILL.md +342 -0
  736. hermes_agent-0.10.0/skills/software-development/systematic-debugging/SKILL.md +366 -0
  737. hermes_agent-0.10.0/skills/software-development/test-driven-development/SKILL.md +342 -0
  738. hermes_agent-0.10.0/skills/software-development/writing-plans/SKILL.md +296 -0
  739. hermes_agent-0.10.0/tests/test_batch_runner_checkpoint.py +159 -0
  740. hermes_agent-0.10.0/tests/test_cli_file_drop.py +176 -0
  741. hermes_agent-0.10.0/tests/test_cli_skin_integration.py +140 -0
  742. hermes_agent-0.10.0/tests/test_ctx_halving_fix.py +321 -0
  743. hermes_agent-0.10.0/tests/test_empty_model_fallback.py +120 -0
  744. hermes_agent-0.10.0/tests/test_evidence_store.py +186 -0
  745. hermes_agent-0.10.0/tests/test_hermes_constants.py +113 -0
  746. hermes_agent-0.10.0/tests/test_hermes_logging.py +737 -0
  747. hermes_agent-0.10.0/tests/test_hermes_state.py +1377 -0
  748. hermes_agent-0.10.0/tests/test_honcho_client_config.py +105 -0
  749. hermes_agent-0.10.0/tests/test_ipv4_preference.py +114 -0
  750. hermes_agent-0.10.0/tests/test_mcp_serve.py +1111 -0
  751. hermes_agent-0.10.0/tests/test_minisweagent_path.py +2 -0
  752. hermes_agent-0.10.0/tests/test_model_picker_scroll.py +118 -0
  753. hermes_agent-0.10.0/tests/test_model_tools.py +224 -0
  754. hermes_agent-0.10.0/tests/test_model_tools_async_bridge.py +307 -0
  755. hermes_agent-0.10.0/tests/test_ollama_num_ctx.py +135 -0
  756. hermes_agent-0.10.0/tests/test_packaging_metadata.py +22 -0
  757. hermes_agent-0.10.0/tests/test_plugin_skills.py +373 -0
  758. hermes_agent-0.10.0/tests/test_project_metadata.py +29 -0
  759. hermes_agent-0.10.0/tests/test_retry_utils.py +117 -0
  760. hermes_agent-0.10.0/tests/test_sql_injection.py +43 -0
  761. hermes_agent-0.10.0/tests/test_subprocess_home_isolation.py +198 -0
  762. hermes_agent-0.10.0/tests/test_timezone.py +383 -0
  763. hermes_agent-0.10.0/tests/test_toolset_distributions.py +103 -0
  764. hermes_agent-0.10.0/tests/test_toolsets.py +223 -0
  765. hermes_agent-0.10.0/tests/test_trajectory_compressor.py +436 -0
  766. hermes_agent-0.10.0/tests/test_trajectory_compressor_async.py +115 -0
  767. hermes_agent-0.10.0/tests/test_utils_truthy_values.py +29 -0
  768. hermes_agent-0.10.0/tools/__init__.py +25 -0
  769. hermes_agent-0.10.0/tools/ansi_strip.py +44 -0
  770. hermes_agent-0.10.0/tools/approval.py +957 -0
  771. hermes_agent-0.10.0/tools/binary_extensions.py +42 -0
  772. hermes_agent-0.10.0/tools/browser_camofox.py +600 -0
  773. hermes_agent-0.10.0/tools/browser_camofox_state.py +47 -0
  774. hermes_agent-0.10.0/tools/browser_providers/__init__.py +10 -0
  775. hermes_agent-0.10.0/tools/browser_providers/base.py +59 -0
  776. hermes_agent-0.10.0/tools/browser_providers/browser_use.py +215 -0
  777. hermes_agent-0.10.0/tools/browser_providers/browserbase.py +217 -0
  778. hermes_agent-0.10.0/tools/browser_providers/firecrawl.py +107 -0
  779. hermes_agent-0.10.0/tools/browser_tool.py +2418 -0
  780. hermes_agent-0.10.0/tools/budget_config.py +52 -0
  781. hermes_agent-0.10.0/tools/checkpoint_manager.py +654 -0
  782. hermes_agent-0.10.0/tools/clarify_tool.py +141 -0
  783. hermes_agent-0.10.0/tools/code_execution_tool.py +1416 -0
  784. hermes_agent-0.10.0/tools/credential_files.py +407 -0
  785. hermes_agent-0.10.0/tools/cronjob_tools.py +510 -0
  786. hermes_agent-0.10.0/tools/debug_helpers.py +105 -0
  787. hermes_agent-0.10.0/tools/delegate_tool.py +1143 -0
  788. hermes_agent-0.10.0/tools/env_passthrough.py +101 -0
  789. hermes_agent-0.10.0/tools/environments/__init__.py +13 -0
  790. hermes_agent-0.10.0/tools/environments/base.py +599 -0
  791. hermes_agent-0.10.0/tools/environments/daytona.py +259 -0
  792. hermes_agent-0.10.0/tools/environments/docker.py +578 -0
  793. hermes_agent-0.10.0/tools/environments/file_sync.py +393 -0
  794. hermes_agent-0.10.0/tools/environments/local.py +314 -0
  795. hermes_agent-0.10.0/tools/environments/managed_modal.py +282 -0
  796. hermes_agent-0.10.0/tools/environments/modal.py +460 -0
  797. hermes_agent-0.10.0/tools/environments/modal_utils.py +199 -0
  798. hermes_agent-0.10.0/tools/environments/singularity.py +262 -0
  799. hermes_agent-0.10.0/tools/environments/ssh.py +275 -0
  800. hermes_agent-0.10.0/tools/file_operations.py +1216 -0
  801. hermes_agent-0.10.0/tools/file_tools.py +799 -0
  802. hermes_agent-0.10.0/tools/fuzzy_match.py +566 -0
  803. hermes_agent-0.10.0/tools/homeassistant_tool.py +513 -0
  804. hermes_agent-0.10.0/tools/image_generation_tool.py +837 -0
  805. hermes_agent-0.10.0/tools/interrupt.py +76 -0
  806. hermes_agent-0.10.0/tools/managed_tool_gateway.py +167 -0
  807. hermes_agent-0.10.0/tools/mcp_oauth.py +526 -0
  808. hermes_agent-0.10.0/tools/mcp_oauth_manager.py +413 -0
  809. hermes_agent-0.10.0/tools/mcp_tool.py +2599 -0
  810. hermes_agent-0.10.0/tools/memory_tool.py +584 -0
  811. hermes_agent-0.10.0/tools/mixture_of_agents_tool.py +539 -0
  812. hermes_agent-0.10.0/tools/neutts_synth.py +104 -0
  813. hermes_agent-0.10.0/tools/openrouter_client.py +33 -0
  814. hermes_agent-0.10.0/tools/osv_check.py +155 -0
  815. hermes_agent-0.10.0/tools/patch_parser.py +580 -0
  816. hermes_agent-0.10.0/tools/path_security.py +43 -0
  817. hermes_agent-0.10.0/tools/process_registry.py +1184 -0
  818. hermes_agent-0.10.0/tools/registry.py +482 -0
  819. hermes_agent-0.10.0/tools/rl_training_tool.py +1396 -0
  820. hermes_agent-0.10.0/tools/send_message_tool.py +1304 -0
  821. hermes_agent-0.10.0/tools/session_search_tool.py +562 -0
  822. hermes_agent-0.10.0/tools/skill_manager_tool.py +789 -0
  823. hermes_agent-0.10.0/tools/skills_guard.py +928 -0
  824. hermes_agent-0.10.0/tools/skills_hub.py +3053 -0
  825. hermes_agent-0.10.0/tools/skills_sync.py +414 -0
  826. hermes_agent-0.10.0/tools/skills_tool.py +1420 -0
  827. hermes_agent-0.10.0/tools/terminal_tool.py +1756 -0
  828. hermes_agent-0.10.0/tools/tirith_security.py +684 -0
  829. hermes_agent-0.10.0/tools/todo_tool.py +277 -0
  830. hermes_agent-0.10.0/tools/tool_backend_helpers.py +121 -0
  831. hermes_agent-0.10.0/tools/tool_result_storage.py +226 -0
  832. hermes_agent-0.10.0/tools/transcription_tools.py +677 -0
  833. hermes_agent-0.10.0/tools/tts_tool.py +1334 -0
  834. hermes_agent-0.10.0/tools/url_safety.py +97 -0
  835. hermes_agent-0.10.0/tools/vision_tools.py +789 -0
  836. hermes_agent-0.10.0/tools/voice_mode.py +1017 -0
  837. hermes_agent-0.10.0/tools/web_tools.py +2101 -0
  838. hermes_agent-0.10.0/tools/website_policy.py +282 -0
  839. hermes_agent-0.10.0/tools/xai_http.py +12 -0
  840. hermes_agent-0.10.0/toolset_distributions.py +364 -0
  841. hermes_agent-0.10.0/toolsets.py +702 -0
  842. hermes_agent-0.10.0/trajectory_compressor.py +1462 -0
  843. hermes_agent-0.10.0/utils.py +196 -0
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Nous Research
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,4 @@
1
+ graft skills
2
+ graft optional-skills
3
+ global-exclude __pycache__
4
+ global-exclude *.py[cod]
@@ -0,0 +1,295 @@
1
+ Metadata-Version: 2.4
2
+ Name: hermes-agent
3
+ Version: 0.10.0
4
+ Summary: The self-improving AI agent — creates skills from experience, improves them during use, and runs anywhere
5
+ Author: Nous Research
6
+ License: MIT
7
+ Requires-Python: >=3.11
8
+ Description-Content-Type: text/markdown
9
+ License-File: LICENSE
10
+ Requires-Dist: openai<3,>=2.21.0
11
+ Requires-Dist: anthropic<1,>=0.39.0
12
+ Requires-Dist: python-dotenv<2,>=1.2.1
13
+ Requires-Dist: fire<1,>=0.7.1
14
+ Requires-Dist: httpx[socks]<1,>=0.28.1
15
+ Requires-Dist: rich<15,>=14.3.3
16
+ Requires-Dist: tenacity<10,>=9.1.4
17
+ Requires-Dist: pyyaml<7,>=6.0.2
18
+ Requires-Dist: requests<3,>=2.33.0
19
+ Requires-Dist: jinja2<4,>=3.1.5
20
+ Requires-Dist: pydantic<3,>=2.12.5
21
+ Requires-Dist: prompt_toolkit<4,>=3.0.52
22
+ Requires-Dist: exa-py<3,>=2.9.0
23
+ Requires-Dist: firecrawl-py<5,>=4.16.0
24
+ Requires-Dist: parallel-web<1,>=0.4.2
25
+ Requires-Dist: fal-client<1,>=0.13.1
26
+ Requires-Dist: edge-tts<8,>=7.2.7
27
+ Requires-Dist: PyJWT[crypto]<3,>=2.12.0
28
+ Provides-Extra: modal
29
+ Requires-Dist: modal<2,>=1.0.0; extra == "modal"
30
+ Provides-Extra: daytona
31
+ Requires-Dist: daytona<1,>=0.148.0; extra == "daytona"
32
+ Provides-Extra: dev
33
+ Requires-Dist: debugpy<2,>=1.8.0; extra == "dev"
34
+ Requires-Dist: pytest<10,>=9.0.2; extra == "dev"
35
+ Requires-Dist: pytest-asyncio<2,>=1.3.0; extra == "dev"
36
+ Requires-Dist: pytest-xdist<4,>=3.0; extra == "dev"
37
+ Requires-Dist: mcp<2,>=1.2.0; extra == "dev"
38
+ Provides-Extra: messaging
39
+ Requires-Dist: python-telegram-bot[webhooks]<23,>=22.6; extra == "messaging"
40
+ Requires-Dist: discord.py[voice]<3,>=2.7.1; extra == "messaging"
41
+ Requires-Dist: aiohttp<4,>=3.13.3; extra == "messaging"
42
+ Requires-Dist: slack-bolt<2,>=1.18.0; extra == "messaging"
43
+ Requires-Dist: slack-sdk<4,>=3.27.0; extra == "messaging"
44
+ Provides-Extra: cron
45
+ Requires-Dist: croniter<7,>=6.0.0; extra == "cron"
46
+ Provides-Extra: slack
47
+ Requires-Dist: slack-bolt<2,>=1.18.0; extra == "slack"
48
+ Requires-Dist: slack-sdk<4,>=3.27.0; extra == "slack"
49
+ Provides-Extra: matrix
50
+ Requires-Dist: mautrix[encryption]<1,>=0.20; extra == "matrix"
51
+ Requires-Dist: Markdown<4,>=3.6; extra == "matrix"
52
+ Requires-Dist: aiosqlite>=0.20; extra == "matrix"
53
+ Requires-Dist: asyncpg>=0.29; extra == "matrix"
54
+ Provides-Extra: cli
55
+ Requires-Dist: simple-term-menu<2,>=1.0; extra == "cli"
56
+ Provides-Extra: tts-premium
57
+ Requires-Dist: elevenlabs<2,>=1.0; extra == "tts-premium"
58
+ Provides-Extra: voice
59
+ Requires-Dist: faster-whisper<2,>=1.0.0; extra == "voice"
60
+ Requires-Dist: sounddevice<1,>=0.4.6; extra == "voice"
61
+ Requires-Dist: numpy<3,>=1.24.0; extra == "voice"
62
+ Provides-Extra: pty
63
+ Requires-Dist: ptyprocess<1,>=0.7.0; sys_platform != "win32" and extra == "pty"
64
+ Requires-Dist: pywinpty<3,>=2.0.0; sys_platform == "win32" and extra == "pty"
65
+ Provides-Extra: honcho
66
+ Requires-Dist: honcho-ai<3,>=2.0.1; extra == "honcho"
67
+ Provides-Extra: mcp
68
+ Requires-Dist: mcp<2,>=1.2.0; extra == "mcp"
69
+ Provides-Extra: homeassistant
70
+ Requires-Dist: aiohttp<4,>=3.9.0; extra == "homeassistant"
71
+ Provides-Extra: sms
72
+ Requires-Dist: aiohttp<4,>=3.9.0; extra == "sms"
73
+ Provides-Extra: acp
74
+ Requires-Dist: agent-client-protocol<1.0,>=0.9.0; extra == "acp"
75
+ Provides-Extra: mistral
76
+ Requires-Dist: mistralai<3,>=2.3.0; extra == "mistral"
77
+ Provides-Extra: bedrock
78
+ Requires-Dist: boto3<2,>=1.35.0; extra == "bedrock"
79
+ Provides-Extra: termux
80
+ Requires-Dist: python-telegram-bot[webhooks]<23,>=22.6; extra == "termux"
81
+ Requires-Dist: hermes-agent[cron]; extra == "termux"
82
+ Requires-Dist: hermes-agent[cli]; extra == "termux"
83
+ Requires-Dist: hermes-agent[pty]; extra == "termux"
84
+ Requires-Dist: hermes-agent[mcp]; extra == "termux"
85
+ Requires-Dist: hermes-agent[honcho]; extra == "termux"
86
+ Requires-Dist: hermes-agent[acp]; extra == "termux"
87
+ Provides-Extra: dingtalk
88
+ Requires-Dist: dingtalk-stream<1,>=0.1.0; extra == "dingtalk"
89
+ Provides-Extra: feishu
90
+ Requires-Dist: lark-oapi<2,>=1.5.3; extra == "feishu"
91
+ Provides-Extra: web
92
+ Requires-Dist: fastapi<1,>=0.104.0; extra == "web"
93
+ Requires-Dist: uvicorn[standard]<1,>=0.24.0; extra == "web"
94
+ Provides-Extra: all
95
+ Requires-Dist: hermes-agent[modal]; extra == "all"
96
+ Requires-Dist: hermes-agent[daytona]; extra == "all"
97
+ Requires-Dist: hermes-agent[messaging]; extra == "all"
98
+ Requires-Dist: hermes-agent[matrix]; sys_platform == "linux" and extra == "all"
99
+ Requires-Dist: hermes-agent[cron]; extra == "all"
100
+ Requires-Dist: hermes-agent[cli]; extra == "all"
101
+ Requires-Dist: hermes-agent[dev]; extra == "all"
102
+ Requires-Dist: hermes-agent[tts-premium]; extra == "all"
103
+ Requires-Dist: hermes-agent[slack]; extra == "all"
104
+ Requires-Dist: hermes-agent[pty]; extra == "all"
105
+ Requires-Dist: hermes-agent[honcho]; extra == "all"
106
+ Requires-Dist: hermes-agent[mcp]; extra == "all"
107
+ Requires-Dist: hermes-agent[homeassistant]; extra == "all"
108
+ Requires-Dist: hermes-agent[sms]; extra == "all"
109
+ Requires-Dist: hermes-agent[acp]; extra == "all"
110
+ Requires-Dist: hermes-agent[voice]; extra == "all"
111
+ Requires-Dist: hermes-agent[dingtalk]; extra == "all"
112
+ Requires-Dist: hermes-agent[feishu]; extra == "all"
113
+ Requires-Dist: hermes-agent[mistral]; extra == "all"
114
+ Requires-Dist: hermes-agent[bedrock]; extra == "all"
115
+ Requires-Dist: hermes-agent[web]; extra == "all"
116
+ Dynamic: license-file
117
+
118
+ <p align="center">
119
+ <img src="assets/banner.png" alt="Hermes Agent" width="100%">
120
+ </p>
121
+
122
+ # Hermes Agent ☤
123
+
124
+ <p align="center">
125
+ <a href="https://hermes-agent.nousresearch.com/docs/"><img src="https://img.shields.io/badge/Docs-hermes--agent.nousresearch.com-FFD700?style=for-the-badge" alt="Documentation"></a>
126
+ <a href="https://discord.gg/NousResearch"><img src="https://img.shields.io/badge/Discord-5865F2?style=for-the-badge&logo=discord&logoColor=white" alt="Discord"></a>
127
+ <a href="https://github.com/NousResearch/hermes-agent/blob/main/LICENSE"><img src="https://img.shields.io/badge/License-MIT-green?style=for-the-badge" alt="License: MIT"></a>
128
+ <a href="https://nousresearch.com"><img src="https://img.shields.io/badge/Built%20by-Nous%20Research-blueviolet?style=for-the-badge" alt="Built by Nous Research"></a>
129
+ </p>
130
+
131
+ **The self-improving AI agent built by [Nous Research](https://nousresearch.com).** It's the only agent with a built-in learning loop — it creates skills from experience, improves them during use, nudges itself to persist knowledge, searches its own past conversations, and builds a deepening model of who you are across sessions. Run it on a $5 VPS, a GPU cluster, or serverless infrastructure that costs nearly nothing when idle. It's not tied to your laptop — talk to it from Telegram while it works on a cloud VM.
132
+
133
+ Use any model you want — [Nous Portal](https://portal.nousresearch.com), [OpenRouter](https://openrouter.ai) (200+ models), [Xiaomi MiMo](https://platform.xiaomimimo.com), [z.ai/GLM](https://z.ai), [Kimi/Moonshot](https://platform.moonshot.ai), [MiniMax](https://www.minimax.io), [Hugging Face](https://huggingface.co), OpenAI, or your own endpoint. Switch with `hermes model` — no code changes, no lock-in.
134
+
135
+ <table>
136
+ <tr><td><b>A real terminal interface</b></td><td>Full TUI with multiline editing, slash-command autocomplete, conversation history, interrupt-and-redirect, and streaming tool output.</td></tr>
137
+ <tr><td><b>Lives where you do</b></td><td>Telegram, Discord, Slack, WhatsApp, Signal, and CLI — all from a single gateway process. Voice memo transcription, cross-platform conversation continuity.</td></tr>
138
+ <tr><td><b>A closed learning loop</b></td><td>Agent-curated memory with periodic nudges. Autonomous skill creation after complex tasks. Skills self-improve during use. FTS5 session search with LLM summarization for cross-session recall. <a href="https://github.com/plastic-labs/honcho">Honcho</a> dialectic user modeling. Compatible with the <a href="https://agentskills.io">agentskills.io</a> open standard.</td></tr>
139
+ <tr><td><b>Scheduled automations</b></td><td>Built-in cron scheduler with delivery to any platform. Daily reports, nightly backups, weekly audits — all in natural language, running unattended.</td></tr>
140
+ <tr><td><b>Delegates and parallelizes</b></td><td>Spawn isolated subagents for parallel workstreams. Write Python scripts that call tools via RPC, collapsing multi-step pipelines into zero-context-cost turns.</td></tr>
141
+ <tr><td><b>Runs anywhere, not just your laptop</b></td><td>Six terminal backends — local, Docker, SSH, Daytona, Singularity, and Modal. Daytona and Modal offer serverless persistence — your agent's environment hibernates when idle and wakes on demand, costing nearly nothing between sessions. Run it on a $5 VPS or a GPU cluster.</td></tr>
142
+ <tr><td><b>Research-ready</b></td><td>Batch trajectory generation, Atropos RL environments, trajectory compression for training the next generation of tool-calling models.</td></tr>
143
+ </table>
144
+
145
+ ---
146
+
147
+ ## Quick Install
148
+
149
+ ```bash
150
+ curl -fsSL https://raw.githubusercontent.com/NousResearch/hermes-agent/main/scripts/install.sh | bash
151
+ ```
152
+
153
+ Works on Linux, macOS, WSL2, and Android via Termux. The installer handles the platform-specific setup for you.
154
+
155
+ > **Android / Termux:** The tested manual path is documented in the [Termux guide](https://hermes-agent.nousresearch.com/docs/getting-started/termux). On Termux, Hermes installs a curated `.[termux]` extra because the full `.[all]` extra currently pulls Android-incompatible voice dependencies.
156
+ >
157
+ > **Windows:** Native Windows is not supported. Please install [WSL2](https://learn.microsoft.com/en-us/windows/wsl/install) and run the command above.
158
+
159
+ After installation:
160
+
161
+ ```bash
162
+ source ~/.bashrc # reload shell (or: source ~/.zshrc)
163
+ hermes # start chatting!
164
+ ```
165
+
166
+ ---
167
+
168
+ ## Getting Started
169
+
170
+ ```bash
171
+ hermes # Interactive CLI — start a conversation
172
+ hermes model # Choose your LLM provider and model
173
+ hermes tools # Configure which tools are enabled
174
+ hermes config set # Set individual config values
175
+ hermes gateway # Start the messaging gateway (Telegram, Discord, etc.)
176
+ hermes setup # Run the full setup wizard (configures everything at once)
177
+ hermes claw migrate # Migrate from OpenClaw (if coming from OpenClaw)
178
+ hermes update # Update to the latest version
179
+ hermes doctor # Diagnose any issues
180
+ ```
181
+
182
+ 📖 **[Full documentation →](https://hermes-agent.nousresearch.com/docs/)**
183
+
184
+ ## CLI vs Messaging Quick Reference
185
+
186
+ Hermes has two entry points: start the terminal UI with `hermes`, or run the gateway and talk to it from Telegram, Discord, Slack, WhatsApp, Signal, or Email. Once you're in a conversation, many slash commands are shared across both interfaces.
187
+
188
+ | Action | CLI | Messaging platforms |
189
+ |---------|-----|---------------------|
190
+ | Start chatting | `hermes` | Run `hermes gateway setup` + `hermes gateway start`, then send the bot a message |
191
+ | Start fresh conversation | `/new` or `/reset` | `/new` or `/reset` |
192
+ | Change model | `/model [provider:model]` | `/model [provider:model]` |
193
+ | Set a personality | `/personality [name]` | `/personality [name]` |
194
+ | Retry or undo the last turn | `/retry`, `/undo` | `/retry`, `/undo` |
195
+ | Compress context / check usage | `/compress`, `/usage`, `/insights [--days N]` | `/compress`, `/usage`, `/insights [days]` |
196
+ | Browse skills | `/skills` or `/<skill-name>` | `/skills` or `/<skill-name>` |
197
+ | Interrupt current work | `Ctrl+C` or send a new message | `/stop` or send a new message |
198
+ | Platform-specific status | `/platforms` | `/status`, `/sethome` |
199
+
200
+ For the full command lists, see the [CLI guide](https://hermes-agent.nousresearch.com/docs/user-guide/cli) and the [Messaging Gateway guide](https://hermes-agent.nousresearch.com/docs/user-guide/messaging).
201
+
202
+ ---
203
+
204
+ ## Documentation
205
+
206
+ All documentation lives at **[hermes-agent.nousresearch.com/docs](https://hermes-agent.nousresearch.com/docs/)**:
207
+
208
+ | Section | What's Covered |
209
+ |---------|---------------|
210
+ | [Quickstart](https://hermes-agent.nousresearch.com/docs/getting-started/quickstart) | Install → setup → first conversation in 2 minutes |
211
+ | [CLI Usage](https://hermes-agent.nousresearch.com/docs/user-guide/cli) | Commands, keybindings, personalities, sessions |
212
+ | [Configuration](https://hermes-agent.nousresearch.com/docs/user-guide/configuration) | Config file, providers, models, all options |
213
+ | [Messaging Gateway](https://hermes-agent.nousresearch.com/docs/user-guide/messaging) | Telegram, Discord, Slack, WhatsApp, Signal, Home Assistant |
214
+ | [Security](https://hermes-agent.nousresearch.com/docs/user-guide/security) | Command approval, DM pairing, container isolation |
215
+ | [Tools & Toolsets](https://hermes-agent.nousresearch.com/docs/user-guide/features/tools) | 40+ tools, toolset system, terminal backends |
216
+ | [Skills System](https://hermes-agent.nousresearch.com/docs/user-guide/features/skills) | Procedural memory, Skills Hub, creating skills |
217
+ | [Memory](https://hermes-agent.nousresearch.com/docs/user-guide/features/memory) | Persistent memory, user profiles, best practices |
218
+ | [MCP Integration](https://hermes-agent.nousresearch.com/docs/user-guide/features/mcp) | Connect any MCP server for extended capabilities |
219
+ | [Cron Scheduling](https://hermes-agent.nousresearch.com/docs/user-guide/features/cron) | Scheduled tasks with platform delivery |
220
+ | [Context Files](https://hermes-agent.nousresearch.com/docs/user-guide/features/context-files) | Project context that shapes every conversation |
221
+ | [Architecture](https://hermes-agent.nousresearch.com/docs/developer-guide/architecture) | Project structure, agent loop, key classes |
222
+ | [Contributing](https://hermes-agent.nousresearch.com/docs/developer-guide/contributing) | Development setup, PR process, code style |
223
+ | [CLI Reference](https://hermes-agent.nousresearch.com/docs/reference/cli-commands) | All commands and flags |
224
+ | [Environment Variables](https://hermes-agent.nousresearch.com/docs/reference/environment-variables) | Complete env var reference |
225
+
226
+ ---
227
+
228
+ ## Migrating from OpenClaw
229
+
230
+ If you're coming from OpenClaw, Hermes can automatically import your settings, memories, skills, and API keys.
231
+
232
+ **During first-time setup:** The setup wizard (`hermes setup`) automatically detects `~/.openclaw` and offers to migrate before configuration begins.
233
+
234
+ **Anytime after install:**
235
+
236
+ ```bash
237
+ hermes claw migrate # Interactive migration (full preset)
238
+ hermes claw migrate --dry-run # Preview what would be migrated
239
+ hermes claw migrate --preset user-data # Migrate without secrets
240
+ hermes claw migrate --overwrite # Overwrite existing conflicts
241
+ ```
242
+
243
+ What gets imported:
244
+ - **SOUL.md** — persona file
245
+ - **Memories** — MEMORY.md and USER.md entries
246
+ - **Skills** — user-created skills → `~/.hermes/skills/openclaw-imports/`
247
+ - **Command allowlist** — approval patterns
248
+ - **Messaging settings** — platform configs, allowed users, working directory
249
+ - **API keys** — allowlisted secrets (Telegram, OpenRouter, OpenAI, Anthropic, ElevenLabs)
250
+ - **TTS assets** — workspace audio files
251
+ - **Workspace instructions** — AGENTS.md (with `--workspace-target`)
252
+
253
+ See `hermes claw migrate --help` for all options, or use the `openclaw-migration` skill for an interactive agent-guided migration with dry-run previews.
254
+
255
+ ---
256
+
257
+ ## Contributing
258
+
259
+ We welcome contributions! See the [Contributing Guide](https://hermes-agent.nousresearch.com/docs/developer-guide/contributing) for development setup, code style, and PR process.
260
+
261
+ Quick start for contributors:
262
+
263
+ ```bash
264
+ git clone https://github.com/NousResearch/hermes-agent.git
265
+ cd hermes-agent
266
+ curl -LsSf https://astral.sh/uv/install.sh | sh
267
+ uv venv venv --python 3.11
268
+ source venv/bin/activate
269
+ uv pip install -e ".[all,dev]"
270
+ python -m pytest tests/ -q
271
+ ```
272
+
273
+ > **RL Training (optional):** To work on the RL/Tinker-Atropos integration:
274
+ > ```bash
275
+ > git submodule update --init tinker-atropos
276
+ > uv pip install -e "./tinker-atropos"
277
+ > ```
278
+
279
+ ---
280
+
281
+ ## Community
282
+
283
+ - 💬 [Discord](https://discord.gg/NousResearch)
284
+ - 📚 [Skills Hub](https://agentskills.io)
285
+ - 🐛 [Issues](https://github.com/NousResearch/hermes-agent/issues)
286
+ - 💡 [Discussions](https://github.com/NousResearch/hermes-agent/discussions)
287
+ - 🔌 [HermesClaw](https://github.com/AaronWong1999/hermesclaw) — Community WeChat bridge: Run Hermes Agent and OpenClaw on the same WeChat account.
288
+
289
+ ---
290
+
291
+ ## License
292
+
293
+ MIT — see [LICENSE](LICENSE).
294
+
295
+ Built by [Nous Research](https://nousresearch.com).
@@ -0,0 +1,178 @@
1
+ <p align="center">
2
+ <img src="assets/banner.png" alt="Hermes Agent" width="100%">
3
+ </p>
4
+
5
+ # Hermes Agent ☤
6
+
7
+ <p align="center">
8
+ <a href="https://hermes-agent.nousresearch.com/docs/"><img src="https://img.shields.io/badge/Docs-hermes--agent.nousresearch.com-FFD700?style=for-the-badge" alt="Documentation"></a>
9
+ <a href="https://discord.gg/NousResearch"><img src="https://img.shields.io/badge/Discord-5865F2?style=for-the-badge&logo=discord&logoColor=white" alt="Discord"></a>
10
+ <a href="https://github.com/NousResearch/hermes-agent/blob/main/LICENSE"><img src="https://img.shields.io/badge/License-MIT-green?style=for-the-badge" alt="License: MIT"></a>
11
+ <a href="https://nousresearch.com"><img src="https://img.shields.io/badge/Built%20by-Nous%20Research-blueviolet?style=for-the-badge" alt="Built by Nous Research"></a>
12
+ </p>
13
+
14
+ **The self-improving AI agent built by [Nous Research](https://nousresearch.com).** It's the only agent with a built-in learning loop — it creates skills from experience, improves them during use, nudges itself to persist knowledge, searches its own past conversations, and builds a deepening model of who you are across sessions. Run it on a $5 VPS, a GPU cluster, or serverless infrastructure that costs nearly nothing when idle. It's not tied to your laptop — talk to it from Telegram while it works on a cloud VM.
15
+
16
+ Use any model you want — [Nous Portal](https://portal.nousresearch.com), [OpenRouter](https://openrouter.ai) (200+ models), [Xiaomi MiMo](https://platform.xiaomimimo.com), [z.ai/GLM](https://z.ai), [Kimi/Moonshot](https://platform.moonshot.ai), [MiniMax](https://www.minimax.io), [Hugging Face](https://huggingface.co), OpenAI, or your own endpoint. Switch with `hermes model` — no code changes, no lock-in.
17
+
18
+ <table>
19
+ <tr><td><b>A real terminal interface</b></td><td>Full TUI with multiline editing, slash-command autocomplete, conversation history, interrupt-and-redirect, and streaming tool output.</td></tr>
20
+ <tr><td><b>Lives where you do</b></td><td>Telegram, Discord, Slack, WhatsApp, Signal, and CLI — all from a single gateway process. Voice memo transcription, cross-platform conversation continuity.</td></tr>
21
+ <tr><td><b>A closed learning loop</b></td><td>Agent-curated memory with periodic nudges. Autonomous skill creation after complex tasks. Skills self-improve during use. FTS5 session search with LLM summarization for cross-session recall. <a href="https://github.com/plastic-labs/honcho">Honcho</a> dialectic user modeling. Compatible with the <a href="https://agentskills.io">agentskills.io</a> open standard.</td></tr>
22
+ <tr><td><b>Scheduled automations</b></td><td>Built-in cron scheduler with delivery to any platform. Daily reports, nightly backups, weekly audits — all in natural language, running unattended.</td></tr>
23
+ <tr><td><b>Delegates and parallelizes</b></td><td>Spawn isolated subagents for parallel workstreams. Write Python scripts that call tools via RPC, collapsing multi-step pipelines into zero-context-cost turns.</td></tr>
24
+ <tr><td><b>Runs anywhere, not just your laptop</b></td><td>Six terminal backends — local, Docker, SSH, Daytona, Singularity, and Modal. Daytona and Modal offer serverless persistence — your agent's environment hibernates when idle and wakes on demand, costing nearly nothing between sessions. Run it on a $5 VPS or a GPU cluster.</td></tr>
25
+ <tr><td><b>Research-ready</b></td><td>Batch trajectory generation, Atropos RL environments, trajectory compression for training the next generation of tool-calling models.</td></tr>
26
+ </table>
27
+
28
+ ---
29
+
30
+ ## Quick Install
31
+
32
+ ```bash
33
+ curl -fsSL https://raw.githubusercontent.com/NousResearch/hermes-agent/main/scripts/install.sh | bash
34
+ ```
35
+
36
+ Works on Linux, macOS, WSL2, and Android via Termux. The installer handles the platform-specific setup for you.
37
+
38
+ > **Android / Termux:** The tested manual path is documented in the [Termux guide](https://hermes-agent.nousresearch.com/docs/getting-started/termux). On Termux, Hermes installs a curated `.[termux]` extra because the full `.[all]` extra currently pulls Android-incompatible voice dependencies.
39
+ >
40
+ > **Windows:** Native Windows is not supported. Please install [WSL2](https://learn.microsoft.com/en-us/windows/wsl/install) and run the command above.
41
+
42
+ After installation:
43
+
44
+ ```bash
45
+ source ~/.bashrc # reload shell (or: source ~/.zshrc)
46
+ hermes # start chatting!
47
+ ```
48
+
49
+ ---
50
+
51
+ ## Getting Started
52
+
53
+ ```bash
54
+ hermes # Interactive CLI — start a conversation
55
+ hermes model # Choose your LLM provider and model
56
+ hermes tools # Configure which tools are enabled
57
+ hermes config set # Set individual config values
58
+ hermes gateway # Start the messaging gateway (Telegram, Discord, etc.)
59
+ hermes setup # Run the full setup wizard (configures everything at once)
60
+ hermes claw migrate # Migrate from OpenClaw (if coming from OpenClaw)
61
+ hermes update # Update to the latest version
62
+ hermes doctor # Diagnose any issues
63
+ ```
64
+
65
+ 📖 **[Full documentation →](https://hermes-agent.nousresearch.com/docs/)**
66
+
67
+ ## CLI vs Messaging Quick Reference
68
+
69
+ Hermes has two entry points: start the terminal UI with `hermes`, or run the gateway and talk to it from Telegram, Discord, Slack, WhatsApp, Signal, or Email. Once you're in a conversation, many slash commands are shared across both interfaces.
70
+
71
+ | Action | CLI | Messaging platforms |
72
+ |---------|-----|---------------------|
73
+ | Start chatting | `hermes` | Run `hermes gateway setup` + `hermes gateway start`, then send the bot a message |
74
+ | Start fresh conversation | `/new` or `/reset` | `/new` or `/reset` |
75
+ | Change model | `/model [provider:model]` | `/model [provider:model]` |
76
+ | Set a personality | `/personality [name]` | `/personality [name]` |
77
+ | Retry or undo the last turn | `/retry`, `/undo` | `/retry`, `/undo` |
78
+ | Compress context / check usage | `/compress`, `/usage`, `/insights [--days N]` | `/compress`, `/usage`, `/insights [days]` |
79
+ | Browse skills | `/skills` or `/<skill-name>` | `/skills` or `/<skill-name>` |
80
+ | Interrupt current work | `Ctrl+C` or send a new message | `/stop` or send a new message |
81
+ | Platform-specific status | `/platforms` | `/status`, `/sethome` |
82
+
83
+ For the full command lists, see the [CLI guide](https://hermes-agent.nousresearch.com/docs/user-guide/cli) and the [Messaging Gateway guide](https://hermes-agent.nousresearch.com/docs/user-guide/messaging).
84
+
85
+ ---
86
+
87
+ ## Documentation
88
+
89
+ All documentation lives at **[hermes-agent.nousresearch.com/docs](https://hermes-agent.nousresearch.com/docs/)**:
90
+
91
+ | Section | What's Covered |
92
+ |---------|---------------|
93
+ | [Quickstart](https://hermes-agent.nousresearch.com/docs/getting-started/quickstart) | Install → setup → first conversation in 2 minutes |
94
+ | [CLI Usage](https://hermes-agent.nousresearch.com/docs/user-guide/cli) | Commands, keybindings, personalities, sessions |
95
+ | [Configuration](https://hermes-agent.nousresearch.com/docs/user-guide/configuration) | Config file, providers, models, all options |
96
+ | [Messaging Gateway](https://hermes-agent.nousresearch.com/docs/user-guide/messaging) | Telegram, Discord, Slack, WhatsApp, Signal, Home Assistant |
97
+ | [Security](https://hermes-agent.nousresearch.com/docs/user-guide/security) | Command approval, DM pairing, container isolation |
98
+ | [Tools & Toolsets](https://hermes-agent.nousresearch.com/docs/user-guide/features/tools) | 40+ tools, toolset system, terminal backends |
99
+ | [Skills System](https://hermes-agent.nousresearch.com/docs/user-guide/features/skills) | Procedural memory, Skills Hub, creating skills |
100
+ | [Memory](https://hermes-agent.nousresearch.com/docs/user-guide/features/memory) | Persistent memory, user profiles, best practices |
101
+ | [MCP Integration](https://hermes-agent.nousresearch.com/docs/user-guide/features/mcp) | Connect any MCP server for extended capabilities |
102
+ | [Cron Scheduling](https://hermes-agent.nousresearch.com/docs/user-guide/features/cron) | Scheduled tasks with platform delivery |
103
+ | [Context Files](https://hermes-agent.nousresearch.com/docs/user-guide/features/context-files) | Project context that shapes every conversation |
104
+ | [Architecture](https://hermes-agent.nousresearch.com/docs/developer-guide/architecture) | Project structure, agent loop, key classes |
105
+ | [Contributing](https://hermes-agent.nousresearch.com/docs/developer-guide/contributing) | Development setup, PR process, code style |
106
+ | [CLI Reference](https://hermes-agent.nousresearch.com/docs/reference/cli-commands) | All commands and flags |
107
+ | [Environment Variables](https://hermes-agent.nousresearch.com/docs/reference/environment-variables) | Complete env var reference |
108
+
109
+ ---
110
+
111
+ ## Migrating from OpenClaw
112
+
113
+ If you're coming from OpenClaw, Hermes can automatically import your settings, memories, skills, and API keys.
114
+
115
+ **During first-time setup:** The setup wizard (`hermes setup`) automatically detects `~/.openclaw` and offers to migrate before configuration begins.
116
+
117
+ **Anytime after install:**
118
+
119
+ ```bash
120
+ hermes claw migrate # Interactive migration (full preset)
121
+ hermes claw migrate --dry-run # Preview what would be migrated
122
+ hermes claw migrate --preset user-data # Migrate without secrets
123
+ hermes claw migrate --overwrite # Overwrite existing conflicts
124
+ ```
125
+
126
+ What gets imported:
127
+ - **SOUL.md** — persona file
128
+ - **Memories** — MEMORY.md and USER.md entries
129
+ - **Skills** — user-created skills → `~/.hermes/skills/openclaw-imports/`
130
+ - **Command allowlist** — approval patterns
131
+ - **Messaging settings** — platform configs, allowed users, working directory
132
+ - **API keys** — allowlisted secrets (Telegram, OpenRouter, OpenAI, Anthropic, ElevenLabs)
133
+ - **TTS assets** — workspace audio files
134
+ - **Workspace instructions** — AGENTS.md (with `--workspace-target`)
135
+
136
+ See `hermes claw migrate --help` for all options, or use the `openclaw-migration` skill for an interactive agent-guided migration with dry-run previews.
137
+
138
+ ---
139
+
140
+ ## Contributing
141
+
142
+ We welcome contributions! See the [Contributing Guide](https://hermes-agent.nousresearch.com/docs/developer-guide/contributing) for development setup, code style, and PR process.
143
+
144
+ Quick start for contributors:
145
+
146
+ ```bash
147
+ git clone https://github.com/NousResearch/hermes-agent.git
148
+ cd hermes-agent
149
+ curl -LsSf https://astral.sh/uv/install.sh | sh
150
+ uv venv venv --python 3.11
151
+ source venv/bin/activate
152
+ uv pip install -e ".[all,dev]"
153
+ python -m pytest tests/ -q
154
+ ```
155
+
156
+ > **RL Training (optional):** To work on the RL/Tinker-Atropos integration:
157
+ > ```bash
158
+ > git submodule update --init tinker-atropos
159
+ > uv pip install -e "./tinker-atropos"
160
+ > ```
161
+
162
+ ---
163
+
164
+ ## Community
165
+
166
+ - 💬 [Discord](https://discord.gg/NousResearch)
167
+ - 📚 [Skills Hub](https://agentskills.io)
168
+ - 🐛 [Issues](https://github.com/NousResearch/hermes-agent/issues)
169
+ - 💡 [Discussions](https://github.com/NousResearch/hermes-agent/discussions)
170
+ - 🔌 [HermesClaw](https://github.com/AaronWong1999/hermesclaw) — Community WeChat bridge: Run Hermes Agent and OpenClaw on the same WeChat account.
171
+
172
+ ---
173
+
174
+ ## License
175
+
176
+ MIT — see [LICENSE](LICENSE).
177
+
178
+ Built by [Nous Research](https://nousresearch.com).
@@ -0,0 +1 @@
1
+ """ACP (Agent Communication Protocol) adapter for hermes-agent."""
@@ -0,0 +1,5 @@
1
+ """Allow running the ACP adapter as ``python -m acp_adapter``."""
2
+
3
+ from .entry import main
4
+
5
+ main()
@@ -0,0 +1,24 @@
1
+ """ACP auth helpers — detect the currently configured Hermes provider."""
2
+
3
+ from __future__ import annotations
4
+
5
+ from typing import Optional
6
+
7
+
8
+ def detect_provider() -> Optional[str]:
9
+ """Resolve the active Hermes runtime provider, or None if unavailable."""
10
+ try:
11
+ from hermes_cli.runtime_provider import resolve_runtime_provider
12
+ runtime = resolve_runtime_provider()
13
+ api_key = runtime.get("api_key")
14
+ provider = runtime.get("provider")
15
+ if isinstance(api_key, str) and api_key.strip() and isinstance(provider, str) and provider.strip():
16
+ return provider.strip().lower()
17
+ except Exception:
18
+ return None
19
+ return None
20
+
21
+
22
+ def has_provider() -> bool:
23
+ """Return True if Hermes can resolve any runtime provider credentials."""
24
+ return detect_provider() is not None
@@ -0,0 +1,85 @@
1
+ """CLI entry point for the hermes-agent ACP adapter.
2
+
3
+ Loads environment variables from ``~/.hermes/.env``, configures logging
4
+ to write to stderr (so stdout is reserved for ACP JSON-RPC transport),
5
+ and starts the ACP agent server.
6
+
7
+ Usage::
8
+
9
+ python -m acp_adapter.entry
10
+ # or
11
+ hermes acp
12
+ # or
13
+ hermes-acp
14
+ """
15
+
16
+ import asyncio
17
+ import logging
18
+ import sys
19
+ from pathlib import Path
20
+ from hermes_constants import get_hermes_home
21
+
22
+
23
+ def _setup_logging() -> None:
24
+ """Route all logging to stderr so stdout stays clean for ACP stdio."""
25
+ handler = logging.StreamHandler(sys.stderr)
26
+ handler.setFormatter(
27
+ logging.Formatter(
28
+ "%(asctime)s [%(levelname)s] %(name)s: %(message)s",
29
+ datefmt="%Y-%m-%d %H:%M:%S",
30
+ )
31
+ )
32
+ root = logging.getLogger()
33
+ root.handlers.clear()
34
+ root.addHandler(handler)
35
+ root.setLevel(logging.INFO)
36
+
37
+ # Quiet down noisy libraries
38
+ logging.getLogger("httpx").setLevel(logging.WARNING)
39
+ logging.getLogger("httpcore").setLevel(logging.WARNING)
40
+ logging.getLogger("openai").setLevel(logging.WARNING)
41
+
42
+
43
+ def _load_env() -> None:
44
+ """Load .env from HERMES_HOME (default ``~/.hermes``)."""
45
+ from hermes_cli.env_loader import load_hermes_dotenv
46
+
47
+ hermes_home = get_hermes_home()
48
+ loaded = load_hermes_dotenv(hermes_home=hermes_home)
49
+ if loaded:
50
+ for env_file in loaded:
51
+ logging.getLogger(__name__).info("Loaded env from %s", env_file)
52
+ else:
53
+ logging.getLogger(__name__).info(
54
+ "No .env found at %s, using system env", hermes_home / ".env"
55
+ )
56
+
57
+
58
+ def main() -> None:
59
+ """Entry point: load env, configure logging, run the ACP agent."""
60
+ _setup_logging()
61
+ _load_env()
62
+
63
+ logger = logging.getLogger(__name__)
64
+ logger.info("Starting hermes-agent ACP adapter")
65
+
66
+ # Ensure the project root is on sys.path so ``from run_agent import AIAgent`` works
67
+ project_root = str(Path(__file__).resolve().parent.parent)
68
+ if project_root not in sys.path:
69
+ sys.path.insert(0, project_root)
70
+
71
+ import acp
72
+ from .server import HermesACPAgent
73
+
74
+ agent = HermesACPAgent()
75
+ try:
76
+ asyncio.run(acp.run_agent(agent, use_unstable_protocol=True))
77
+ except KeyboardInterrupt:
78
+ logger.info("Shutting down (KeyboardInterrupt)")
79
+ except Exception:
80
+ logger.exception("ACP agent crashed")
81
+ sys.exit(1)
82
+
83
+
84
+ if __name__ == "__main__":
85
+ main()