calvyn-code 0.14.0

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 (1718) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +217 -0
  3. package/README.zh-CN.md +180 -0
  4. package/acp_adapter/__init__.py +1 -0
  5. package/acp_adapter/__main__.py +5 -0
  6. package/acp_adapter/auth.py +68 -0
  7. package/acp_adapter/bootstrap/__init__.py +0 -0
  8. package/acp_adapter/bootstrap/bootstrap_browser_tools.ps1 +288 -0
  9. package/acp_adapter/bootstrap/bootstrap_browser_tools.sh +399 -0
  10. package/acp_adapter/entry.py +292 -0
  11. package/acp_adapter/events.py +265 -0
  12. package/acp_adapter/permissions.py +148 -0
  13. package/acp_adapter/server.py +1713 -0
  14. package/acp_adapter/session.py +629 -0
  15. package/acp_adapter/tools.py +1180 -0
  16. package/agent/__init__.py +6 -0
  17. package/agent/__pycache__/__init__.cpython-312.pyc +0 -0
  18. package/agent/__pycache__/account_usage.cpython-312.pyc +0 -0
  19. package/agent/__pycache__/anthropic_adapter.cpython-312.pyc +0 -0
  20. package/agent/__pycache__/async_utils.cpython-312.pyc +0 -0
  21. package/agent/__pycache__/auxiliary_client.cpython-312.pyc +0 -0
  22. package/agent/__pycache__/codex_responses_adapter.cpython-312.pyc +0 -0
  23. package/agent/__pycache__/context_compressor.cpython-312.pyc +0 -0
  24. package/agent/__pycache__/context_engine.cpython-312.pyc +0 -0
  25. package/agent/__pycache__/context_references.cpython-312.pyc +0 -0
  26. package/agent/__pycache__/credential_pool.cpython-312.pyc +0 -0
  27. package/agent/__pycache__/curator.cpython-312.pyc +0 -0
  28. package/agent/__pycache__/display.cpython-312.pyc +0 -0
  29. package/agent/__pycache__/error_classifier.cpython-312.pyc +0 -0
  30. package/agent/__pycache__/file_safety.cpython-312.pyc +0 -0
  31. package/agent/__pycache__/google_code_assist.cpython-312.pyc +0 -0
  32. package/agent/__pycache__/google_oauth.cpython-312.pyc +0 -0
  33. package/agent/__pycache__/i18n.cpython-312.pyc +0 -0
  34. package/agent/__pycache__/image_gen_provider.cpython-312.pyc +0 -0
  35. package/agent/__pycache__/image_gen_registry.cpython-312.pyc +0 -0
  36. package/agent/__pycache__/insights.cpython-312.pyc +0 -0
  37. package/agent/__pycache__/lmstudio_reasoning.cpython-312.pyc +0 -0
  38. package/agent/__pycache__/manual_compression_feedback.cpython-312.pyc +0 -0
  39. package/agent/__pycache__/markdown_tables.cpython-312.pyc +0 -0
  40. package/agent/__pycache__/memory_manager.cpython-312.pyc +0 -0
  41. package/agent/__pycache__/memory_provider.cpython-312.pyc +0 -0
  42. package/agent/__pycache__/model_metadata.cpython-312.pyc +0 -0
  43. package/agent/__pycache__/models_dev.cpython-312.pyc +0 -0
  44. package/agent/__pycache__/moonshot_schema.cpython-312.pyc +0 -0
  45. package/agent/__pycache__/onboarding.cpython-312.pyc +0 -0
  46. package/agent/__pycache__/portal_tags.cpython-312.pyc +0 -0
  47. package/agent/__pycache__/prompt_builder.cpython-312.pyc +0 -0
  48. package/agent/__pycache__/prompt_caching.cpython-312.pyc +0 -0
  49. package/agent/__pycache__/redact.cpython-312.pyc +0 -0
  50. package/agent/__pycache__/retry_utils.cpython-312.pyc +0 -0
  51. package/agent/__pycache__/shell_hooks.cpython-312.pyc +0 -0
  52. package/agent/__pycache__/skill_commands.cpython-312.pyc +0 -0
  53. package/agent/__pycache__/skill_preprocessing.cpython-312.pyc +0 -0
  54. package/agent/__pycache__/skill_utils.cpython-312.pyc +0 -0
  55. package/agent/__pycache__/subdirectory_hints.cpython-312.pyc +0 -0
  56. package/agent/__pycache__/think_scrubber.cpython-312.pyc +0 -0
  57. package/agent/__pycache__/title_generator.cpython-312.pyc +0 -0
  58. package/agent/__pycache__/tool_guardrails.cpython-312.pyc +0 -0
  59. package/agent/__pycache__/tool_result_classification.cpython-312.pyc +0 -0
  60. package/agent/__pycache__/trajectory.cpython-312.pyc +0 -0
  61. package/agent/__pycache__/usage_pricing.cpython-312.pyc +0 -0
  62. package/agent/__pycache__/video_gen_provider.cpython-312.pyc +0 -0
  63. package/agent/__pycache__/video_gen_registry.cpython-312.pyc +0 -0
  64. package/agent/__pycache__/web_search_provider.cpython-312.pyc +0 -0
  65. package/agent/__pycache__/web_search_registry.cpython-312.pyc +0 -0
  66. package/agent/account_usage.py +326 -0
  67. package/agent/anthropic_adapter.py +2087 -0
  68. package/agent/async_utils.py +68 -0
  69. package/agent/auxiliary_client.py +4893 -0
  70. package/agent/bedrock_adapter.py +1276 -0
  71. package/agent/codex_responses_adapter.py +1084 -0
  72. package/agent/context_compressor.py +1583 -0
  73. package/agent/context_engine.py +211 -0
  74. package/agent/context_references.py +519 -0
  75. package/agent/copilot_acp_client.py +684 -0
  76. package/agent/credential_pool.py +1780 -0
  77. package/agent/credential_sources.py +449 -0
  78. package/agent/curator.py +1782 -0
  79. package/agent/curator_backup.py +694 -0
  80. package/agent/display.py +987 -0
  81. package/agent/error_classifier.py +1058 -0
  82. package/agent/file_safety.py +112 -0
  83. package/agent/gemini_cloudcode_adapter.py +909 -0
  84. package/agent/gemini_native_adapter.py +971 -0
  85. package/agent/gemini_schema.py +99 -0
  86. package/agent/google_code_assist.py +452 -0
  87. package/agent/google_oauth.py +1062 -0
  88. package/agent/i18n.py +258 -0
  89. package/agent/image_gen_provider.py +243 -0
  90. package/agent/image_gen_registry.py +145 -0
  91. package/agent/image_routing.py +301 -0
  92. package/agent/insights.py +931 -0
  93. package/agent/lmstudio_reasoning.py +48 -0
  94. package/agent/lsp/__init__.py +106 -0
  95. package/agent/lsp/__pycache__/__init__.cpython-312.pyc +0 -0
  96. package/agent/lsp/__pycache__/cli.cpython-312.pyc +0 -0
  97. package/agent/lsp/__pycache__/client.cpython-312.pyc +0 -0
  98. package/agent/lsp/__pycache__/eventlog.cpython-312.pyc +0 -0
  99. package/agent/lsp/__pycache__/manager.cpython-312.pyc +0 -0
  100. package/agent/lsp/__pycache__/protocol.cpython-312.pyc +0 -0
  101. package/agent/lsp/__pycache__/servers.cpython-312.pyc +0 -0
  102. package/agent/lsp/__pycache__/workspace.cpython-312.pyc +0 -0
  103. package/agent/lsp/cli.py +308 -0
  104. package/agent/lsp/client.py +930 -0
  105. package/agent/lsp/eventlog.py +213 -0
  106. package/agent/lsp/install.py +376 -0
  107. package/agent/lsp/manager.py +644 -0
  108. package/agent/lsp/protocol.py +196 -0
  109. package/agent/lsp/range_shift.py +149 -0
  110. package/agent/lsp/reporter.py +78 -0
  111. package/agent/lsp/servers.py +1040 -0
  112. package/agent/lsp/workspace.py +223 -0
  113. package/agent/manual_compression_feedback.py +49 -0
  114. package/agent/markdown_tables.py +309 -0
  115. package/agent/memory_manager.py +556 -0
  116. package/agent/memory_provider.py +279 -0
  117. package/agent/model_metadata.py +1827 -0
  118. package/agent/models_dev.py +724 -0
  119. package/agent/moonshot_schema.py +231 -0
  120. package/agent/nous_rate_guard.py +326 -0
  121. package/agent/onboarding.py +193 -0
  122. package/agent/plugin_llm.py +1046 -0
  123. package/agent/portal_tags.py +64 -0
  124. package/agent/prompt_builder.py +1457 -0
  125. package/agent/prompt_caching.py +79 -0
  126. package/agent/rate_limit_tracker.py +246 -0
  127. package/agent/redact.py +403 -0
  128. package/agent/retry_utils.py +57 -0
  129. package/agent/shell_hooks.py +837 -0
  130. package/agent/skill_commands.py +502 -0
  131. package/agent/skill_preprocessing.py +131 -0
  132. package/agent/skill_utils.py +512 -0
  133. package/agent/subdirectory_hints.py +224 -0
  134. package/agent/think_scrubber.py +386 -0
  135. package/agent/title_generator.py +171 -0
  136. package/agent/tool_guardrails.py +458 -0
  137. package/agent/tool_result_classification.py +26 -0
  138. package/agent/trajectory.py +56 -0
  139. package/agent/transports/__init__.py +68 -0
  140. package/agent/transports/__pycache__/__init__.cpython-312.pyc +0 -0
  141. package/agent/transports/__pycache__/anthropic.cpython-312.pyc +0 -0
  142. package/agent/transports/__pycache__/base.cpython-312.pyc +0 -0
  143. package/agent/transports/__pycache__/bedrock.cpython-312.pyc +0 -0
  144. package/agent/transports/__pycache__/chat_completions.cpython-312.pyc +0 -0
  145. package/agent/transports/__pycache__/codex.cpython-312.pyc +0 -0
  146. package/agent/transports/__pycache__/types.cpython-312.pyc +0 -0
  147. package/agent/transports/anthropic.py +179 -0
  148. package/agent/transports/base.py +89 -0
  149. package/agent/transports/bedrock.py +154 -0
  150. package/agent/transports/chat_completions.py +614 -0
  151. package/agent/transports/codex.py +283 -0
  152. package/agent/transports/codex_app_server.py +368 -0
  153. package/agent/transports/codex_app_server_session.py +810 -0
  154. package/agent/transports/codex_event_projector.py +312 -0
  155. package/agent/transports/hermes_tools_mcp_server.py +233 -0
  156. package/agent/transports/types.py +162 -0
  157. package/agent/usage_pricing.py +877 -0
  158. package/agent/video_gen_provider.py +300 -0
  159. package/agent/video_gen_registry.py +117 -0
  160. package/agent/web_search_provider.py +221 -0
  161. package/agent/web_search_registry.py +262 -0
  162. package/assets/banner.png +0 -0
  163. package/batch_runner.py +1303 -0
  164. package/bin/calvyn.js +67 -0
  165. package/calvyn_bootstrap.py +130 -0
  166. package/calvyn_constants.py +346 -0
  167. package/calvyn_logging.py +390 -0
  168. package/calvyn_state.py +2967 -0
  169. package/calvyn_time.py +105 -0
  170. package/cli.py +14160 -0
  171. package/cron/__init__.py +42 -0
  172. package/cron/__pycache__/__init__.cpython-312.pyc +0 -0
  173. package/cron/__pycache__/jobs.cpython-312.pyc +0 -0
  174. package/cron/__pycache__/scheduler.cpython-312.pyc +0 -0
  175. package/cron/jobs.py +1160 -0
  176. package/cron/scheduler.py +1832 -0
  177. package/gateway/__init__.py +35 -0
  178. package/gateway/__pycache__/__init__.cpython-312.pyc +0 -0
  179. package/gateway/__pycache__/channel_directory.cpython-312.pyc +0 -0
  180. package/gateway/__pycache__/config.cpython-312.pyc +0 -0
  181. package/gateway/__pycache__/delivery.cpython-312.pyc +0 -0
  182. package/gateway/__pycache__/display_config.cpython-312.pyc +0 -0
  183. package/gateway/__pycache__/hooks.cpython-312.pyc +0 -0
  184. package/gateway/__pycache__/pairing.cpython-312.pyc +0 -0
  185. package/gateway/__pycache__/platform_registry.cpython-312.pyc +0 -0
  186. package/gateway/__pycache__/restart.cpython-312.pyc +0 -0
  187. package/gateway/__pycache__/run.cpython-312.pyc +0 -0
  188. package/gateway/__pycache__/runtime_footer.cpython-312.pyc +0 -0
  189. package/gateway/__pycache__/session.cpython-312.pyc +0 -0
  190. package/gateway/__pycache__/session_context.cpython-312.pyc +0 -0
  191. package/gateway/__pycache__/shutdown_forensics.cpython-312.pyc +0 -0
  192. package/gateway/__pycache__/slash_access.cpython-312.pyc +0 -0
  193. package/gateway/__pycache__/status.cpython-312.pyc +0 -0
  194. package/gateway/__pycache__/stream_consumer.cpython-312.pyc +0 -0
  195. package/gateway/__pycache__/whatsapp_identity.cpython-312.pyc +0 -0
  196. package/gateway/assets/telegram-botfather-threads-settings.jpg +0 -0
  197. package/gateway/builtin_hooks/__init__.py +1 -0
  198. package/gateway/channel_directory.py +357 -0
  199. package/gateway/config.py +1873 -0
  200. package/gateway/delivery.py +258 -0
  201. package/gateway/display_config.py +206 -0
  202. package/gateway/hooks.py +210 -0
  203. package/gateway/mirror.py +179 -0
  204. package/gateway/pairing.py +322 -0
  205. package/gateway/platform_registry.py +260 -0
  206. package/gateway/platforms/ADDING_A_PLATFORM.md +374 -0
  207. package/gateway/platforms/__init__.py +45 -0
  208. package/gateway/platforms/__pycache__/__init__.cpython-312.pyc +0 -0
  209. package/gateway/platforms/__pycache__/base.cpython-312.pyc +0 -0
  210. package/gateway/platforms/__pycache__/helpers.cpython-312.pyc +0 -0
  211. package/gateway/platforms/__pycache__/telegram.cpython-312.pyc +0 -0
  212. package/gateway/platforms/__pycache__/telegram_network.cpython-312.pyc +0 -0
  213. package/gateway/platforms/__pycache__/yuanbao.cpython-312.pyc +0 -0
  214. package/gateway/platforms/__pycache__/yuanbao_media.cpython-312.pyc +0 -0
  215. package/gateway/platforms/__pycache__/yuanbao_proto.cpython-312.pyc +0 -0
  216. package/gateway/platforms/_http_client_limits.py +84 -0
  217. package/gateway/platforms/api_server.py +3488 -0
  218. package/gateway/platforms/base.py +3747 -0
  219. package/gateway/platforms/bluebubbles.py +937 -0
  220. package/gateway/platforms/dingtalk.py +1473 -0
  221. package/gateway/platforms/discord.py +5584 -0
  222. package/gateway/platforms/email.py +773 -0
  223. package/gateway/platforms/feishu.py +5059 -0
  224. package/gateway/platforms/feishu_comment.py +1382 -0
  225. package/gateway/platforms/feishu_comment_rules.py +430 -0
  226. package/gateway/platforms/helpers.py +279 -0
  227. package/gateway/platforms/homeassistant.py +449 -0
  228. package/gateway/platforms/matrix.py +2777 -0
  229. package/gateway/platforms/mattermost.py +852 -0
  230. package/gateway/platforms/msgraph_webhook.py +397 -0
  231. package/gateway/platforms/qqbot/__init__.py +91 -0
  232. package/gateway/platforms/qqbot/adapter.py +3072 -0
  233. package/gateway/platforms/qqbot/chunked_upload.py +602 -0
  234. package/gateway/platforms/qqbot/constants.py +74 -0
  235. package/gateway/platforms/qqbot/crypto.py +45 -0
  236. package/gateway/platforms/qqbot/keyboards.py +473 -0
  237. package/gateway/platforms/qqbot/onboard.py +220 -0
  238. package/gateway/platforms/qqbot/utils.py +71 -0
  239. package/gateway/platforms/signal.py +1518 -0
  240. package/gateway/platforms/signal_rate_limit.py +369 -0
  241. package/gateway/platforms/slack.py +3028 -0
  242. package/gateway/platforms/sms.py +377 -0
  243. package/gateway/platforms/telegram.py +4836 -0
  244. package/gateway/platforms/telegram_network.py +249 -0
  245. package/gateway/platforms/webhook.py +806 -0
  246. package/gateway/platforms/wecom.py +1610 -0
  247. package/gateway/platforms/wecom_callback.py +403 -0
  248. package/gateway/platforms/wecom_crypto.py +142 -0
  249. package/gateway/platforms/weixin.py +2170 -0
  250. package/gateway/platforms/whatsapp.py +1283 -0
  251. package/gateway/platforms/yuanbao.py +4873 -0
  252. package/gateway/platforms/yuanbao_media.py +645 -0
  253. package/gateway/platforms/yuanbao_proto.py +1209 -0
  254. package/gateway/platforms/yuanbao_sticker.py +558 -0
  255. package/gateway/restart.py +20 -0
  256. package/gateway/run.py +17074 -0
  257. package/gateway/runtime_footer.py +150 -0
  258. package/gateway/session.py +1399 -0
  259. package/gateway/session_context.py +156 -0
  260. package/gateway/shutdown_forensics.py +462 -0
  261. package/gateway/slash_access.py +229 -0
  262. package/gateway/status.py +972 -0
  263. package/gateway/sticker_cache.py +111 -0
  264. package/gateway/stream_consumer.py +1286 -0
  265. package/gateway/whatsapp_identity.py +156 -0
  266. package/hermes_cli/__init__.py +47 -0
  267. package/hermes_cli/__pycache__/__init__.cpython-312.pyc +0 -0
  268. package/hermes_cli/__pycache__/_parser.cpython-312.pyc +0 -0
  269. package/hermes_cli/__pycache__/auth.cpython-312.pyc +0 -0
  270. package/hermes_cli/__pycache__/banner.cpython-312.pyc +0 -0
  271. package/hermes_cli/__pycache__/browser_connect.cpython-312.pyc +0 -0
  272. package/hermes_cli/__pycache__/callbacks.cpython-312.pyc +0 -0
  273. package/hermes_cli/__pycache__/checkpoints.cpython-312.pyc +0 -0
  274. package/hermes_cli/__pycache__/cli_output.cpython-312.pyc +0 -0
  275. package/hermes_cli/__pycache__/codex_models.cpython-312.pyc +0 -0
  276. package/hermes_cli/__pycache__/codex_runtime_switch.cpython-312.pyc +0 -0
  277. package/hermes_cli/__pycache__/colors.cpython-312.pyc +0 -0
  278. package/hermes_cli/__pycache__/commands.cpython-312.pyc +0 -0
  279. package/hermes_cli/__pycache__/config.cpython-312.pyc +0 -0
  280. package/hermes_cli/__pycache__/copilot_auth.cpython-312.pyc +0 -0
  281. package/hermes_cli/__pycache__/curator.cpython-312.pyc +0 -0
  282. package/hermes_cli/__pycache__/curses_ui.cpython-312.pyc +0 -0
  283. package/hermes_cli/__pycache__/debug.cpython-312.pyc +0 -0
  284. package/hermes_cli/__pycache__/default_soul.cpython-312.pyc +0 -0
  285. package/hermes_cli/__pycache__/env_loader.cpython-312.pyc +0 -0
  286. package/hermes_cli/__pycache__/fallback_cmd.cpython-312.pyc +0 -0
  287. package/hermes_cli/__pycache__/gateway.cpython-312.pyc +0 -0
  288. package/hermes_cli/__pycache__/gateway_windows.cpython-312.pyc +0 -0
  289. package/hermes_cli/__pycache__/goals.cpython-312.pyc +0 -0
  290. package/hermes_cli/__pycache__/inventory.cpython-312.pyc +0 -0
  291. package/hermes_cli/__pycache__/kanban.cpython-312.pyc +0 -0
  292. package/hermes_cli/__pycache__/kanban_db.cpython-312.pyc +0 -0
  293. package/hermes_cli/__pycache__/main.cpython-312.pyc +0 -0
  294. package/hermes_cli/__pycache__/model_catalog.cpython-312.pyc +0 -0
  295. package/hermes_cli/__pycache__/model_normalize.cpython-312.pyc +0 -0
  296. package/hermes_cli/__pycache__/model_switch.cpython-312.pyc +0 -0
  297. package/hermes_cli/__pycache__/models.cpython-312.pyc +0 -0
  298. package/hermes_cli/__pycache__/nous_subscription.cpython-312.pyc +0 -0
  299. package/hermes_cli/__pycache__/pairing.cpython-312.pyc +0 -0
  300. package/hermes_cli/__pycache__/platforms.cpython-312.pyc +0 -0
  301. package/hermes_cli/__pycache__/plugins.cpython-312.pyc +0 -0
  302. package/hermes_cli/__pycache__/profiles.cpython-312.pyc +0 -0
  303. package/hermes_cli/__pycache__/providers.cpython-312.pyc +0 -0
  304. package/hermes_cli/__pycache__/pt_input_extras.cpython-312.pyc +0 -0
  305. package/hermes_cli/__pycache__/runtime_provider.cpython-312.pyc +0 -0
  306. package/hermes_cli/__pycache__/security_advisories.cpython-312.pyc +0 -0
  307. package/hermes_cli/__pycache__/setup.cpython-312.pyc +0 -0
  308. package/hermes_cli/__pycache__/skills_hub.cpython-312.pyc +0 -0
  309. package/hermes_cli/__pycache__/skin_engine.cpython-312.pyc +0 -0
  310. package/hermes_cli/__pycache__/stdio.cpython-312.pyc +0 -0
  311. package/hermes_cli/__pycache__/timeouts.cpython-312.pyc +0 -0
  312. package/hermes_cli/__pycache__/tips.cpython-312.pyc +0 -0
  313. package/hermes_cli/__pycache__/tools_config.cpython-312.pyc +0 -0
  314. package/hermes_cli/__pycache__/voice.cpython-312.pyc +0 -0
  315. package/hermes_cli/_parser.py +365 -0
  316. package/hermes_cli/_subprocess_compat.py +175 -0
  317. package/hermes_cli/auth.py +6299 -0
  318. package/hermes_cli/auth_commands.py +749 -0
  319. package/hermes_cli/azure_detect.py +300 -0
  320. package/hermes_cli/backup.py +938 -0
  321. package/hermes_cli/banner.py +703 -0
  322. package/hermes_cli/browser_connect.py +139 -0
  323. package/hermes_cli/callbacks.py +243 -0
  324. package/hermes_cli/checkpoints.py +244 -0
  325. package/hermes_cli/claw.py +810 -0
  326. package/hermes_cli/cli_output.py +78 -0
  327. package/hermes_cli/clipboard.py +495 -0
  328. package/hermes_cli/codex_models.py +198 -0
  329. package/hermes_cli/codex_runtime_plugin_migration.py +757 -0
  330. package/hermes_cli/codex_runtime_switch.py +266 -0
  331. package/hermes_cli/colors.py +38 -0
  332. package/hermes_cli/commands.py +1728 -0
  333. package/hermes_cli/completion.py +315 -0
  334. package/hermes_cli/config.py +5382 -0
  335. package/hermes_cli/copilot_auth.py +392 -0
  336. package/hermes_cli/cron.py +313 -0
  337. package/hermes_cli/curator.py +598 -0
  338. package/hermes_cli/curses_ui.py +472 -0
  339. package/hermes_cli/debug.py +747 -0
  340. package/hermes_cli/default_soul.py +11 -0
  341. package/hermes_cli/dep_ensure.py +107 -0
  342. package/hermes_cli/dingtalk_auth.py +293 -0
  343. package/hermes_cli/doctor.py +1863 -0
  344. package/hermes_cli/dump.py +326 -0
  345. package/hermes_cli/env_loader.py +175 -0
  346. package/hermes_cli/fallback_cmd.py +361 -0
  347. package/hermes_cli/gateway.py +5422 -0
  348. package/hermes_cli/gateway_windows.py +692 -0
  349. package/hermes_cli/goals.py +757 -0
  350. package/hermes_cli/hooks.py +385 -0
  351. package/hermes_cli/inventory.py +240 -0
  352. package/hermes_cli/kanban.py +2252 -0
  353. package/hermes_cli/kanban_db.py +4840 -0
  354. package/hermes_cli/kanban_diagnostics.py +776 -0
  355. package/hermes_cli/kanban_specify.py +266 -0
  356. package/hermes_cli/logs.py +391 -0
  357. package/hermes_cli/main.py +12396 -0
  358. package/hermes_cli/mcp_config.py +781 -0
  359. package/hermes_cli/memory_setup.py +465 -0
  360. package/hermes_cli/model_catalog.py +330 -0
  361. package/hermes_cli/model_normalize.py +473 -0
  362. package/hermes_cli/model_switch.py +1777 -0
  363. package/hermes_cli/models.py +3789 -0
  364. package/hermes_cli/nous_subscription.py +799 -0
  365. package/hermes_cli/oneshot.py +351 -0
  366. package/hermes_cli/pairing.py +115 -0
  367. package/hermes_cli/platforms.py +83 -0
  368. package/hermes_cli/plugins.py +1562 -0
  369. package/hermes_cli/plugins_cmd.py +1587 -0
  370. package/hermes_cli/profile_distribution.py +703 -0
  371. package/hermes_cli/profiles.py +1319 -0
  372. package/hermes_cli/providers.py +720 -0
  373. package/hermes_cli/proxy/__init__.py +20 -0
  374. package/hermes_cli/proxy/adapters/__init__.py +35 -0
  375. package/hermes_cli/proxy/adapters/base.py +94 -0
  376. package/hermes_cli/proxy/adapters/nous_portal.py +137 -0
  377. package/hermes_cli/proxy/cli.py +141 -0
  378. package/hermes_cli/proxy/server.py +265 -0
  379. package/hermes_cli/pt_input_extras.py +83 -0
  380. package/hermes_cli/pty_bridge.py +237 -0
  381. package/hermes_cli/relaunch.py +205 -0
  382. package/hermes_cli/runtime_provider.py +1428 -0
  383. package/hermes_cli/security_advisories.py +452 -0
  384. package/hermes_cli/setup.py +3559 -0
  385. package/hermes_cli/skills_config.py +177 -0
  386. package/hermes_cli/skills_hub.py +1595 -0
  387. package/hermes_cli/skin_engine.py +929 -0
  388. package/hermes_cli/slack_cli.py +160 -0
  389. package/hermes_cli/status.py +550 -0
  390. package/hermes_cli/stdio.py +252 -0
  391. package/hermes_cli/timeouts.py +82 -0
  392. package/hermes_cli/tips.py +487 -0
  393. package/hermes_cli/tools_config.py +3151 -0
  394. package/hermes_cli/uninstall.py +681 -0
  395. package/hermes_cli/vercel_auth.py +70 -0
  396. package/hermes_cli/voice.py +846 -0
  397. package/hermes_cli/web_server.py +4438 -0
  398. package/hermes_cli/webhook.py +275 -0
  399. package/locales/af.yaml +350 -0
  400. package/locales/de.yaml +350 -0
  401. package/locales/en.yaml +365 -0
  402. package/locales/es.yaml +350 -0
  403. package/locales/fr.yaml +350 -0
  404. package/locales/ga.yaml +354 -0
  405. package/locales/hu.yaml +350 -0
  406. package/locales/it.yaml +350 -0
  407. package/locales/ja.yaml +350 -0
  408. package/locales/ko.yaml +350 -0
  409. package/locales/pt.yaml +350 -0
  410. package/locales/ru.yaml +350 -0
  411. package/locales/tr.yaml +350 -0
  412. package/locales/uk.yaml +350 -0
  413. package/locales/zh-hant.yaml +350 -0
  414. package/locales/zh.yaml +350 -0
  415. package/mcp_serve.py +898 -0
  416. package/model_tools.py +899 -0
  417. package/optional-skills/DESCRIPTION.md +24 -0
  418. package/optional-skills/autonomous-ai-agents/DESCRIPTION.md +2 -0
  419. package/optional-skills/autonomous-ai-agents/blackbox/SKILL.md +144 -0
  420. package/optional-skills/autonomous-ai-agents/honcho/SKILL.md +431 -0
  421. package/optional-skills/blockchain/evm/SKILL.md +211 -0
  422. package/optional-skills/blockchain/evm/scripts/evm_client.py +1508 -0
  423. package/optional-skills/blockchain/hyperliquid/SKILL.md +211 -0
  424. package/optional-skills/blockchain/hyperliquid/scripts/hyperliquid_client.py +1660 -0
  425. package/optional-skills/blockchain/solana/SKILL.md +208 -0
  426. package/optional-skills/blockchain/solana/scripts/solana_client.py +698 -0
  427. package/optional-skills/communication/DESCRIPTION.md +1 -0
  428. package/optional-skills/communication/one-three-one-rule/SKILL.md +104 -0
  429. package/optional-skills/creative/blender-mcp/SKILL.md +117 -0
  430. package/optional-skills/creative/concept-diagrams/SKILL.md +362 -0
  431. package/optional-skills/creative/concept-diagrams/examples/apartment-floor-plan-conversion.md +244 -0
  432. package/optional-skills/creative/concept-diagrams/examples/automated-password-reset-flow.md +276 -0
  433. package/optional-skills/creative/concept-diagrams/examples/autonomous-llm-research-agent-flow.md +240 -0
  434. package/optional-skills/creative/concept-diagrams/examples/banana-journey-tree-to-smoothie.md +161 -0
  435. package/optional-skills/creative/concept-diagrams/examples/commercial-aircraft-structure.md +209 -0
  436. package/optional-skills/creative/concept-diagrams/examples/cpu-ooo-microarchitecture.md +236 -0
  437. package/optional-skills/creative/concept-diagrams/examples/electricity-grid-flow.md +182 -0
  438. package/optional-skills/creative/concept-diagrams/examples/feature-film-production-pipeline.md +172 -0
  439. package/optional-skills/creative/concept-diagrams/examples/hospital-emergency-department-flow.md +165 -0
  440. package/optional-skills/creative/concept-diagrams/examples/ml-benchmark-grouped-bar-chart.md +114 -0
  441. package/optional-skills/creative/concept-diagrams/examples/place-order-uml-sequence.md +325 -0
  442. package/optional-skills/creative/concept-diagrams/examples/smart-city-infrastructure.md +173 -0
  443. package/optional-skills/creative/concept-diagrams/examples/smartphone-layer-anatomy.md +154 -0
  444. package/optional-skills/creative/concept-diagrams/examples/sn2-reaction-mechanism.md +247 -0
  445. package/optional-skills/creative/concept-diagrams/examples/wind-turbine-structure.md +338 -0
  446. package/optional-skills/creative/concept-diagrams/references/dashboard-patterns.md +43 -0
  447. package/optional-skills/creative/concept-diagrams/references/infrastructure-patterns.md +144 -0
  448. package/optional-skills/creative/concept-diagrams/references/physical-shape-cookbook.md +42 -0
  449. package/optional-skills/creative/concept-diagrams/templates/template.html +174 -0
  450. package/optional-skills/creative/hyperframes/SKILL.md +191 -0
  451. package/optional-skills/creative/hyperframes/references/cli.md +185 -0
  452. package/optional-skills/creative/hyperframes/references/composition.md +129 -0
  453. package/optional-skills/creative/hyperframes/references/features.md +289 -0
  454. package/optional-skills/creative/hyperframes/references/gsap.md +136 -0
  455. package/optional-skills/creative/hyperframes/references/troubleshooting.md +137 -0
  456. package/optional-skills/creative/hyperframes/references/website-to-video.md +145 -0
  457. package/optional-skills/creative/hyperframes/scripts/setup.sh +135 -0
  458. package/optional-skills/creative/kanban-video-orchestrator/SKILL.md +207 -0
  459. package/optional-skills/creative/kanban-video-orchestrator/assets/brief.md.tmpl +79 -0
  460. package/optional-skills/creative/kanban-video-orchestrator/assets/setup.sh.tmpl +185 -0
  461. package/optional-skills/creative/kanban-video-orchestrator/assets/soul.md.tmpl +38 -0
  462. package/optional-skills/creative/kanban-video-orchestrator/references/examples.md +227 -0
  463. package/optional-skills/creative/kanban-video-orchestrator/references/intake.md +166 -0
  464. package/optional-skills/creative/kanban-video-orchestrator/references/kanban-setup.md +276 -0
  465. package/optional-skills/creative/kanban-video-orchestrator/references/monitoring.md +180 -0
  466. package/optional-skills/creative/kanban-video-orchestrator/references/role-archetypes.md +298 -0
  467. package/optional-skills/creative/kanban-video-orchestrator/references/tool-matrix.md +317 -0
  468. package/optional-skills/creative/kanban-video-orchestrator/scripts/bootstrap_pipeline.py +501 -0
  469. package/optional-skills/creative/kanban-video-orchestrator/scripts/monitor.py +195 -0
  470. package/optional-skills/creative/meme-generation/EXAMPLES.md +46 -0
  471. package/optional-skills/creative/meme-generation/SKILL.md +130 -0
  472. package/optional-skills/creative/meme-generation/scripts/generate_meme.py +471 -0
  473. package/optional-skills/creative/meme-generation/scripts/templates.json +97 -0
  474. package/optional-skills/devops/cli/SKILL.md +156 -0
  475. package/optional-skills/devops/cli/references/app-discovery.md +112 -0
  476. package/optional-skills/devops/cli/references/authentication.md +59 -0
  477. package/optional-skills/devops/cli/references/cli-reference.md +104 -0
  478. package/optional-skills/devops/cli/references/running-apps.md +171 -0
  479. package/optional-skills/devops/docker-management/SKILL.md +281 -0
  480. package/optional-skills/devops/pinggy-tunnel/SKILL.md +309 -0
  481. package/optional-skills/devops/watchers/SKILL.md +112 -0
  482. package/optional-skills/devops/watchers/scripts/_watermark.py +148 -0
  483. package/optional-skills/devops/watchers/scripts/watch_github.py +168 -0
  484. package/optional-skills/devops/watchers/scripts/watch_http_json.py +131 -0
  485. package/optional-skills/devops/watchers/scripts/watch_rss.py +121 -0
  486. package/optional-skills/dogfood/DESCRIPTION.md +3 -0
  487. package/optional-skills/dogfood/adversarial-ux-test/SKILL.md +191 -0
  488. package/optional-skills/email/agentmail/SKILL.md +126 -0
  489. package/optional-skills/finance/3-statement-model/SKILL.md +433 -0
  490. package/optional-skills/finance/3-statement-model/references/formatting.md +118 -0
  491. package/optional-skills/finance/3-statement-model/references/formulas.md +292 -0
  492. package/optional-skills/finance/3-statement-model/references/sec-filings.md +125 -0
  493. package/optional-skills/finance/comps-analysis/SKILL.md +662 -0
  494. package/optional-skills/finance/dcf-model/SKILL.md +1270 -0
  495. package/optional-skills/finance/dcf-model/TROUBLESHOOTING.md +40 -0
  496. package/optional-skills/finance/dcf-model/requirements.txt +7 -0
  497. package/optional-skills/finance/dcf-model/scripts/validate_dcf.py +292 -0
  498. package/optional-skills/finance/excel-author/SKILL.md +244 -0
  499. package/optional-skills/finance/excel-author/scripts/recalc.py +88 -0
  500. package/optional-skills/finance/lbo-model/SKILL.md +291 -0
  501. package/optional-skills/finance/merger-model/SKILL.md +144 -0
  502. package/optional-skills/finance/pptx-author/SKILL.md +173 -0
  503. package/optional-skills/finance/stocks/SKILL.md +95 -0
  504. package/optional-skills/finance/stocks/scripts/stocks_client.py +755 -0
  505. package/optional-skills/health/DESCRIPTION.md +1 -0
  506. package/optional-skills/health/fitness-nutrition/SKILL.md +256 -0
  507. package/optional-skills/health/fitness-nutrition/references/FORMULAS.md +100 -0
  508. package/optional-skills/health/fitness-nutrition/scripts/body_calc.py +210 -0
  509. package/optional-skills/health/fitness-nutrition/scripts/nutrition_search.py +86 -0
  510. package/optional-skills/health/neuroskill-bci/SKILL.md +459 -0
  511. package/optional-skills/health/neuroskill-bci/references/api.md +286 -0
  512. package/optional-skills/health/neuroskill-bci/references/metrics.md +220 -0
  513. package/optional-skills/health/neuroskill-bci/references/protocols.md +452 -0
  514. package/optional-skills/mcp/DESCRIPTION.md +3 -0
  515. package/optional-skills/mcp/fastmcp/SKILL.md +300 -0
  516. package/optional-skills/mcp/fastmcp/references/fastmcp-cli.md +110 -0
  517. package/optional-skills/mcp/fastmcp/scripts/scaffold_fastmcp.py +56 -0
  518. package/optional-skills/mcp/fastmcp/templates/api_wrapper.py +54 -0
  519. package/optional-skills/mcp/fastmcp/templates/database_server.py +77 -0
  520. package/optional-skills/mcp/fastmcp/templates/file_processor.py +55 -0
  521. package/optional-skills/mcp/mcporter/SKILL.md +123 -0
  522. package/optional-skills/migration/DESCRIPTION.md +2 -0
  523. package/optional-skills/migration/openclaw-migration/SKILL.md +298 -0
  524. package/optional-skills/migration/openclaw-migration/scripts/openclaw_to_hermes.py +3136 -0
  525. package/optional-skills/mlops/accelerate/SKILL.md +336 -0
  526. package/optional-skills/mlops/accelerate/references/custom-plugins.md +453 -0
  527. package/optional-skills/mlops/accelerate/references/megatron-integration.md +489 -0
  528. package/optional-skills/mlops/accelerate/references/performance.md +525 -0
  529. package/optional-skills/mlops/chroma/SKILL.md +410 -0
  530. package/optional-skills/mlops/chroma/references/integration.md +38 -0
  531. package/optional-skills/mlops/clip/SKILL.md +257 -0
  532. package/optional-skills/mlops/clip/references/applications.md +207 -0
  533. package/optional-skills/mlops/faiss/SKILL.md +225 -0
  534. package/optional-skills/mlops/faiss/references/index_types.md +280 -0
  535. package/optional-skills/mlops/flash-attention/SKILL.md +367 -0
  536. package/optional-skills/mlops/flash-attention/references/benchmarks.md +215 -0
  537. package/optional-skills/mlops/flash-attention/references/transformers-integration.md +293 -0
  538. package/optional-skills/mlops/guidance/SKILL.md +576 -0
  539. package/optional-skills/mlops/guidance/references/backends.md +554 -0
  540. package/optional-skills/mlops/guidance/references/constraints.md +674 -0
  541. package/optional-skills/mlops/guidance/references/examples.md +767 -0
  542. package/optional-skills/mlops/huggingface-tokenizers/SKILL.md +520 -0
  543. package/optional-skills/mlops/huggingface-tokenizers/references/algorithms.md +653 -0
  544. package/optional-skills/mlops/huggingface-tokenizers/references/integration.md +637 -0
  545. package/optional-skills/mlops/huggingface-tokenizers/references/pipeline.md +723 -0
  546. package/optional-skills/mlops/huggingface-tokenizers/references/training.md +565 -0
  547. package/optional-skills/mlops/inference/outlines/SKILL.md +656 -0
  548. package/optional-skills/mlops/inference/outlines/references/backends.md +615 -0
  549. package/optional-skills/mlops/inference/outlines/references/examples.md +773 -0
  550. package/optional-skills/mlops/inference/outlines/references/json_generation.md +652 -0
  551. package/optional-skills/mlops/instructor/SKILL.md +744 -0
  552. package/optional-skills/mlops/instructor/references/examples.md +107 -0
  553. package/optional-skills/mlops/instructor/references/providers.md +70 -0
  554. package/optional-skills/mlops/instructor/references/validation.md +606 -0
  555. package/optional-skills/mlops/lambda-labs/SKILL.md +549 -0
  556. package/optional-skills/mlops/lambda-labs/references/advanced-usage.md +611 -0
  557. package/optional-skills/mlops/lambda-labs/references/troubleshooting.md +530 -0
  558. package/optional-skills/mlops/llava/SKILL.md +308 -0
  559. package/optional-skills/mlops/llava/references/training.md +197 -0
  560. package/optional-skills/mlops/modal/SKILL.md +345 -0
  561. package/optional-skills/mlops/modal/references/advanced-usage.md +503 -0
  562. package/optional-skills/mlops/modal/references/troubleshooting.md +494 -0
  563. package/optional-skills/mlops/nemo-curator/SKILL.md +387 -0
  564. package/optional-skills/mlops/nemo-curator/references/deduplication.md +87 -0
  565. package/optional-skills/mlops/nemo-curator/references/filtering.md +102 -0
  566. package/optional-skills/mlops/peft/SKILL.md +435 -0
  567. package/optional-skills/mlops/peft/references/advanced-usage.md +514 -0
  568. package/optional-skills/mlops/peft/references/troubleshooting.md +480 -0
  569. package/optional-skills/mlops/pinecone/SKILL.md +362 -0
  570. package/optional-skills/mlops/pinecone/references/deployment.md +181 -0
  571. package/optional-skills/mlops/pytorch-fsdp/SKILL.md +130 -0
  572. package/optional-skills/mlops/pytorch-fsdp/references/index.md +7 -0
  573. package/optional-skills/mlops/pytorch-fsdp/references/other.md +4261 -0
  574. package/optional-skills/mlops/pytorch-lightning/SKILL.md +350 -0
  575. package/optional-skills/mlops/pytorch-lightning/references/callbacks.md +436 -0
  576. package/optional-skills/mlops/pytorch-lightning/references/distributed.md +490 -0
  577. package/optional-skills/mlops/pytorch-lightning/references/hyperparameter-tuning.md +556 -0
  578. package/optional-skills/mlops/qdrant/SKILL.md +497 -0
  579. package/optional-skills/mlops/qdrant/references/advanced-usage.md +648 -0
  580. package/optional-skills/mlops/qdrant/references/troubleshooting.md +631 -0
  581. package/optional-skills/mlops/saelens/SKILL.md +390 -0
  582. package/optional-skills/mlops/saelens/references/README.md +69 -0
  583. package/optional-skills/mlops/saelens/references/api.md +333 -0
  584. package/optional-skills/mlops/saelens/references/tutorials.md +318 -0
  585. package/optional-skills/mlops/simpo/SKILL.md +223 -0
  586. package/optional-skills/mlops/simpo/references/datasets.md +478 -0
  587. package/optional-skills/mlops/simpo/references/hyperparameters.md +452 -0
  588. package/optional-skills/mlops/simpo/references/loss-functions.md +350 -0
  589. package/optional-skills/mlops/slime/SKILL.md +468 -0
  590. package/optional-skills/mlops/slime/references/api-reference.md +392 -0
  591. package/optional-skills/mlops/slime/references/troubleshooting.md +386 -0
  592. package/optional-skills/mlops/stable-diffusion/SKILL.md +523 -0
  593. package/optional-skills/mlops/stable-diffusion/references/advanced-usage.md +716 -0
  594. package/optional-skills/mlops/stable-diffusion/references/troubleshooting.md +555 -0
  595. package/optional-skills/mlops/tensorrt-llm/SKILL.md +191 -0
  596. package/optional-skills/mlops/tensorrt-llm/references/multi-gpu.md +298 -0
  597. package/optional-skills/mlops/tensorrt-llm/references/optimization.md +242 -0
  598. package/optional-skills/mlops/tensorrt-llm/references/serving.md +470 -0
  599. package/optional-skills/mlops/torchtitan/SKILL.md +362 -0
  600. package/optional-skills/mlops/torchtitan/references/checkpoint.md +181 -0
  601. package/optional-skills/mlops/torchtitan/references/custom-models.md +258 -0
  602. package/optional-skills/mlops/torchtitan/references/float8.md +133 -0
  603. package/optional-skills/mlops/torchtitan/references/fsdp.md +126 -0
  604. package/optional-skills/mlops/training/axolotl/SKILL.md +166 -0
  605. package/optional-skills/mlops/training/axolotl/references/api.md +5548 -0
  606. package/optional-skills/mlops/training/axolotl/references/dataset-formats.md +1029 -0
  607. package/optional-skills/mlops/training/axolotl/references/index.md +15 -0
  608. package/optional-skills/mlops/training/axolotl/references/other.md +3563 -0
  609. package/optional-skills/mlops/training/trl-fine-tuning/SKILL.md +463 -0
  610. package/optional-skills/mlops/training/trl-fine-tuning/references/dpo-variants.md +227 -0
  611. package/optional-skills/mlops/training/trl-fine-tuning/references/grpo-training.md +504 -0
  612. package/optional-skills/mlops/training/trl-fine-tuning/references/online-rl.md +82 -0
  613. package/optional-skills/mlops/training/trl-fine-tuning/references/reward-modeling.md +122 -0
  614. package/optional-skills/mlops/training/trl-fine-tuning/references/sft-training.md +168 -0
  615. package/optional-skills/mlops/training/trl-fine-tuning/templates/basic_grpo_training.py +228 -0
  616. package/optional-skills/mlops/training/unsloth/SKILL.md +84 -0
  617. package/optional-skills/mlops/training/unsloth/references/index.md +7 -0
  618. package/optional-skills/mlops/training/unsloth/references/llms-full.md +16799 -0
  619. package/optional-skills/mlops/training/unsloth/references/llms-txt.md +12044 -0
  620. package/optional-skills/mlops/training/unsloth/references/llms.md +82 -0
  621. package/optional-skills/mlops/whisper/SKILL.md +321 -0
  622. package/optional-skills/mlops/whisper/references/languages.md +189 -0
  623. package/optional-skills/productivity/canvas/SKILL.md +98 -0
  624. package/optional-skills/productivity/canvas/scripts/canvas_api.py +157 -0
  625. package/optional-skills/productivity/here-now/SKILL.md +217 -0
  626. package/optional-skills/productivity/here-now/scripts/drive.sh +406 -0
  627. package/optional-skills/productivity/here-now/scripts/publish.sh +445 -0
  628. package/optional-skills/productivity/memento-flashcards/SKILL.md +324 -0
  629. package/optional-skills/productivity/memento-flashcards/scripts/memento_cards.py +353 -0
  630. package/optional-skills/productivity/memento-flashcards/scripts/youtube_quiz.py +88 -0
  631. package/optional-skills/productivity/shop-app/SKILL.md +340 -0
  632. package/optional-skills/productivity/shopify/SKILL.md +373 -0
  633. package/optional-skills/productivity/siyuan/SKILL.md +298 -0
  634. package/optional-skills/productivity/telephony/SKILL.md +418 -0
  635. package/optional-skills/productivity/telephony/scripts/telephony.py +1343 -0
  636. package/optional-skills/research/bioinformatics/SKILL.md +235 -0
  637. package/optional-skills/research/darwinian-evolver/SKILL.md +199 -0
  638. package/optional-skills/research/darwinian-evolver/scripts/parrot_openrouter.py +218 -0
  639. package/optional-skills/research/darwinian-evolver/scripts/show_snapshot.py +69 -0
  640. package/optional-skills/research/darwinian-evolver/templates/custom_problem_template.py +240 -0
  641. package/optional-skills/research/domain-intel/SKILL.md +97 -0
  642. package/optional-skills/research/domain-intel/scripts/domain_intel.py +397 -0
  643. package/optional-skills/research/drug-discovery/SKILL.md +227 -0
  644. package/optional-skills/research/drug-discovery/references/ADMET_REFERENCE.md +66 -0
  645. package/optional-skills/research/drug-discovery/scripts/chembl_target.py +53 -0
  646. package/optional-skills/research/drug-discovery/scripts/ro5_screen.py +44 -0
  647. package/optional-skills/research/duckduckgo-search/SKILL.md +238 -0
  648. package/optional-skills/research/duckduckgo-search/scripts/duckduckgo.sh +28 -0
  649. package/optional-skills/research/gitnexus-explorer/SKILL.md +214 -0
  650. package/optional-skills/research/gitnexus-explorer/scripts/proxy.mjs +92 -0
  651. package/optional-skills/research/osint-investigation/SKILL.md +277 -0
  652. package/optional-skills/research/osint-investigation/references/sources/courtlistener.md +98 -0
  653. package/optional-skills/research/osint-investigation/references/sources/gdelt.md +104 -0
  654. package/optional-skills/research/osint-investigation/references/sources/icij-offshore.md +104 -0
  655. package/optional-skills/research/osint-investigation/references/sources/nyc-acris.md +90 -0
  656. package/optional-skills/research/osint-investigation/references/sources/ofac-sdn.md +92 -0
  657. package/optional-skills/research/osint-investigation/references/sources/opencorporates.md +103 -0
  658. package/optional-skills/research/osint-investigation/references/sources/sec-edgar.md +83 -0
  659. package/optional-skills/research/osint-investigation/references/sources/senate-ld.md +89 -0
  660. package/optional-skills/research/osint-investigation/references/sources/usaspending.md +97 -0
  661. package/optional-skills/research/osint-investigation/references/sources/wayback.md +93 -0
  662. package/optional-skills/research/osint-investigation/references/sources/wikipedia.md +107 -0
  663. package/optional-skills/research/osint-investigation/scripts/_http.py +82 -0
  664. package/optional-skills/research/osint-investigation/scripts/_normalize.py +67 -0
  665. package/optional-skills/research/osint-investigation/scripts/build_findings.py +221 -0
  666. package/optional-skills/research/osint-investigation/scripts/entity_resolution.py +228 -0
  667. package/optional-skills/research/osint-investigation/scripts/fetch_courtlistener.py +149 -0
  668. package/optional-skills/research/osint-investigation/scripts/fetch_gdelt.py +162 -0
  669. package/optional-skills/research/osint-investigation/scripts/fetch_icij_offshore.py +234 -0
  670. package/optional-skills/research/osint-investigation/scripts/fetch_nyc_acris.py +203 -0
  671. package/optional-skills/research/osint-investigation/scripts/fetch_ofac_sdn.py +175 -0
  672. package/optional-skills/research/osint-investigation/scripts/fetch_opencorporates.py +192 -0
  673. package/optional-skills/research/osint-investigation/scripts/fetch_sec_edgar.py +184 -0
  674. package/optional-skills/research/osint-investigation/scripts/fetch_senate_ld.py +146 -0
  675. package/optional-skills/research/osint-investigation/scripts/fetch_usaspending.py +170 -0
  676. package/optional-skills/research/osint-investigation/scripts/fetch_wayback.py +142 -0
  677. package/optional-skills/research/osint-investigation/scripts/fetch_wikipedia.py +267 -0
  678. package/optional-skills/research/osint-investigation/scripts/timing_analysis.py +253 -0
  679. package/optional-skills/research/osint-investigation/templates/source-template.md +59 -0
  680. package/optional-skills/research/parallel-cli/SKILL.md +391 -0
  681. package/optional-skills/research/qmd/SKILL.md +441 -0
  682. package/optional-skills/research/scrapling/SKILL.md +336 -0
  683. package/optional-skills/research/searxng-search/SKILL.md +212 -0
  684. package/optional-skills/research/searxng-search/scripts/searxng.sh +22 -0
  685. package/optional-skills/security/1password/SKILL.md +163 -0
  686. package/optional-skills/security/1password/references/cli-examples.md +31 -0
  687. package/optional-skills/security/1password/references/get-started.md +21 -0
  688. package/optional-skills/security/DESCRIPTION.md +3 -0
  689. package/optional-skills/security/oss-forensics/SKILL.md +423 -0
  690. package/optional-skills/security/oss-forensics/references/evidence-types.md +89 -0
  691. package/optional-skills/security/oss-forensics/references/github-archive-guide.md +184 -0
  692. package/optional-skills/security/oss-forensics/references/investigation-templates.md +131 -0
  693. package/optional-skills/security/oss-forensics/references/recovery-techniques.md +164 -0
  694. package/optional-skills/security/oss-forensics/scripts/evidence-store.py +313 -0
  695. package/optional-skills/security/oss-forensics/templates/forensic-report.md +151 -0
  696. package/optional-skills/security/oss-forensics/templates/malicious-package-report.md +43 -0
  697. package/optional-skills/security/sherlock/SKILL.md +193 -0
  698. package/optional-skills/software-development/rest-graphql-debug/SKILL.md +514 -0
  699. package/optional-skills/web-development/DESCRIPTION.md +5 -0
  700. package/optional-skills/web-development/page-agent/SKILL.md +190 -0
  701. package/package.json +78 -0
  702. package/plugins/__init__.py +1 -0
  703. package/plugins/__pycache__/__init__.cpython-312.pyc +0 -0
  704. package/plugins/context_engine/__init__.py +219 -0
  705. package/plugins/disk-cleanup/README.md +51 -0
  706. package/plugins/disk-cleanup/__init__.py +316 -0
  707. package/plugins/disk-cleanup/disk_cleanup.py +497 -0
  708. package/plugins/disk-cleanup/plugin.yaml +7 -0
  709. package/plugins/example-dashboard/dashboard/manifest.json +14 -0
  710. package/plugins/example-dashboard/dashboard/plugin_api.py +17 -0
  711. package/plugins/google_meet/README.md +131 -0
  712. package/plugins/google_meet/SKILL.md +148 -0
  713. package/plugins/google_meet/__init__.py +103 -0
  714. package/plugins/google_meet/audio_bridge.py +244 -0
  715. package/plugins/google_meet/cli.py +479 -0
  716. package/plugins/google_meet/meet_bot.py +852 -0
  717. package/plugins/google_meet/node/__init__.py +54 -0
  718. package/plugins/google_meet/node/cli.py +125 -0
  719. package/plugins/google_meet/node/client.py +107 -0
  720. package/plugins/google_meet/node/protocol.py +124 -0
  721. package/plugins/google_meet/node/registry.py +113 -0
  722. package/plugins/google_meet/node/server.py +201 -0
  723. package/plugins/google_meet/plugin.yaml +16 -0
  724. package/plugins/google_meet/process_manager.py +324 -0
  725. package/plugins/google_meet/realtime/__init__.py +10 -0
  726. package/plugins/google_meet/realtime/openai_client.py +332 -0
  727. package/plugins/google_meet/tools.py +348 -0
  728. package/plugins/hermes-achievements/LICENSE +21 -0
  729. package/plugins/hermes-achievements/README.md +150 -0
  730. package/plugins/hermes-achievements/dashboard/dist/index.js +732 -0
  731. package/plugins/hermes-achievements/dashboard/dist/style.css +146 -0
  732. package/plugins/hermes-achievements/dashboard/manifest.json +11 -0
  733. package/plugins/hermes-achievements/dashboard/plugin_api.py +1062 -0
  734. package/plugins/hermes-achievements/docs/achievements-performance-implementation-plan.md +157 -0
  735. package/plugins/hermes-achievements/docs/achievements-performance-implementation-spec.md +219 -0
  736. package/plugins/hermes-achievements/docs/achievements-performance-spec.md +174 -0
  737. package/plugins/hermes-achievements/docs/assets/achievements-dashboard-hd.png +0 -0
  738. package/plugins/hermes-achievements/docs/assets/achievements-tier-showcase-hd.png +0 -0
  739. package/plugins/hermes-achievements/tests/test_achievement_engine.py +156 -0
  740. package/plugins/image_gen/openai/__init__.py +303 -0
  741. package/plugins/image_gen/openai/__pycache__/__init__.cpython-312.pyc +0 -0
  742. package/plugins/image_gen/openai/plugin.yaml +7 -0
  743. package/plugins/image_gen/openai-codex/__init__.py +378 -0
  744. package/plugins/image_gen/openai-codex/__pycache__/__init__.cpython-312.pyc +0 -0
  745. package/plugins/image_gen/openai-codex/plugin.yaml +5 -0
  746. package/plugins/image_gen/xai/__init__.py +316 -0
  747. package/plugins/image_gen/xai/__pycache__/__init__.cpython-312.pyc +0 -0
  748. package/plugins/image_gen/xai/plugin.yaml +7 -0
  749. package/plugins/kanban/dashboard/dist/index.js +3143 -0
  750. package/plugins/kanban/dashboard/dist/style.css +1500 -0
  751. package/plugins/kanban/dashboard/manifest.json +14 -0
  752. package/plugins/kanban/dashboard/plugin_api.py +1612 -0
  753. package/plugins/kanban/systemd/hermes-kanban-dispatcher.service +32 -0
  754. package/plugins/memory/__init__.py +408 -0
  755. package/plugins/memory/byterover/README.md +41 -0
  756. package/plugins/memory/byterover/__init__.py +384 -0
  757. package/plugins/memory/byterover/plugin.yaml +9 -0
  758. package/plugins/memory/hindsight/README.md +138 -0
  759. package/plugins/memory/hindsight/__init__.py +1758 -0
  760. package/plugins/memory/hindsight/plugin.yaml +8 -0
  761. package/plugins/memory/holographic/README.md +36 -0
  762. package/plugins/memory/holographic/__init__.py +409 -0
  763. package/plugins/memory/holographic/holographic.py +203 -0
  764. package/plugins/memory/holographic/plugin.yaml +5 -0
  765. package/plugins/memory/holographic/retrieval.py +593 -0
  766. package/plugins/memory/holographic/store.py +579 -0
  767. package/plugins/memory/honcho/README.md +328 -0
  768. package/plugins/memory/honcho/__init__.py +1329 -0
  769. package/plugins/memory/honcho/cli.py +1452 -0
  770. package/plugins/memory/honcho/client.py +784 -0
  771. package/plugins/memory/honcho/plugin.yaml +7 -0
  772. package/plugins/memory/honcho/session.py +1255 -0
  773. package/plugins/memory/mem0/README.md +38 -0
  774. package/plugins/memory/mem0/__init__.py +374 -0
  775. package/plugins/memory/mem0/plugin.yaml +5 -0
  776. package/plugins/memory/openviking/README.md +40 -0
  777. package/plugins/memory/openviking/__init__.py +945 -0
  778. package/plugins/memory/openviking/plugin.yaml +9 -0
  779. package/plugins/memory/retaindb/README.md +40 -0
  780. package/plugins/memory/retaindb/__init__.py +767 -0
  781. package/plugins/memory/retaindb/plugin.yaml +7 -0
  782. package/plugins/memory/supermemory/README.md +99 -0
  783. package/plugins/memory/supermemory/__init__.py +792 -0
  784. package/plugins/memory/supermemory/plugin.yaml +5 -0
  785. package/plugins/model-providers/README.md +70 -0
  786. package/plugins/model-providers/ai-gateway/__init__.py +43 -0
  787. package/plugins/model-providers/ai-gateway/__pycache__/__init__.cpython-312.pyc +0 -0
  788. package/plugins/model-providers/ai-gateway/plugin.yaml +5 -0
  789. package/plugins/model-providers/alibaba/__init__.py +13 -0
  790. package/plugins/model-providers/alibaba/__pycache__/__init__.cpython-312.pyc +0 -0
  791. package/plugins/model-providers/alibaba/plugin.yaml +5 -0
  792. package/plugins/model-providers/alibaba-coding-plan/__init__.py +21 -0
  793. package/plugins/model-providers/alibaba-coding-plan/__pycache__/__init__.cpython-312.pyc +0 -0
  794. package/plugins/model-providers/alibaba-coding-plan/plugin.yaml +5 -0
  795. package/plugins/model-providers/anthropic/__init__.py +52 -0
  796. package/plugins/model-providers/anthropic/__pycache__/__init__.cpython-312.pyc +0 -0
  797. package/plugins/model-providers/anthropic/plugin.yaml +5 -0
  798. package/plugins/model-providers/arcee/__init__.py +13 -0
  799. package/plugins/model-providers/arcee/__pycache__/__init__.cpython-312.pyc +0 -0
  800. package/plugins/model-providers/arcee/plugin.yaml +5 -0
  801. package/plugins/model-providers/azure-foundry/__init__.py +21 -0
  802. package/plugins/model-providers/azure-foundry/__pycache__/__init__.cpython-312.pyc +0 -0
  803. package/plugins/model-providers/azure-foundry/plugin.yaml +5 -0
  804. package/plugins/model-providers/bedrock/__init__.py +29 -0
  805. package/plugins/model-providers/bedrock/__pycache__/__init__.cpython-312.pyc +0 -0
  806. package/plugins/model-providers/bedrock/plugin.yaml +5 -0
  807. package/plugins/model-providers/copilot/__init__.py +58 -0
  808. package/plugins/model-providers/copilot/__pycache__/__init__.cpython-312.pyc +0 -0
  809. package/plugins/model-providers/copilot/plugin.yaml +5 -0
  810. package/plugins/model-providers/copilot-acp/__init__.py +34 -0
  811. package/plugins/model-providers/copilot-acp/__pycache__/__init__.cpython-312.pyc +0 -0
  812. package/plugins/model-providers/copilot-acp/plugin.yaml +5 -0
  813. package/plugins/model-providers/custom/__init__.py +68 -0
  814. package/plugins/model-providers/custom/__pycache__/__init__.cpython-312.pyc +0 -0
  815. package/plugins/model-providers/custom/plugin.yaml +5 -0
  816. package/plugins/model-providers/deepseek/__init__.py +99 -0
  817. package/plugins/model-providers/deepseek/__pycache__/__init__.cpython-312.pyc +0 -0
  818. package/plugins/model-providers/deepseek/plugin.yaml +5 -0
  819. package/plugins/model-providers/gemini/__init__.py +72 -0
  820. package/plugins/model-providers/gemini/__pycache__/__init__.cpython-312.pyc +0 -0
  821. package/plugins/model-providers/gemini/plugin.yaml +5 -0
  822. package/plugins/model-providers/gmi/__init__.py +31 -0
  823. package/plugins/model-providers/gmi/__pycache__/__init__.cpython-312.pyc +0 -0
  824. package/plugins/model-providers/gmi/plugin.yaml +5 -0
  825. package/plugins/model-providers/huggingface/__init__.py +20 -0
  826. package/plugins/model-providers/huggingface/__pycache__/__init__.cpython-312.pyc +0 -0
  827. package/plugins/model-providers/huggingface/plugin.yaml +5 -0
  828. package/plugins/model-providers/kilocode/__init__.py +14 -0
  829. package/plugins/model-providers/kilocode/__pycache__/__init__.cpython-312.pyc +0 -0
  830. package/plugins/model-providers/kilocode/plugin.yaml +5 -0
  831. package/plugins/model-providers/kimi-coding/__init__.py +71 -0
  832. package/plugins/model-providers/kimi-coding/__pycache__/__init__.cpython-312.pyc +0 -0
  833. package/plugins/model-providers/kimi-coding/plugin.yaml +5 -0
  834. package/plugins/model-providers/minimax/__init__.py +45 -0
  835. package/plugins/model-providers/minimax/__pycache__/__init__.cpython-312.pyc +0 -0
  836. package/plugins/model-providers/minimax/plugin.yaml +5 -0
  837. package/plugins/model-providers/nous/__init__.py +54 -0
  838. package/plugins/model-providers/nous/__pycache__/__init__.cpython-312.pyc +0 -0
  839. package/plugins/model-providers/nous/plugin.yaml +5 -0
  840. package/plugins/model-providers/novita/__init__.py +27 -0
  841. package/plugins/model-providers/novita/__pycache__/__init__.cpython-312.pyc +0 -0
  842. package/plugins/model-providers/novita/plugin.yaml +5 -0
  843. package/plugins/model-providers/nvidia/__init__.py +21 -0
  844. package/plugins/model-providers/nvidia/__pycache__/__init__.cpython-312.pyc +0 -0
  845. package/plugins/model-providers/nvidia/plugin.yaml +5 -0
  846. package/plugins/model-providers/ollama-cloud/__init__.py +14 -0
  847. package/plugins/model-providers/ollama-cloud/__pycache__/__init__.cpython-312.pyc +0 -0
  848. package/plugins/model-providers/ollama-cloud/plugin.yaml +5 -0
  849. package/plugins/model-providers/openai-codex/__init__.py +15 -0
  850. package/plugins/model-providers/openai-codex/__pycache__/__init__.cpython-312.pyc +0 -0
  851. package/plugins/model-providers/openai-codex/plugin.yaml +5 -0
  852. package/plugins/model-providers/opencode-zen/__init__.py +30 -0
  853. package/plugins/model-providers/opencode-zen/__pycache__/__init__.cpython-312.pyc +0 -0
  854. package/plugins/model-providers/opencode-zen/plugin.yaml +5 -0
  855. package/plugins/model-providers/openrouter/__init__.py +115 -0
  856. package/plugins/model-providers/openrouter/__pycache__/__init__.cpython-312.pyc +0 -0
  857. package/plugins/model-providers/openrouter/plugin.yaml +5 -0
  858. package/plugins/model-providers/qwen-oauth/__init__.py +82 -0
  859. package/plugins/model-providers/qwen-oauth/__pycache__/__init__.cpython-312.pyc +0 -0
  860. package/plugins/model-providers/qwen-oauth/plugin.yaml +5 -0
  861. package/plugins/model-providers/stepfun/__init__.py +14 -0
  862. package/plugins/model-providers/stepfun/__pycache__/__init__.cpython-312.pyc +0 -0
  863. package/plugins/model-providers/stepfun/plugin.yaml +5 -0
  864. package/plugins/model-providers/xai/__init__.py +15 -0
  865. package/plugins/model-providers/xai/__pycache__/__init__.cpython-312.pyc +0 -0
  866. package/plugins/model-providers/xai/plugin.yaml +5 -0
  867. package/plugins/model-providers/xiaomi/__init__.py +14 -0
  868. package/plugins/model-providers/xiaomi/__pycache__/__init__.cpython-312.pyc +0 -0
  869. package/plugins/model-providers/xiaomi/plugin.yaml +5 -0
  870. package/plugins/model-providers/zai/__init__.py +21 -0
  871. package/plugins/model-providers/zai/__pycache__/__init__.cpython-312.pyc +0 -0
  872. package/plugins/model-providers/zai/plugin.yaml +5 -0
  873. package/plugins/observability/langfuse/README.md +53 -0
  874. package/plugins/observability/langfuse/__init__.py +1004 -0
  875. package/plugins/observability/langfuse/plugin.yaml +14 -0
  876. package/plugins/platforms/google_chat/__init__.py +3 -0
  877. package/plugins/platforms/google_chat/__pycache__/__init__.cpython-312.pyc +0 -0
  878. package/plugins/platforms/google_chat/__pycache__/adapter.cpython-312.pyc +0 -0
  879. package/plugins/platforms/google_chat/adapter.py +3343 -0
  880. package/plugins/platforms/google_chat/oauth.py +639 -0
  881. package/plugins/platforms/google_chat/plugin.yaml +39 -0
  882. package/plugins/platforms/irc/__init__.py +3 -0
  883. package/plugins/platforms/irc/__pycache__/__init__.cpython-312.pyc +0 -0
  884. package/plugins/platforms/irc/__pycache__/adapter.cpython-312.pyc +0 -0
  885. package/plugins/platforms/irc/adapter.py +969 -0
  886. package/plugins/platforms/irc/plugin.yaml +54 -0
  887. package/plugins/platforms/line/__init__.py +3 -0
  888. package/plugins/platforms/line/__pycache__/__init__.cpython-312.pyc +0 -0
  889. package/plugins/platforms/line/__pycache__/adapter.cpython-312.pyc +0 -0
  890. package/plugins/platforms/line/adapter.py +1639 -0
  891. package/plugins/platforms/line/plugin.yaml +65 -0
  892. package/plugins/platforms/simplex/__init__.py +3 -0
  893. package/plugins/platforms/simplex/__pycache__/__init__.cpython-312.pyc +0 -0
  894. package/plugins/platforms/simplex/__pycache__/adapter.cpython-312.pyc +0 -0
  895. package/plugins/platforms/simplex/adapter.py +746 -0
  896. package/plugins/platforms/simplex/plugin.yaml +37 -0
  897. package/plugins/platforms/teams/__init__.py +3 -0
  898. package/plugins/platforms/teams/__pycache__/__init__.cpython-312.pyc +0 -0
  899. package/plugins/platforms/teams/__pycache__/adapter.cpython-312.pyc +0 -0
  900. package/plugins/platforms/teams/adapter.py +1188 -0
  901. package/plugins/platforms/teams/plugin.yaml +48 -0
  902. package/plugins/spotify/__init__.py +66 -0
  903. package/plugins/spotify/__pycache__/__init__.cpython-312.pyc +0 -0
  904. package/plugins/spotify/__pycache__/client.cpython-312.pyc +0 -0
  905. package/plugins/spotify/__pycache__/tools.cpython-312.pyc +0 -0
  906. package/plugins/spotify/client.py +435 -0
  907. package/plugins/spotify/plugin.yaml +13 -0
  908. package/plugins/spotify/tools.py +454 -0
  909. package/plugins/teams_pipeline/__init__.py +23 -0
  910. package/plugins/teams_pipeline/cli.py +463 -0
  911. package/plugins/teams_pipeline/meetings.py +333 -0
  912. package/plugins/teams_pipeline/models.py +350 -0
  913. package/plugins/teams_pipeline/pipeline.py +692 -0
  914. package/plugins/teams_pipeline/plugin.yaml +9 -0
  915. package/plugins/teams_pipeline/runtime.py +135 -0
  916. package/plugins/teams_pipeline/store.py +194 -0
  917. package/plugins/teams_pipeline/subscriptions.py +249 -0
  918. package/plugins/video_gen/fal/__init__.py +523 -0
  919. package/plugins/video_gen/fal/__pycache__/__init__.cpython-312.pyc +0 -0
  920. package/plugins/video_gen/fal/plugin.yaml +7 -0
  921. package/plugins/video_gen/xai/__init__.py +441 -0
  922. package/plugins/video_gen/xai/__pycache__/__init__.cpython-312.pyc +0 -0
  923. package/plugins/video_gen/xai/plugin.yaml +7 -0
  924. package/plugins/web/__init__.py +7 -0
  925. package/plugins/web/__pycache__/__init__.cpython-312.pyc +0 -0
  926. package/plugins/web/brave_free/__init__.py +14 -0
  927. package/plugins/web/brave_free/__pycache__/__init__.cpython-312.pyc +0 -0
  928. package/plugins/web/brave_free/__pycache__/provider.cpython-312.pyc +0 -0
  929. package/plugins/web/brave_free/plugin.yaml +7 -0
  930. package/plugins/web/brave_free/provider.py +137 -0
  931. package/plugins/web/ddgs/__init__.py +15 -0
  932. package/plugins/web/ddgs/__pycache__/__init__.cpython-312.pyc +0 -0
  933. package/plugins/web/ddgs/__pycache__/provider.cpython-312.pyc +0 -0
  934. package/plugins/web/ddgs/plugin.yaml +7 -0
  935. package/plugins/web/ddgs/provider.py +104 -0
  936. package/plugins/web/exa/__init__.py +15 -0
  937. package/plugins/web/exa/__pycache__/__init__.cpython-312.pyc +0 -0
  938. package/plugins/web/exa/__pycache__/provider.cpython-312.pyc +0 -0
  939. package/plugins/web/exa/plugin.yaml +7 -0
  940. package/plugins/web/exa/provider.py +212 -0
  941. package/plugins/web/firecrawl/__init__.py +28 -0
  942. package/plugins/web/firecrawl/__pycache__/__init__.cpython-312.pyc +0 -0
  943. package/plugins/web/firecrawl/__pycache__/provider.cpython-312.pyc +0 -0
  944. package/plugins/web/firecrawl/plugin.yaml +7 -0
  945. package/plugins/web/firecrawl/provider.py +773 -0
  946. package/plugins/web/parallel/__init__.py +16 -0
  947. package/plugins/web/parallel/__pycache__/__init__.cpython-312.pyc +0 -0
  948. package/plugins/web/parallel/__pycache__/provider.cpython-312.pyc +0 -0
  949. package/plugins/web/parallel/plugin.yaml +7 -0
  950. package/plugins/web/parallel/provider.py +291 -0
  951. package/plugins/web/searxng/__init__.py +15 -0
  952. package/plugins/web/searxng/__pycache__/__init__.cpython-312.pyc +0 -0
  953. package/plugins/web/searxng/__pycache__/provider.cpython-312.pyc +0 -0
  954. package/plugins/web/searxng/plugin.yaml +7 -0
  955. package/plugins/web/searxng/provider.py +140 -0
  956. package/plugins/web/tavily/__init__.py +15 -0
  957. package/plugins/web/tavily/__pycache__/__init__.cpython-312.pyc +0 -0
  958. package/plugins/web/tavily/__pycache__/provider.cpython-312.pyc +0 -0
  959. package/plugins/web/tavily/plugin.yaml +7 -0
  960. package/plugins/web/tavily/provider.py +285 -0
  961. package/providers/README.md +78 -0
  962. package/providers/__init__.py +192 -0
  963. package/providers/__pycache__/__init__.cpython-312.pyc +0 -0
  964. package/providers/__pycache__/base.cpython-312.pyc +0 -0
  965. package/providers/base.py +184 -0
  966. package/pyproject.toml +255 -0
  967. package/run_agent.py +16409 -0
  968. package/scripts/benchmark_browser_eval.py +138 -0
  969. package/scripts/build_model_catalog.py +95 -0
  970. package/scripts/build_skills_index.py +325 -0
  971. package/scripts/check-windows-footguns.py +624 -0
  972. package/scripts/contributor_audit.py +473 -0
  973. package/scripts/discord-voice-doctor.py +396 -0
  974. package/scripts/hermes-gateway +416 -0
  975. package/scripts/install.cmd +28 -0
  976. package/scripts/install.ps1 +1611 -0
  977. package/scripts/install.sh +2007 -0
  978. package/scripts/install_psutil_android.py +117 -0
  979. package/scripts/keystroke_diagnostic.py +81 -0
  980. package/scripts/kill_modal.sh +34 -0
  981. package/scripts/lib/node-bootstrap.sh +238 -0
  982. package/scripts/lint_diff.py +207 -0
  983. package/scripts/postinstall.js +150 -0
  984. package/scripts/profile-tui.py +626 -0
  985. package/scripts/release.py +1680 -0
  986. package/scripts/run_tests.sh +129 -0
  987. package/scripts/sample_and_compress.py +409 -0
  988. package/scripts/setup_open_webui.sh +349 -0
  989. package/scripts/whatsapp-bridge/allowlist.js +88 -0
  990. package/scripts/whatsapp-bridge/allowlist.test.mjs +80 -0
  991. package/scripts/whatsapp-bridge/bridge.js +729 -0
  992. package/scripts/whatsapp-bridge/package-lock.json +2141 -0
  993. package/scripts/whatsapp-bridge/package.json +19 -0
  994. package/skills/apple/DESCRIPTION.md +2 -0
  995. package/skills/apple/apple-notes/SKILL.md +90 -0
  996. package/skills/apple/apple-reminders/SKILL.md +98 -0
  997. package/skills/apple/findmy/SKILL.md +131 -0
  998. package/skills/apple/imessage/SKILL.md +102 -0
  999. package/skills/apple/macos-computer-use/SKILL.md +201 -0
  1000. package/skills/autonomous-ai-agents/DESCRIPTION.md +3 -0
  1001. package/skills/autonomous-ai-agents/claude-code/SKILL.md +745 -0
  1002. package/skills/autonomous-ai-agents/codex/SKILL.md +130 -0
  1003. package/skills/autonomous-ai-agents/hermes-agent/SKILL.md +1014 -0
  1004. package/skills/autonomous-ai-agents/opencode/SKILL.md +219 -0
  1005. package/skills/creative/DESCRIPTION.md +3 -0
  1006. package/skills/creative/architecture-diagram/SKILL.md +148 -0
  1007. package/skills/creative/architecture-diagram/templates/template.html +319 -0
  1008. package/skills/creative/ascii-art/SKILL.md +322 -0
  1009. package/skills/creative/ascii-video/README.md +290 -0
  1010. package/skills/creative/ascii-video/SKILL.md +241 -0
  1011. package/skills/creative/ascii-video/references/architecture.md +802 -0
  1012. package/skills/creative/ascii-video/references/composition.md +892 -0
  1013. package/skills/creative/ascii-video/references/effects.md +1865 -0
  1014. package/skills/creative/ascii-video/references/inputs.md +685 -0
  1015. package/skills/creative/ascii-video/references/optimization.md +688 -0
  1016. package/skills/creative/ascii-video/references/scenes.md +1011 -0
  1017. package/skills/creative/ascii-video/references/shaders.md +1385 -0
  1018. package/skills/creative/ascii-video/references/troubleshooting.md +367 -0
  1019. package/skills/creative/baoyu-comic/PORT_NOTES.md +77 -0
  1020. package/skills/creative/baoyu-comic/SKILL.md +247 -0
  1021. package/skills/creative/baoyu-comic/references/analysis-framework.md +176 -0
  1022. package/skills/creative/baoyu-comic/references/art-styles/chalk.md +101 -0
  1023. package/skills/creative/baoyu-comic/references/art-styles/ink-brush.md +97 -0
  1024. package/skills/creative/baoyu-comic/references/art-styles/ligne-claire.md +75 -0
  1025. package/skills/creative/baoyu-comic/references/art-styles/manga.md +93 -0
  1026. package/skills/creative/baoyu-comic/references/art-styles/minimalist.md +84 -0
  1027. package/skills/creative/baoyu-comic/references/art-styles/realistic.md +89 -0
  1028. package/skills/creative/baoyu-comic/references/auto-selection.md +71 -0
  1029. package/skills/creative/baoyu-comic/references/base-prompt.md +98 -0
  1030. package/skills/creative/baoyu-comic/references/character-template.md +180 -0
  1031. package/skills/creative/baoyu-comic/references/layouts/cinematic.md +23 -0
  1032. package/skills/creative/baoyu-comic/references/layouts/dense.md +23 -0
  1033. package/skills/creative/baoyu-comic/references/layouts/four-panel.md +40 -0
  1034. package/skills/creative/baoyu-comic/references/layouts/mixed.md +23 -0
  1035. package/skills/creative/baoyu-comic/references/layouts/splash.md +23 -0
  1036. package/skills/creative/baoyu-comic/references/layouts/standard.md +23 -0
  1037. package/skills/creative/baoyu-comic/references/layouts/webtoon.md +30 -0
  1038. package/skills/creative/baoyu-comic/references/ohmsha-guide.md +85 -0
  1039. package/skills/creative/baoyu-comic/references/partial-workflows.md +106 -0
  1040. package/skills/creative/baoyu-comic/references/presets/concept-story.md +121 -0
  1041. package/skills/creative/baoyu-comic/references/presets/four-panel.md +107 -0
  1042. package/skills/creative/baoyu-comic/references/presets/ohmsha.md +114 -0
  1043. package/skills/creative/baoyu-comic/references/presets/shoujo.md +116 -0
  1044. package/skills/creative/baoyu-comic/references/presets/wuxia.md +110 -0
  1045. package/skills/creative/baoyu-comic/references/storyboard-template.md +143 -0
  1046. package/skills/creative/baoyu-comic/references/tones/action.md +110 -0
  1047. package/skills/creative/baoyu-comic/references/tones/dramatic.md +95 -0
  1048. package/skills/creative/baoyu-comic/references/tones/energetic.md +105 -0
  1049. package/skills/creative/baoyu-comic/references/tones/neutral.md +63 -0
  1050. package/skills/creative/baoyu-comic/references/tones/romantic.md +100 -0
  1051. package/skills/creative/baoyu-comic/references/tones/vintage.md +104 -0
  1052. package/skills/creative/baoyu-comic/references/tones/warm.md +94 -0
  1053. package/skills/creative/baoyu-comic/references/workflow.md +401 -0
  1054. package/skills/creative/baoyu-infographic/PORT_NOTES.md +43 -0
  1055. package/skills/creative/baoyu-infographic/SKILL.md +237 -0
  1056. package/skills/creative/baoyu-infographic/references/analysis-framework.md +182 -0
  1057. package/skills/creative/baoyu-infographic/references/base-prompt.md +43 -0
  1058. package/skills/creative/baoyu-infographic/references/layouts/bento-grid.md +41 -0
  1059. package/skills/creative/baoyu-infographic/references/layouts/binary-comparison.md +48 -0
  1060. package/skills/creative/baoyu-infographic/references/layouts/bridge.md +41 -0
  1061. package/skills/creative/baoyu-infographic/references/layouts/circular-flow.md +41 -0
  1062. package/skills/creative/baoyu-infographic/references/layouts/comic-strip.md +41 -0
  1063. package/skills/creative/baoyu-infographic/references/layouts/comparison-matrix.md +41 -0
  1064. package/skills/creative/baoyu-infographic/references/layouts/dashboard.md +41 -0
  1065. package/skills/creative/baoyu-infographic/references/layouts/dense-modules.md +72 -0
  1066. package/skills/creative/baoyu-infographic/references/layouts/funnel.md +41 -0
  1067. package/skills/creative/baoyu-infographic/references/layouts/hierarchical-layers.md +48 -0
  1068. package/skills/creative/baoyu-infographic/references/layouts/hub-spoke.md +41 -0
  1069. package/skills/creative/baoyu-infographic/references/layouts/iceberg.md +41 -0
  1070. package/skills/creative/baoyu-infographic/references/layouts/isometric-map.md +41 -0
  1071. package/skills/creative/baoyu-infographic/references/layouts/jigsaw.md +41 -0
  1072. package/skills/creative/baoyu-infographic/references/layouts/linear-progression.md +48 -0
  1073. package/skills/creative/baoyu-infographic/references/layouts/periodic-table.md +41 -0
  1074. package/skills/creative/baoyu-infographic/references/layouts/story-mountain.md +41 -0
  1075. package/skills/creative/baoyu-infographic/references/layouts/structural-breakdown.md +48 -0
  1076. package/skills/creative/baoyu-infographic/references/layouts/tree-branching.md +41 -0
  1077. package/skills/creative/baoyu-infographic/references/layouts/venn-diagram.md +41 -0
  1078. package/skills/creative/baoyu-infographic/references/layouts/winding-roadmap.md +41 -0
  1079. package/skills/creative/baoyu-infographic/references/structured-content-template.md +244 -0
  1080. package/skills/creative/baoyu-infographic/references/styles/aged-academia.md +36 -0
  1081. package/skills/creative/baoyu-infographic/references/styles/bold-graphic.md +36 -0
  1082. package/skills/creative/baoyu-infographic/references/styles/chalkboard.md +61 -0
  1083. package/skills/creative/baoyu-infographic/references/styles/claymation.md +29 -0
  1084. package/skills/creative/baoyu-infographic/references/styles/corporate-memphis.md +29 -0
  1085. package/skills/creative/baoyu-infographic/references/styles/craft-handmade.md +44 -0
  1086. package/skills/creative/baoyu-infographic/references/styles/cyberpunk-neon.md +29 -0
  1087. package/skills/creative/baoyu-infographic/references/styles/hand-drawn-edu.md +63 -0
  1088. package/skills/creative/baoyu-infographic/references/styles/ikea-manual.md +29 -0
  1089. package/skills/creative/baoyu-infographic/references/styles/kawaii.md +29 -0
  1090. package/skills/creative/baoyu-infographic/references/styles/knolling.md +29 -0
  1091. package/skills/creative/baoyu-infographic/references/styles/lego-brick.md +29 -0
  1092. package/skills/creative/baoyu-infographic/references/styles/morandi-journal.md +60 -0
  1093. package/skills/creative/baoyu-infographic/references/styles/origami.md +29 -0
  1094. package/skills/creative/baoyu-infographic/references/styles/pixel-art.md +29 -0
  1095. package/skills/creative/baoyu-infographic/references/styles/pop-laboratory.md +48 -0
  1096. package/skills/creative/baoyu-infographic/references/styles/retro-pop-grid.md +47 -0
  1097. package/skills/creative/baoyu-infographic/references/styles/storybook-watercolor.md +29 -0
  1098. package/skills/creative/baoyu-infographic/references/styles/subway-map.md +29 -0
  1099. package/skills/creative/baoyu-infographic/references/styles/technical-schematic.md +36 -0
  1100. package/skills/creative/baoyu-infographic/references/styles/ui-wireframe.md +29 -0
  1101. package/skills/creative/claude-design/SKILL.md +591 -0
  1102. package/skills/creative/comfyui/SKILL.md +612 -0
  1103. package/skills/creative/comfyui/references/official-cli.md +255 -0
  1104. package/skills/creative/comfyui/references/rest-api.md +312 -0
  1105. package/skills/creative/comfyui/references/template-integrity.md +243 -0
  1106. package/skills/creative/comfyui/references/workflow-format.md +226 -0
  1107. package/skills/creative/comfyui/scripts/_common.py +835 -0
  1108. package/skills/creative/comfyui/scripts/auto_fix_deps.py +225 -0
  1109. package/skills/creative/comfyui/scripts/check_deps.py +437 -0
  1110. package/skills/creative/comfyui/scripts/comfyui_setup.sh +286 -0
  1111. package/skills/creative/comfyui/scripts/extract_schema.py +315 -0
  1112. package/skills/creative/comfyui/scripts/fetch_logs.py +158 -0
  1113. package/skills/creative/comfyui/scripts/hardware_check.py +497 -0
  1114. package/skills/creative/comfyui/scripts/health_check.py +223 -0
  1115. package/skills/creative/comfyui/scripts/run_batch.py +243 -0
  1116. package/skills/creative/comfyui/scripts/run_workflow.py +796 -0
  1117. package/skills/creative/comfyui/scripts/ws_monitor.py +267 -0
  1118. package/skills/creative/comfyui/tests/README.md +50 -0
  1119. package/skills/creative/comfyui/tests/conftest.py +64 -0
  1120. package/skills/creative/comfyui/tests/pytest.ini +5 -0
  1121. package/skills/creative/comfyui/tests/test_check_deps.py +68 -0
  1122. package/skills/creative/comfyui/tests/test_cloud_integration.py +95 -0
  1123. package/skills/creative/comfyui/tests/test_common.py +447 -0
  1124. package/skills/creative/comfyui/tests/test_extract_schema.py +185 -0
  1125. package/skills/creative/comfyui/tests/test_run_workflow.py +213 -0
  1126. package/skills/creative/comfyui/workflows/README.md +86 -0
  1127. package/skills/creative/comfyui/workflows/animatediff_video.json +64 -0
  1128. package/skills/creative/comfyui/workflows/flux_dev_txt2img.json +78 -0
  1129. package/skills/creative/comfyui/workflows/sd15_txt2img.json +49 -0
  1130. package/skills/creative/comfyui/workflows/sdxl_img2img.json +54 -0
  1131. package/skills/creative/comfyui/workflows/sdxl_inpaint.json +59 -0
  1132. package/skills/creative/comfyui/workflows/sdxl_txt2img.json +49 -0
  1133. package/skills/creative/comfyui/workflows/upscale_4x.json +27 -0
  1134. package/skills/creative/comfyui/workflows/wan_video_t2v.json +69 -0
  1135. package/skills/creative/creative-ideation/SKILL.md +152 -0
  1136. package/skills/creative/creative-ideation/references/full-prompt-library.md +110 -0
  1137. package/skills/creative/design-md/SKILL.md +199 -0
  1138. package/skills/creative/design-md/templates/starter.md +99 -0
  1139. package/skills/creative/excalidraw/SKILL.md +199 -0
  1140. package/skills/creative/excalidraw/references/colors.md +44 -0
  1141. package/skills/creative/excalidraw/references/dark-mode.md +68 -0
  1142. package/skills/creative/excalidraw/references/examples.md +141 -0
  1143. package/skills/creative/excalidraw/scripts/upload.py +133 -0
  1144. package/skills/creative/humanizer/LICENSE +21 -0
  1145. package/skills/creative/humanizer/SKILL.md +578 -0
  1146. package/skills/creative/manim-video/README.md +23 -0
  1147. package/skills/creative/manim-video/SKILL.md +269 -0
  1148. package/skills/creative/manim-video/references/animation-design-thinking.md +161 -0
  1149. package/skills/creative/manim-video/references/animations.md +282 -0
  1150. package/skills/creative/manim-video/references/camera-and-3d.md +135 -0
  1151. package/skills/creative/manim-video/references/decorations.md +202 -0
  1152. package/skills/creative/manim-video/references/equations.md +216 -0
  1153. package/skills/creative/manim-video/references/graphs-and-data.md +163 -0
  1154. package/skills/creative/manim-video/references/mobjects.md +333 -0
  1155. package/skills/creative/manim-video/references/paper-explainer.md +255 -0
  1156. package/skills/creative/manim-video/references/production-quality.md +190 -0
  1157. package/skills/creative/manim-video/references/rendering.md +185 -0
  1158. package/skills/creative/manim-video/references/scene-planning.md +118 -0
  1159. package/skills/creative/manim-video/references/troubleshooting.md +135 -0
  1160. package/skills/creative/manim-video/references/updaters-and-trackers.md +260 -0
  1161. package/skills/creative/manim-video/references/visual-design.md +124 -0
  1162. package/skills/creative/manim-video/scripts/setup.sh +14 -0
  1163. package/skills/creative/p5js/README.md +64 -0
  1164. package/skills/creative/p5js/SKILL.md +556 -0
  1165. package/skills/creative/p5js/references/animation.md +439 -0
  1166. package/skills/creative/p5js/references/color-systems.md +352 -0
  1167. package/skills/creative/p5js/references/core-api.md +410 -0
  1168. package/skills/creative/p5js/references/export-pipeline.md +566 -0
  1169. package/skills/creative/p5js/references/interaction.md +398 -0
  1170. package/skills/creative/p5js/references/shapes-and-geometry.md +300 -0
  1171. package/skills/creative/p5js/references/troubleshooting.md +532 -0
  1172. package/skills/creative/p5js/references/typography.md +302 -0
  1173. package/skills/creative/p5js/references/visual-effects.md +895 -0
  1174. package/skills/creative/p5js/references/webgl-and-3d.md +423 -0
  1175. package/skills/creative/p5js/scripts/export-frames.js +179 -0
  1176. package/skills/creative/p5js/scripts/render.sh +108 -0
  1177. package/skills/creative/p5js/scripts/serve.sh +28 -0
  1178. package/skills/creative/p5js/scripts/setup.sh +87 -0
  1179. package/skills/creative/p5js/templates/viewer.html +395 -0
  1180. package/skills/creative/pixel-art/ATTRIBUTION.md +54 -0
  1181. package/skills/creative/pixel-art/SKILL.md +218 -0
  1182. package/skills/creative/pixel-art/references/palettes.md +49 -0
  1183. package/skills/creative/pixel-art/scripts/__init__.py +0 -0
  1184. package/skills/creative/pixel-art/scripts/palettes.py +167 -0
  1185. package/skills/creative/pixel-art/scripts/pixel_art.py +162 -0
  1186. package/skills/creative/pixel-art/scripts/pixel_art_video.py +345 -0
  1187. package/skills/creative/popular-web-designs/SKILL.md +214 -0
  1188. package/skills/creative/popular-web-designs/templates/airbnb.md +259 -0
  1189. package/skills/creative/popular-web-designs/templates/airtable.md +102 -0
  1190. package/skills/creative/popular-web-designs/templates/apple.md +326 -0
  1191. package/skills/creative/popular-web-designs/templates/bmw.md +193 -0
  1192. package/skills/creative/popular-web-designs/templates/cal.md +272 -0
  1193. package/skills/creative/popular-web-designs/templates/claude.md +325 -0
  1194. package/skills/creative/popular-web-designs/templates/clay.md +317 -0
  1195. package/skills/creative/popular-web-designs/templates/clickhouse.md +294 -0
  1196. package/skills/creative/popular-web-designs/templates/cohere.md +279 -0
  1197. package/skills/creative/popular-web-designs/templates/coinbase.md +142 -0
  1198. package/skills/creative/popular-web-designs/templates/composio.md +320 -0
  1199. package/skills/creative/popular-web-designs/templates/cursor.md +322 -0
  1200. package/skills/creative/popular-web-designs/templates/elevenlabs.md +278 -0
  1201. package/skills/creative/popular-web-designs/templates/expo.md +294 -0
  1202. package/skills/creative/popular-web-designs/templates/figma.md +233 -0
  1203. package/skills/creative/popular-web-designs/templates/framer.md +259 -0
  1204. package/skills/creative/popular-web-designs/templates/hashicorp.md +291 -0
  1205. package/skills/creative/popular-web-designs/templates/ibm.md +345 -0
  1206. package/skills/creative/popular-web-designs/templates/intercom.md +159 -0
  1207. package/skills/creative/popular-web-designs/templates/kraken.md +138 -0
  1208. package/skills/creative/popular-web-designs/templates/linear.app.md +380 -0
  1209. package/skills/creative/popular-web-designs/templates/lovable.md +311 -0
  1210. package/skills/creative/popular-web-designs/templates/minimax.md +270 -0
  1211. package/skills/creative/popular-web-designs/templates/mintlify.md +339 -0
  1212. package/skills/creative/popular-web-designs/templates/miro.md +121 -0
  1213. package/skills/creative/popular-web-designs/templates/mistral.ai.md +274 -0
  1214. package/skills/creative/popular-web-designs/templates/mongodb.md +279 -0
  1215. package/skills/creative/popular-web-designs/templates/notion.md +322 -0
  1216. package/skills/creative/popular-web-designs/templates/nvidia.md +306 -0
  1217. package/skills/creative/popular-web-designs/templates/ollama.md +280 -0
  1218. package/skills/creative/popular-web-designs/templates/opencode.ai.md +294 -0
  1219. package/skills/creative/popular-web-designs/templates/pinterest.md +243 -0
  1220. package/skills/creative/popular-web-designs/templates/posthog.md +269 -0
  1221. package/skills/creative/popular-web-designs/templates/raycast.md +281 -0
  1222. package/skills/creative/popular-web-designs/templates/replicate.md +274 -0
  1223. package/skills/creative/popular-web-designs/templates/resend.md +316 -0
  1224. package/skills/creative/popular-web-designs/templates/revolut.md +198 -0
  1225. package/skills/creative/popular-web-designs/templates/runwayml.md +257 -0
  1226. package/skills/creative/popular-web-designs/templates/sanity.md +370 -0
  1227. package/skills/creative/popular-web-designs/templates/sentry.md +275 -0
  1228. package/skills/creative/popular-web-designs/templates/spacex.md +207 -0
  1229. package/skills/creative/popular-web-designs/templates/spotify.md +259 -0
  1230. package/skills/creative/popular-web-designs/templates/stripe.md +335 -0
  1231. package/skills/creative/popular-web-designs/templates/supabase.md +268 -0
  1232. package/skills/creative/popular-web-designs/templates/superhuman.md +265 -0
  1233. package/skills/creative/popular-web-designs/templates/together.ai.md +276 -0
  1234. package/skills/creative/popular-web-designs/templates/uber.md +308 -0
  1235. package/skills/creative/popular-web-designs/templates/vercel.md +323 -0
  1236. package/skills/creative/popular-web-designs/templates/voltagent.md +336 -0
  1237. package/skills/creative/popular-web-designs/templates/warp.md +266 -0
  1238. package/skills/creative/popular-web-designs/templates/webflow.md +105 -0
  1239. package/skills/creative/popular-web-designs/templates/wise.md +186 -0
  1240. package/skills/creative/popular-web-designs/templates/x.ai.md +270 -0
  1241. package/skills/creative/popular-web-designs/templates/zapier.md +341 -0
  1242. package/skills/creative/pretext/SKILL.md +220 -0
  1243. package/skills/creative/pretext/references/patterns.md +258 -0
  1244. package/skills/creative/pretext/templates/donut-orbit.html +1468 -0
  1245. package/skills/creative/pretext/templates/hello-orb-flow.html +95 -0
  1246. package/skills/creative/sketch/SKILL.md +218 -0
  1247. package/skills/creative/songwriting-and-ai-music/SKILL.md +287 -0
  1248. package/skills/creative/touchdesigner-mcp/SKILL.md +356 -0
  1249. package/skills/creative/touchdesigner-mcp/references/3d-scene.md +275 -0
  1250. package/skills/creative/touchdesigner-mcp/references/animation.md +221 -0
  1251. package/skills/creative/touchdesigner-mcp/references/audio-reactive.md +175 -0
  1252. package/skills/creative/touchdesigner-mcp/references/dat-scripting.md +352 -0
  1253. package/skills/creative/touchdesigner-mcp/references/external-data.md +322 -0
  1254. package/skills/creative/touchdesigner-mcp/references/geometry-comp.md +121 -0
  1255. package/skills/creative/touchdesigner-mcp/references/glsl.md +151 -0
  1256. package/skills/creative/touchdesigner-mcp/references/layout-compositor.md +131 -0
  1257. package/skills/creative/touchdesigner-mcp/references/mcp-tools.md +382 -0
  1258. package/skills/creative/touchdesigner-mcp/references/midi-osc.md +211 -0
  1259. package/skills/creative/touchdesigner-mcp/references/network-patterns.md +966 -0
  1260. package/skills/creative/touchdesigner-mcp/references/operator-tips.md +106 -0
  1261. package/skills/creative/touchdesigner-mcp/references/operators.md +239 -0
  1262. package/skills/creative/touchdesigner-mcp/references/panel-ui.md +281 -0
  1263. package/skills/creative/touchdesigner-mcp/references/particles.md +245 -0
  1264. package/skills/creative/touchdesigner-mcp/references/pitfalls.md +704 -0
  1265. package/skills/creative/touchdesigner-mcp/references/postfx.md +183 -0
  1266. package/skills/creative/touchdesigner-mcp/references/projection-mapping.md +211 -0
  1267. package/skills/creative/touchdesigner-mcp/references/python-api.md +463 -0
  1268. package/skills/creative/touchdesigner-mcp/references/replicator.md +198 -0
  1269. package/skills/creative/touchdesigner-mcp/references/troubleshooting.md +244 -0
  1270. package/skills/creative/touchdesigner-mcp/scripts/setup.sh +115 -0
  1271. package/skills/data-science/DESCRIPTION.md +3 -0
  1272. package/skills/data-science/jupyter-live-kernel/SKILL.md +167 -0
  1273. package/skills/devops/kanban-orchestrator/SKILL.md +189 -0
  1274. package/skills/devops/kanban-worker/SKILL.md +184 -0
  1275. package/skills/devops/webhook-subscriptions/SKILL.md +204 -0
  1276. package/skills/diagramming/DESCRIPTION.md +3 -0
  1277. package/skills/dogfood/SKILL.md +162 -0
  1278. package/skills/dogfood/references/issue-taxonomy.md +109 -0
  1279. package/skills/dogfood/templates/dogfood-report-template.md +86 -0
  1280. package/skills/domain/DESCRIPTION.md +24 -0
  1281. package/skills/email/DESCRIPTION.md +3 -0
  1282. package/skills/email/himalaya/SKILL.md +299 -0
  1283. package/skills/email/himalaya/references/configuration.md +227 -0
  1284. package/skills/email/himalaya/references/message-composition.md +199 -0
  1285. package/skills/gaming/DESCRIPTION.md +3 -0
  1286. package/skills/gaming/minecraft-modpack-server/SKILL.md +187 -0
  1287. package/skills/gaming/pokemon-player/SKILL.md +216 -0
  1288. package/skills/gifs/DESCRIPTION.md +3 -0
  1289. package/skills/github/DESCRIPTION.md +3 -0
  1290. package/skills/github/codebase-inspection/SKILL.md +116 -0
  1291. package/skills/github/github-auth/SKILL.md +247 -0
  1292. package/skills/github/github-auth/scripts/gh-env.sh +66 -0
  1293. package/skills/github/github-code-review/SKILL.md +481 -0
  1294. package/skills/github/github-code-review/references/review-output-template.md +74 -0
  1295. package/skills/github/github-issues/SKILL.md +370 -0
  1296. package/skills/github/github-issues/templates/bug-report.md +35 -0
  1297. package/skills/github/github-issues/templates/feature-request.md +31 -0
  1298. package/skills/github/github-pr-workflow/SKILL.md +367 -0
  1299. package/skills/github/github-pr-workflow/references/ci-troubleshooting.md +183 -0
  1300. package/skills/github/github-pr-workflow/references/conventional-commits.md +71 -0
  1301. package/skills/github/github-pr-workflow/templates/pr-body-bugfix.md +35 -0
  1302. package/skills/github/github-pr-workflow/templates/pr-body-feature.md +33 -0
  1303. package/skills/github/github-repo-management/SKILL.md +516 -0
  1304. package/skills/github/github-repo-management/references/github-api-cheatsheet.md +161 -0
  1305. package/skills/index-cache/anthropics_skills_skills_.json +1 -0
  1306. package/skills/index-cache/claude_marketplace_anthropics_skills.json +1 -0
  1307. package/skills/index-cache/lobehub_index.json +1 -0
  1308. package/skills/index-cache/openai_skills_skills_.json +1 -0
  1309. package/skills/inference-sh/DESCRIPTION.md +19 -0
  1310. package/skills/mcp/DESCRIPTION.md +3 -0
  1311. package/skills/mcp/native-mcp/SKILL.md +357 -0
  1312. package/skills/media/DESCRIPTION.md +3 -0
  1313. package/skills/media/gif-search/SKILL.md +91 -0
  1314. package/skills/media/heartmula/SKILL.md +171 -0
  1315. package/skills/media/songsee/SKILL.md +83 -0
  1316. package/skills/media/spotify/SKILL.md +135 -0
  1317. package/skills/media/youtube-content/SKILL.md +73 -0
  1318. package/skills/media/youtube-content/references/output-formats.md +56 -0
  1319. package/skills/media/youtube-content/scripts/fetch_transcript.py +124 -0
  1320. package/skills/mlops/DESCRIPTION.md +3 -0
  1321. package/skills/mlops/evaluation/DESCRIPTION.md +3 -0
  1322. package/skills/mlops/evaluation/lm-evaluation-harness/SKILL.md +498 -0
  1323. package/skills/mlops/evaluation/lm-evaluation-harness/references/api-evaluation.md +490 -0
  1324. package/skills/mlops/evaluation/lm-evaluation-harness/references/benchmark-guide.md +488 -0
  1325. package/skills/mlops/evaluation/lm-evaluation-harness/references/custom-tasks.md +602 -0
  1326. package/skills/mlops/evaluation/lm-evaluation-harness/references/distributed-eval.md +519 -0
  1327. package/skills/mlops/evaluation/weights-and-biases/SKILL.md +594 -0
  1328. package/skills/mlops/evaluation/weights-and-biases/references/artifacts.md +584 -0
  1329. package/skills/mlops/evaluation/weights-and-biases/references/integrations.md +700 -0
  1330. package/skills/mlops/evaluation/weights-and-biases/references/sweeps.md +847 -0
  1331. package/skills/mlops/huggingface-hub/SKILL.md +81 -0
  1332. package/skills/mlops/inference/DESCRIPTION.md +3 -0
  1333. package/skills/mlops/inference/llama-cpp/SKILL.md +249 -0
  1334. package/skills/mlops/inference/llama-cpp/references/advanced-usage.md +504 -0
  1335. package/skills/mlops/inference/llama-cpp/references/hub-discovery.md +168 -0
  1336. package/skills/mlops/inference/llama-cpp/references/optimization.md +89 -0
  1337. package/skills/mlops/inference/llama-cpp/references/quantization.md +243 -0
  1338. package/skills/mlops/inference/llama-cpp/references/server.md +150 -0
  1339. package/skills/mlops/inference/llama-cpp/references/troubleshooting.md +442 -0
  1340. package/skills/mlops/inference/obliteratus/SKILL.md +342 -0
  1341. package/skills/mlops/inference/obliteratus/references/analysis-modules.md +166 -0
  1342. package/skills/mlops/inference/obliteratus/references/methods-guide.md +141 -0
  1343. package/skills/mlops/inference/obliteratus/templates/abliteration-config.yaml +33 -0
  1344. package/skills/mlops/inference/obliteratus/templates/analysis-study.yaml +40 -0
  1345. package/skills/mlops/inference/obliteratus/templates/batch-abliteration.yaml +41 -0
  1346. package/skills/mlops/inference/vllm/SKILL.md +372 -0
  1347. package/skills/mlops/inference/vllm/references/optimization.md +226 -0
  1348. package/skills/mlops/inference/vllm/references/quantization.md +284 -0
  1349. package/skills/mlops/inference/vllm/references/server-deployment.md +255 -0
  1350. package/skills/mlops/inference/vllm/references/troubleshooting.md +447 -0
  1351. package/skills/mlops/models/DESCRIPTION.md +3 -0
  1352. package/skills/mlops/models/audiocraft/SKILL.md +568 -0
  1353. package/skills/mlops/models/audiocraft/references/advanced-usage.md +666 -0
  1354. package/skills/mlops/models/audiocraft/references/troubleshooting.md +504 -0
  1355. package/skills/mlops/models/segment-anything/SKILL.md +506 -0
  1356. package/skills/mlops/models/segment-anything/references/advanced-usage.md +589 -0
  1357. package/skills/mlops/models/segment-anything/references/troubleshooting.md +484 -0
  1358. package/skills/mlops/research/DESCRIPTION.md +3 -0
  1359. package/skills/mlops/research/dspy/SKILL.md +594 -0
  1360. package/skills/mlops/research/dspy/references/examples.md +663 -0
  1361. package/skills/mlops/research/dspy/references/modules.md +475 -0
  1362. package/skills/mlops/research/dspy/references/optimizers.md +566 -0
  1363. package/skills/mlops/training/DESCRIPTION.md +3 -0
  1364. package/skills/mlops/vector-databases/DESCRIPTION.md +3 -0
  1365. package/skills/note-taking/DESCRIPTION.md +3 -0
  1366. package/skills/note-taking/obsidian/SKILL.md +61 -0
  1367. package/skills/productivity/DESCRIPTION.md +3 -0
  1368. package/skills/productivity/airtable/SKILL.md +229 -0
  1369. package/skills/productivity/google-workspace/SKILL.md +335 -0
  1370. package/skills/productivity/google-workspace/references/gmail-search-syntax.md +63 -0
  1371. package/skills/productivity/google-workspace/scripts/_hermes_home.py +43 -0
  1372. package/skills/productivity/google-workspace/scripts/google_api.py +1221 -0
  1373. package/skills/productivity/google-workspace/scripts/gws_bridge.py +108 -0
  1374. package/skills/productivity/google-workspace/scripts/setup.py +454 -0
  1375. package/skills/productivity/linear/SKILL.md +380 -0
  1376. package/skills/productivity/linear/scripts/linear_api.py +445 -0
  1377. package/skills/productivity/maps/SKILL.md +195 -0
  1378. package/skills/productivity/maps/scripts/maps_client.py +1298 -0
  1379. package/skills/productivity/nano-pdf/SKILL.md +52 -0
  1380. package/skills/productivity/notion/SKILL.md +448 -0
  1381. package/skills/productivity/notion/references/block-types.md +112 -0
  1382. package/skills/productivity/ocr-and-documents/DESCRIPTION.md +3 -0
  1383. package/skills/productivity/ocr-and-documents/SKILL.md +172 -0
  1384. package/skills/productivity/ocr-and-documents/scripts/extract_marker.py +87 -0
  1385. package/skills/productivity/ocr-and-documents/scripts/extract_pymupdf.py +98 -0
  1386. package/skills/productivity/powerpoint/LICENSE.txt +30 -0
  1387. package/skills/productivity/powerpoint/SKILL.md +237 -0
  1388. package/skills/productivity/powerpoint/editing.md +205 -0
  1389. package/skills/productivity/powerpoint/pptxgenjs.md +420 -0
  1390. package/skills/productivity/powerpoint/scripts/__init__.py +0 -0
  1391. package/skills/productivity/powerpoint/scripts/add_slide.py +195 -0
  1392. package/skills/productivity/powerpoint/scripts/clean.py +286 -0
  1393. package/skills/productivity/powerpoint/scripts/office/helpers/__init__.py +0 -0
  1394. package/skills/productivity/powerpoint/scripts/office/helpers/merge_runs.py +199 -0
  1395. package/skills/productivity/powerpoint/scripts/office/helpers/simplify_redlines.py +197 -0
  1396. package/skills/productivity/powerpoint/scripts/office/pack.py +159 -0
  1397. package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chart.xsd +1499 -0
  1398. package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/dml-chartDrawing.xsd +146 -0
  1399. package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/dml-diagram.xsd +1085 -0
  1400. package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/dml-lockedCanvas.xsd +11 -0
  1401. package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/dml-main.xsd +3081 -0
  1402. package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/dml-picture.xsd +23 -0
  1403. package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/dml-spreadsheetDrawing.xsd +185 -0
  1404. package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/dml-wordprocessingDrawing.xsd +287 -0
  1405. package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/pml.xsd +1676 -0
  1406. package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-additionalCharacteristics.xsd +28 -0
  1407. package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-bibliography.xsd +144 -0
  1408. package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-commonSimpleTypes.xsd +174 -0
  1409. package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlDataProperties.xsd +25 -0
  1410. package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-customXmlSchemaProperties.xsd +18 -0
  1411. package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesCustom.xsd +59 -0
  1412. package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesExtended.xsd +56 -0
  1413. package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-documentPropertiesVariantTypes.xsd +195 -0
  1414. package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-math.xsd +582 -0
  1415. package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/shared-relationshipReference.xsd +25 -0
  1416. package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/sml.xsd +4439 -0
  1417. package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/vml-main.xsd +570 -0
  1418. package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/vml-officeDrawing.xsd +509 -0
  1419. package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/vml-presentationDrawing.xsd +12 -0
  1420. package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/vml-spreadsheetDrawing.xsd +108 -0
  1421. package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/vml-wordprocessingDrawing.xsd +96 -0
  1422. package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/wml.xsd +3646 -0
  1423. package/skills/productivity/powerpoint/scripts/office/schemas/ISO-IEC29500-4_2016/xml.xsd +116 -0
  1424. package/skills/productivity/powerpoint/scripts/office/schemas/ecma/fourth-edition/opc-contentTypes.xsd +42 -0
  1425. package/skills/productivity/powerpoint/scripts/office/schemas/ecma/fourth-edition/opc-coreProperties.xsd +50 -0
  1426. package/skills/productivity/powerpoint/scripts/office/schemas/ecma/fourth-edition/opc-digSig.xsd +49 -0
  1427. package/skills/productivity/powerpoint/scripts/office/schemas/ecma/fourth-edition/opc-relationships.xsd +33 -0
  1428. package/skills/productivity/powerpoint/scripts/office/schemas/mce/mc.xsd +75 -0
  1429. package/skills/productivity/powerpoint/scripts/office/schemas/microsoft/wml-2010.xsd +560 -0
  1430. package/skills/productivity/powerpoint/scripts/office/schemas/microsoft/wml-2012.xsd +67 -0
  1431. package/skills/productivity/powerpoint/scripts/office/schemas/microsoft/wml-2018.xsd +14 -0
  1432. package/skills/productivity/powerpoint/scripts/office/schemas/microsoft/wml-cex-2018.xsd +20 -0
  1433. package/skills/productivity/powerpoint/scripts/office/schemas/microsoft/wml-cid-2016.xsd +13 -0
  1434. package/skills/productivity/powerpoint/scripts/office/schemas/microsoft/wml-sdtdatahash-2020.xsd +4 -0
  1435. package/skills/productivity/powerpoint/scripts/office/schemas/microsoft/wml-symex-2015.xsd +8 -0
  1436. package/skills/productivity/teams-meeting-pipeline/SKILL.md +116 -0
  1437. package/skills/red-teaming/godmode/SKILL.md +404 -0
  1438. package/skills/red-teaming/godmode/references/jailbreak-templates.md +128 -0
  1439. package/skills/red-teaming/godmode/references/refusal-detection.md +142 -0
  1440. package/skills/red-teaming/godmode/scripts/auto_jailbreak.py +769 -0
  1441. package/skills/red-teaming/godmode/scripts/godmode_race.py +530 -0
  1442. package/skills/red-teaming/godmode/scripts/load_godmode.py +45 -0
  1443. package/skills/red-teaming/godmode/scripts/parseltongue.py +550 -0
  1444. package/skills/red-teaming/godmode/templates/prefill-subtle.json +10 -0
  1445. package/skills/red-teaming/godmode/templates/prefill.json +18 -0
  1446. package/skills/research/DESCRIPTION.md +3 -0
  1447. package/skills/research/arxiv/SKILL.md +282 -0
  1448. package/skills/research/arxiv/scripts/search_arxiv.py +114 -0
  1449. package/skills/research/blogwatcher/SKILL.md +137 -0
  1450. package/skills/research/llm-wiki/SKILL.md +507 -0
  1451. package/skills/research/polymarket/SKILL.md +77 -0
  1452. package/skills/research/polymarket/references/api-endpoints.md +220 -0
  1453. package/skills/research/polymarket/scripts/polymarket.py +284 -0
  1454. package/skills/research/research-paper-writing/SKILL.md +2377 -0
  1455. package/skills/research/research-paper-writing/references/autoreason-methodology.md +394 -0
  1456. package/skills/research/research-paper-writing/references/checklists.md +434 -0
  1457. package/skills/research/research-paper-writing/references/citation-workflow.md +564 -0
  1458. package/skills/research/research-paper-writing/references/experiment-patterns.md +728 -0
  1459. package/skills/research/research-paper-writing/references/human-evaluation.md +476 -0
  1460. package/skills/research/research-paper-writing/references/paper-types.md +481 -0
  1461. package/skills/research/research-paper-writing/references/reviewer-guidelines.md +433 -0
  1462. package/skills/research/research-paper-writing/references/sources.md +191 -0
  1463. package/skills/research/research-paper-writing/references/writing-guide.md +474 -0
  1464. package/skills/research/research-paper-writing/templates/README.md +251 -0
  1465. package/skills/research/research-paper-writing/templates/aaai2026/README.md +534 -0
  1466. package/skills/research/research-paper-writing/templates/aaai2026/aaai2026-unified-supp.tex +144 -0
  1467. package/skills/research/research-paper-writing/templates/aaai2026/aaai2026-unified-template.tex +952 -0
  1468. package/skills/research/research-paper-writing/templates/aaai2026/aaai2026.bib +111 -0
  1469. package/skills/research/research-paper-writing/templates/aaai2026/aaai2026.bst +1493 -0
  1470. package/skills/research/research-paper-writing/templates/aaai2026/aaai2026.sty +315 -0
  1471. package/skills/research/research-paper-writing/templates/acl/README.md +50 -0
  1472. package/skills/research/research-paper-writing/templates/acl/acl.sty +312 -0
  1473. package/skills/research/research-paper-writing/templates/acl/acl_latex.tex +377 -0
  1474. package/skills/research/research-paper-writing/templates/acl/acl_lualatex.tex +101 -0
  1475. package/skills/research/research-paper-writing/templates/acl/acl_natbib.bst +1940 -0
  1476. package/skills/research/research-paper-writing/templates/acl/anthology.bib.txt +26 -0
  1477. package/skills/research/research-paper-writing/templates/acl/custom.bib +70 -0
  1478. package/skills/research/research-paper-writing/templates/acl/formatting.md +326 -0
  1479. package/skills/research/research-paper-writing/templates/colm2025/README.md +3 -0
  1480. package/skills/research/research-paper-writing/templates/colm2025/colm2025_conference.bib +11 -0
  1481. package/skills/research/research-paper-writing/templates/colm2025/colm2025_conference.bst +1440 -0
  1482. package/skills/research/research-paper-writing/templates/colm2025/colm2025_conference.pdf +0 -0
  1483. package/skills/research/research-paper-writing/templates/colm2025/colm2025_conference.sty +218 -0
  1484. package/skills/research/research-paper-writing/templates/colm2025/colm2025_conference.tex +305 -0
  1485. package/skills/research/research-paper-writing/templates/colm2025/fancyhdr.sty +485 -0
  1486. package/skills/research/research-paper-writing/templates/colm2025/math_commands.tex +508 -0
  1487. package/skills/research/research-paper-writing/templates/colm2025/natbib.sty +1246 -0
  1488. package/skills/research/research-paper-writing/templates/iclr2026/fancyhdr.sty +485 -0
  1489. package/skills/research/research-paper-writing/templates/iclr2026/iclr2026_conference.bib +24 -0
  1490. package/skills/research/research-paper-writing/templates/iclr2026/iclr2026_conference.bst +1440 -0
  1491. package/skills/research/research-paper-writing/templates/iclr2026/iclr2026_conference.pdf +0 -0
  1492. package/skills/research/research-paper-writing/templates/iclr2026/iclr2026_conference.sty +246 -0
  1493. package/skills/research/research-paper-writing/templates/iclr2026/iclr2026_conference.tex +414 -0
  1494. package/skills/research/research-paper-writing/templates/iclr2026/math_commands.tex +508 -0
  1495. package/skills/research/research-paper-writing/templates/iclr2026/natbib.sty +1246 -0
  1496. package/skills/research/research-paper-writing/templates/icml2026/algorithm.sty +79 -0
  1497. package/skills/research/research-paper-writing/templates/icml2026/algorithmic.sty +201 -0
  1498. package/skills/research/research-paper-writing/templates/icml2026/example_paper.bib +75 -0
  1499. package/skills/research/research-paper-writing/templates/icml2026/example_paper.pdf +0 -0
  1500. package/skills/research/research-paper-writing/templates/icml2026/example_paper.tex +662 -0
  1501. package/skills/research/research-paper-writing/templates/icml2026/fancyhdr.sty +864 -0
  1502. package/skills/research/research-paper-writing/templates/icml2026/icml2026.bst +1443 -0
  1503. package/skills/research/research-paper-writing/templates/icml2026/icml2026.sty +767 -0
  1504. package/skills/research/research-paper-writing/templates/icml2026/icml_numpapers.pdf +0 -0
  1505. package/skills/research/research-paper-writing/templates/neurips2025/Makefile +36 -0
  1506. package/skills/research/research-paper-writing/templates/neurips2025/extra_pkgs.tex +53 -0
  1507. package/skills/research/research-paper-writing/templates/neurips2025/main.tex +38 -0
  1508. package/skills/research/research-paper-writing/templates/neurips2025/neurips.sty +382 -0
  1509. package/skills/smart-home/DESCRIPTION.md +3 -0
  1510. package/skills/smart-home/openhue/SKILL.md +109 -0
  1511. package/skills/social-media/DESCRIPTION.md +3 -0
  1512. package/skills/social-media/xurl/SKILL.md +414 -0
  1513. package/skills/software-development/debugging-hermes-tui-commands/SKILL.md +152 -0
  1514. package/skills/software-development/hermes-agent-skill-authoring/SKILL.md +165 -0
  1515. package/skills/software-development/node-inspect-debugger/SKILL.md +319 -0
  1516. package/skills/software-development/plan/SKILL.md +58 -0
  1517. package/skills/software-development/python-debugpy/SKILL.md +375 -0
  1518. package/skills/software-development/requesting-code-review/SKILL.md +280 -0
  1519. package/skills/software-development/spike/SKILL.md +197 -0
  1520. package/skills/software-development/subagent-driven-development/SKILL.md +352 -0
  1521. package/skills/software-development/subagent-driven-development/references/context-budget-discipline.md +53 -0
  1522. package/skills/software-development/subagent-driven-development/references/gates-taxonomy.md +93 -0
  1523. package/skills/software-development/systematic-debugging/SKILL.md +367 -0
  1524. package/skills/software-development/test-driven-development/SKILL.md +343 -0
  1525. package/skills/software-development/writing-plans/SKILL.md +297 -0
  1526. package/skills/yuanbao/SKILL.md +108 -0
  1527. package/tools/__init__.py +25 -0
  1528. package/tools/__pycache__/__init__.cpython-312.pyc +0 -0
  1529. package/tools/__pycache__/approval.cpython-312.pyc +0 -0
  1530. package/tools/__pycache__/binary_extensions.cpython-312.pyc +0 -0
  1531. package/tools/__pycache__/browser_camofox.cpython-312.pyc +0 -0
  1532. package/tools/__pycache__/browser_camofox_state.cpython-312.pyc +0 -0
  1533. package/tools/__pycache__/browser_cdp_tool.cpython-312.pyc +0 -0
  1534. package/tools/__pycache__/browser_dialog_tool.cpython-312.pyc +0 -0
  1535. package/tools/__pycache__/browser_supervisor.cpython-312.pyc +0 -0
  1536. package/tools/__pycache__/browser_tool.cpython-312.pyc +0 -0
  1537. package/tools/__pycache__/budget_config.cpython-312.pyc +0 -0
  1538. package/tools/__pycache__/checkpoint_manager.cpython-312.pyc +0 -0
  1539. package/tools/__pycache__/clarify_gateway.cpython-312.pyc +0 -0
  1540. package/tools/__pycache__/clarify_tool.cpython-312.pyc +0 -0
  1541. package/tools/__pycache__/code_execution_tool.cpython-312.pyc +0 -0
  1542. package/tools/__pycache__/computer_use_tool.cpython-312.pyc +0 -0
  1543. package/tools/__pycache__/cronjob_tools.cpython-312.pyc +0 -0
  1544. package/tools/__pycache__/debug_helpers.cpython-312.pyc +0 -0
  1545. package/tools/__pycache__/delegate_tool.cpython-312.pyc +0 -0
  1546. package/tools/__pycache__/discord_tool.cpython-312.pyc +0 -0
  1547. package/tools/__pycache__/feishu_doc_tool.cpython-312.pyc +0 -0
  1548. package/tools/__pycache__/feishu_drive_tool.cpython-312.pyc +0 -0
  1549. package/tools/__pycache__/file_operations.cpython-312.pyc +0 -0
  1550. package/tools/__pycache__/file_state.cpython-312.pyc +0 -0
  1551. package/tools/__pycache__/file_tools.cpython-312.pyc +0 -0
  1552. package/tools/__pycache__/homeassistant_tool.cpython-312.pyc +0 -0
  1553. package/tools/__pycache__/image_generation_tool.cpython-312.pyc +0 -0
  1554. package/tools/__pycache__/interrupt.cpython-312.pyc +0 -0
  1555. package/tools/__pycache__/kanban_tools.cpython-312.pyc +0 -0
  1556. package/tools/__pycache__/lazy_deps.cpython-312.pyc +0 -0
  1557. package/tools/__pycache__/managed_tool_gateway.cpython-312.pyc +0 -0
  1558. package/tools/__pycache__/mcp_tool.cpython-312.pyc +0 -0
  1559. package/tools/__pycache__/memory_tool.cpython-312.pyc +0 -0
  1560. package/tools/__pycache__/mixture_of_agents_tool.cpython-312.pyc +0 -0
  1561. package/tools/__pycache__/openrouter_client.cpython-312.pyc +0 -0
  1562. package/tools/__pycache__/process_registry.cpython-312.pyc +0 -0
  1563. package/tools/__pycache__/registry.cpython-312.pyc +0 -0
  1564. package/tools/__pycache__/schema_sanitizer.cpython-312.pyc +0 -0
  1565. package/tools/__pycache__/send_message_tool.cpython-312.pyc +0 -0
  1566. package/tools/__pycache__/session_search_tool.cpython-312.pyc +0 -0
  1567. package/tools/__pycache__/skill_manager_tool.cpython-312.pyc +0 -0
  1568. package/tools/__pycache__/skill_provenance.cpython-312.pyc +0 -0
  1569. package/tools/__pycache__/skill_usage.cpython-312.pyc +0 -0
  1570. package/tools/__pycache__/skills_guard.cpython-312.pyc +0 -0
  1571. package/tools/__pycache__/skills_sync.cpython-312.pyc +0 -0
  1572. package/tools/__pycache__/skills_tool.cpython-312.pyc +0 -0
  1573. package/tools/__pycache__/slash_confirm.cpython-312.pyc +0 -0
  1574. package/tools/__pycache__/terminal_tool.cpython-312.pyc +0 -0
  1575. package/tools/__pycache__/tirith_security.cpython-312.pyc +0 -0
  1576. package/tools/__pycache__/todo_tool.cpython-312.pyc +0 -0
  1577. package/tools/__pycache__/tool_backend_helpers.cpython-312.pyc +0 -0
  1578. package/tools/__pycache__/tool_result_storage.cpython-312.pyc +0 -0
  1579. package/tools/__pycache__/tts_tool.cpython-312.pyc +0 -0
  1580. package/tools/__pycache__/url_safety.cpython-312.pyc +0 -0
  1581. package/tools/__pycache__/video_generation_tool.cpython-312.pyc +0 -0
  1582. package/tools/__pycache__/vision_tools.cpython-312.pyc +0 -0
  1583. package/tools/__pycache__/voice_mode.cpython-312.pyc +0 -0
  1584. package/tools/__pycache__/web_tools.cpython-312.pyc +0 -0
  1585. package/tools/__pycache__/website_policy.cpython-312.pyc +0 -0
  1586. package/tools/__pycache__/x_search_tool.cpython-312.pyc +0 -0
  1587. package/tools/__pycache__/xai_http.cpython-312.pyc +0 -0
  1588. package/tools/__pycache__/yuanbao_tools.cpython-312.pyc +0 -0
  1589. package/tools/ansi_strip.py +44 -0
  1590. package/tools/approval.py +1392 -0
  1591. package/tools/binary_extensions.py +42 -0
  1592. package/tools/browser_camofox.py +700 -0
  1593. package/tools/browser_camofox_state.py +48 -0
  1594. package/tools/browser_cdp_tool.py +569 -0
  1595. package/tools/browser_dialog_tool.py +148 -0
  1596. package/tools/browser_providers/__init__.py +10 -0
  1597. package/tools/browser_providers/__pycache__/__init__.cpython-312.pyc +0 -0
  1598. package/tools/browser_providers/__pycache__/base.cpython-312.pyc +0 -0
  1599. package/tools/browser_providers/__pycache__/browser_use.cpython-312.pyc +0 -0
  1600. package/tools/browser_providers/__pycache__/browserbase.cpython-312.pyc +0 -0
  1601. package/tools/browser_providers/__pycache__/firecrawl.cpython-312.pyc +0 -0
  1602. package/tools/browser_providers/base.py +59 -0
  1603. package/tools/browser_providers/browser_use.py +225 -0
  1604. package/tools/browser_providers/browserbase.py +222 -0
  1605. package/tools/browser_providers/firecrawl.py +112 -0
  1606. package/tools/browser_supervisor.py +1457 -0
  1607. package/tools/browser_tool.py +3676 -0
  1608. package/tools/budget_config.py +51 -0
  1609. package/tools/checkpoint_manager.py +1639 -0
  1610. package/tools/clarify_gateway.py +278 -0
  1611. package/tools/clarify_tool.py +141 -0
  1612. package/tools/code_execution_tool.py +1782 -0
  1613. package/tools/computer_use/__init__.py +43 -0
  1614. package/tools/computer_use/__pycache__/__init__.cpython-312.pyc +0 -0
  1615. package/tools/computer_use/__pycache__/backend.cpython-312.pyc +0 -0
  1616. package/tools/computer_use/__pycache__/schema.cpython-312.pyc +0 -0
  1617. package/tools/computer_use/__pycache__/tool.cpython-312.pyc +0 -0
  1618. package/tools/computer_use/backend.py +150 -0
  1619. package/tools/computer_use/cua_backend.py +682 -0
  1620. package/tools/computer_use/schema.py +191 -0
  1621. package/tools/computer_use/tool.py +521 -0
  1622. package/tools/computer_use_tool.py +39 -0
  1623. package/tools/credential_files.py +437 -0
  1624. package/tools/cronjob_tools.py +719 -0
  1625. package/tools/debug_helpers.py +106 -0
  1626. package/tools/delegate_tool.py +2797 -0
  1627. package/tools/discord_tool.py +959 -0
  1628. package/tools/env_passthrough.py +145 -0
  1629. package/tools/environments/__init__.py +14 -0
  1630. package/tools/environments/__pycache__/__init__.cpython-312.pyc +0 -0
  1631. package/tools/environments/__pycache__/base.cpython-312.pyc +0 -0
  1632. package/tools/environments/__pycache__/docker.cpython-312.pyc +0 -0
  1633. package/tools/environments/__pycache__/file_sync.cpython-312.pyc +0 -0
  1634. package/tools/environments/__pycache__/local.cpython-312.pyc +0 -0
  1635. package/tools/environments/__pycache__/managed_modal.cpython-312.pyc +0 -0
  1636. package/tools/environments/__pycache__/modal.cpython-312.pyc +0 -0
  1637. package/tools/environments/__pycache__/modal_utils.cpython-312.pyc +0 -0
  1638. package/tools/environments/__pycache__/singularity.cpython-312.pyc +0 -0
  1639. package/tools/environments/__pycache__/ssh.cpython-312.pyc +0 -0
  1640. package/tools/environments/base.py +844 -0
  1641. package/tools/environments/daytona.py +270 -0
  1642. package/tools/environments/docker.py +656 -0
  1643. package/tools/environments/file_sync.py +400 -0
  1644. package/tools/environments/local.py +658 -0
  1645. package/tools/environments/managed_modal.py +282 -0
  1646. package/tools/environments/modal.py +479 -0
  1647. package/tools/environments/modal_utils.py +199 -0
  1648. package/tools/environments/singularity.py +263 -0
  1649. package/tools/environments/ssh.py +295 -0
  1650. package/tools/environments/vercel_sandbox.py +655 -0
  1651. package/tools/feishu_doc_tool.py +138 -0
  1652. package/tools/feishu_drive_tool.py +431 -0
  1653. package/tools/file_operations.py +1825 -0
  1654. package/tools/file_state.py +332 -0
  1655. package/tools/file_tools.py +1172 -0
  1656. package/tools/fuzzy_match.py +703 -0
  1657. package/tools/homeassistant_tool.py +513 -0
  1658. package/tools/image_generation_tool.py +1098 -0
  1659. package/tools/interrupt.py +98 -0
  1660. package/tools/kanban_tools.py +1139 -0
  1661. package/tools/lazy_deps.py +608 -0
  1662. package/tools/managed_tool_gateway.py +168 -0
  1663. package/tools/mcp_oauth.py +633 -0
  1664. package/tools/mcp_oauth_manager.py +607 -0
  1665. package/tools/mcp_tool.py +3483 -0
  1666. package/tools/memory_tool.py +584 -0
  1667. package/tools/microsoft_graph_auth.py +245 -0
  1668. package/tools/microsoft_graph_client.py +408 -0
  1669. package/tools/mixture_of_agents_tool.py +542 -0
  1670. package/tools/neutts_samples/jo.txt +1 -0
  1671. package/tools/neutts_samples/jo.wav +0 -0
  1672. package/tools/neutts_synth.py +104 -0
  1673. package/tools/openrouter_client.py +33 -0
  1674. package/tools/osv_check.py +155 -0
  1675. package/tools/patch_parser.py +592 -0
  1676. package/tools/path_security.py +43 -0
  1677. package/tools/process_registry.py +1534 -0
  1678. package/tools/registry.py +589 -0
  1679. package/tools/schema_sanitizer.py +370 -0
  1680. package/tools/send_message_tool.py +1900 -0
  1681. package/tools/session_search_tool.py +613 -0
  1682. package/tools/skill_manager_tool.py +932 -0
  1683. package/tools/skill_provenance.py +78 -0
  1684. package/tools/skill_usage.py +610 -0
  1685. package/tools/skills_guard.py +932 -0
  1686. package/tools/skills_hub.py +3263 -0
  1687. package/tools/skills_sync.py +432 -0
  1688. package/tools/skills_tool.py +1569 -0
  1689. package/tools/slash_confirm.py +167 -0
  1690. package/tools/terminal_tool.py +2376 -0
  1691. package/tools/tirith_security.py +775 -0
  1692. package/tools/todo_tool.py +277 -0
  1693. package/tools/tool_backend_helpers.py +144 -0
  1694. package/tools/tool_output_limits.py +92 -0
  1695. package/tools/tool_result_storage.py +232 -0
  1696. package/tools/transcription_tools.py +936 -0
  1697. package/tools/tts_tool.py +2285 -0
  1698. package/tools/url_safety.py +330 -0
  1699. package/tools/video_generation_tool.py +561 -0
  1700. package/tools/vision_tools.py +1422 -0
  1701. package/tools/voice_mode.py +1019 -0
  1702. package/tools/web_tools.py +1551 -0
  1703. package/tools/website_policy.py +283 -0
  1704. package/tools/x_search_tool.py +424 -0
  1705. package/tools/xai_http.py +83 -0
  1706. package/tools/yuanbao_tools.py +736 -0
  1707. package/toolset_distributions.py +364 -0
  1708. package/toolsets.py +866 -0
  1709. package/trajectory_compressor.py +1509 -0
  1710. package/tui_gateway/__init__.py +0 -0
  1711. package/tui_gateway/entry.py +251 -0
  1712. package/tui_gateway/event_publisher.py +126 -0
  1713. package/tui_gateway/render.py +49 -0
  1714. package/tui_gateway/server.py +6623 -0
  1715. package/tui_gateway/slash_worker.py +76 -0
  1716. package/tui_gateway/transport.py +219 -0
  1717. package/tui_gateway/ws.py +178 -0
  1718. package/utils.py +361 -0
@@ -0,0 +1,1680 @@
1
+ #!/usr/bin/env python3
2
+ """Hermes Agent Release Script
3
+
4
+ Generates changelogs and creates GitHub releases with CalVer tags.
5
+
6
+ Usage:
7
+ # Preview changelog (dry run)
8
+ python scripts/release.py
9
+
10
+ # Preview with semver bump
11
+ python scripts/release.py --bump minor
12
+
13
+ # Create the release
14
+ python scripts/release.py --bump minor --publish
15
+
16
+ # First release (no previous tag)
17
+ python scripts/release.py --bump minor --publish --first-release
18
+
19
+ # Override CalVer date (e.g. for a belated release)
20
+ python scripts/release.py --bump minor --publish --date 2026.3.15
21
+ """
22
+
23
+ import argparse
24
+ import json
25
+ import re
26
+ import shutil
27
+ import subprocess
28
+ import sys
29
+ from collections import defaultdict
30
+ from datetime import datetime
31
+ from pathlib import Path
32
+
33
+ REPO_ROOT = Path(__file__).resolve().parent.parent
34
+ VERSION_FILE = REPO_ROOT / "hermes_cli" / "__init__.py"
35
+ PYPROJECT_FILE = REPO_ROOT / "pyproject.toml"
36
+
37
+ # ACP Registry manifest must stay version-locked with pyproject.toml.
38
+ # tests/acp/test_registry_manifest.py enforces this lockstep so the release
39
+ # bump touches both files atomically.
40
+ ACP_REGISTRY_MANIFEST = REPO_ROOT / "acp_registry" / "agent.json"
41
+
42
+ # ──────────────────────────────────────────────────────────────────────
43
+ # Git email → GitHub username mapping
44
+ # ──────────────────────────────────────────────────────────────────────
45
+
46
+ # Auto-extracted from noreply emails + manual overrides
47
+ AUTHOR_MAP = {
48
+ # teknium (multiple emails)
49
+ "teknium1@gmail.com": "teknium1",
50
+ "30366221+WorldWriter@users.noreply.github.com": "WorldWriter",
51
+ "dafeng@DafengdeMacBook-Pro.local": "WorldWriter",
52
+ "anadi.jaggia@gmail.com": "Jaggia",
53
+ "32201324+simpolism@users.noreply.github.com": "simpolism",
54
+ "simpolism@gmail.com": "simpolism",
55
+ "jake@nousresearch.com": "simpolism",
56
+ "mgongzai@gmail.com": "vKongv",
57
+ "0x.badfriend@gmail.com": "discodirector",
58
+ "altriatree@gmail.com": "TruaShamu",
59
+ "m@mobrienv.dev": "mikeyobrien",
60
+ "qiyin.zuo@pcitc.com": "qiyin-code",
61
+ "mr.aashiz@gmail.com": "aashizpoudel",
62
+ "70629228+shaun0927@users.noreply.github.com": "shaun0927",
63
+ "98262967+Bihruze@users.noreply.github.com": "Bihruze",
64
+ "nidhi2894@gmail.com": "nidhi-singh02",
65
+ "30312689+aashizpoudel@users.noreply.github.com": "aashizpoudel",
66
+ "oleksii.lisikh@gmail.com": "olisikh",
67
+ "jithendranaidunara@gmail.com": "JithendraNara",
68
+ "jeremy@geocaching.com": "outdoorsea",
69
+ "leone.parise@gmail.com": "leoneparise",
70
+ "mr@shu.io": "mrshu",
71
+ "adam.manning@gmail.com": "am423",
72
+ "buraysandro9@gmail.com": "ygd58",
73
+ "108427749+buntingszn@users.noreply.github.com": "buntingszn",
74
+ "yanglongwei06@gmail.com": "Alex-yang00",
75
+ "teknium@nousresearch.com": "teknium1",
76
+ "piyushvp1@gmail.com": "thelumiereguy",
77
+ "421774554@qq.com": "wuli666",
78
+ "twebefy@gmail.com": "tw2818",
79
+ "harish.kukreja@gmail.com": "counterposition",
80
+ "korkyzer@gmail.com": "Korkyzer",
81
+ "1046611633@qq.com": "zhengyn0001",
82
+ "1095245867@qq.com": "littlewwwhite",
83
+ "db@project-aeon.com": "db-aeon",
84
+ "ahmed@abadr.net": "ahmedbadr3",
85
+ "63822243+CoinTheHat@users.noreply.github.com": "CoinTheHat",
86
+ "cleo@edaphic.xyz": "curiouscleo",
87
+ "hirokazu.ogawa@kwansei.ac.jp": "hrkzogw",
88
+ "datapod.k@gmail.com": "dandacompany",
89
+ "treydong.zh@gmail.com": "TreyDong",
90
+ "phil.thomas@gametime.co": "explainanalyze",
91
+ "kyanam.preetham@gmail.com": "pkyanam",
92
+ "zhizhong.xu@shopee.com": "1000Delta",
93
+ "30397170+1000Delta@users.noreply.github.com": "1000Delta",
94
+ "szymonclawd@mac.home": "szymonclawd",
95
+ "257759490+szymonclawd@users.noreply.github.com": "szymonclawd",
96
+ "101180447+worlldz@users.noreply.github.com": "worlldz",
97
+ "zhanganzhe@tenclass.com": "luoyuctl",
98
+ "51604064+luoyuctl@users.noreply.github.com": "luoyuctl",
99
+ "127238744+teknium1@users.noreply.github.com": "teknium1",
100
+ "tolle.lege+github@gmail.com": "InB4DevOps",
101
+ "73686890+InB4DevOps@users.noreply.github.com": "InB4DevOps",
102
+ "147827411+EloquentBrush@users.noreply.github.com": "AhmetArif0",
103
+ "97489706+purzbeats@users.noreply.github.com": "purzbeats",
104
+ "hugosequier@gmail.com": "Hugo-SEQUIER",
105
+ "128259593+Gutslabs@users.noreply.github.com": "Gutslabs",
106
+ "50326054+nocturnum91@users.noreply.github.com": "nocturnum91",
107
+ "223003280+Abd0r@users.noreply.github.com": "Abd0r",
108
+ "HuangYuChuh@users.noreply.github.com": "HuangYuChuh",
109
+ "aaronwong1989@gmail.com": "hrygo",
110
+ "26729613+hrygo@users.noreply.github.com": "hrygo",
111
+ "erenkar950@gmail.com": "eren-karakus0",
112
+ "aubrey@freeman-wisco.com": "Freeman-Consulting",
113
+ "don.rhm@gmail.com": "rahimsais",
114
+ "40222899+rahimsais@users.noreply.github.com": "rahimsais",
115
+ "alfred@Alfreds-Mac-mini.local": "NivOO5",
116
+ "231191380+NivOO5@users.noreply.github.com": "NivOO5",
117
+ "jameshuang@gmail.com": "kjames2001",
118
+ "62420081+kjames2001@users.noreply.github.com": "kjames2001",
119
+ "132184373+wilsen0@users.noreply.github.com": "wilsen0",
120
+ "ra2157218@gmail.com": "Abd0r",
121
+ "oswaldb22@users.noreply.github.com": "oswaldb22",
122
+ "abdielv@proton.me": "AJV20",
123
+ "mason@growagainorchids.com": "masonjames",
124
+ "108541149+amethystani@users.noreply.github.com": "amethystani",
125
+ "ytchen0719@gmail.com": "liquidchen",
126
+ "am@studio1.tailb672fe.ts.net": "subtract0",
127
+ "mike@grossmann.at": "ReqX",
128
+ "axmaiqiu@gmail.com": "qWaitCrypto",
129
+ "44045911+kidonng@users.noreply.github.com": "kidonng",
130
+ "daniellsmarta@gmail.com": "DanielLSM",
131
+ "264291321+v1b3coder@users.noreply.github.com": "v1b3coder",
132
+ "silverchris@foxmail.com": "ming1523",
133
+ "maksesipov@gmail.com": "Qwinty",
134
+ "denisamania@gmail.com": "CalmProton",
135
+ "308068+mbac@users.noreply.github.com": "mbac",
136
+ "nicoechaniz@altermundi.net": "nicoechaniz",
137
+ "ninso112@proton.me": "Ninso112",
138
+ "wesleysimplicio@live.com": "wesleysimplicio",
139
+ "matthew.dean.cater@gmail.com": "SiliconID",
140
+ "xieniu@proton.me": "xieNniu",
141
+ "rw8143a@american.edu": "wali-reheman",
142
+ "egitimviscara@gmail.com": "uzunkuyruk",
143
+ "zhekinmaksim@gmail.com": "Zhekinmaksim",
144
+ "obafemiferanmi1999@gmail.com": "KvnGz",
145
+ "159539633+MottledShadow@users.noreply.github.com": "MottledShadow",
146
+ "aludwin+gh@gmail.com": "adamludwin",
147
+ "ngusev@astralinux.ru": "NikolayGusev-astra",
148
+ "liuguangyong201@hellobike.com": "liuguangyong93",
149
+ "2093036+exiao@users.noreply.github.com": "exiao",
150
+ "20nik.nosov21@gmail.com": "nik1t7n",
151
+ "thunderggnn@gmail.com": "ggnnggez",
152
+ "haozhe4547@gmail.com": "ehz0ah",
153
+ "kevyan1998@gmail.com": "kyan12",
154
+ "rylen.anil@gmail.com": "rylena",
155
+ "godnanijatin@gmail.com": "jatingodnani",
156
+ "252811164+adybag14-cyber@users.noreply.github.com": "adybag14-cyber",
157
+ "14046872+tmimmanuel@users.noreply.github.com": "tmimmanuel",
158
+ "112875006+donramon77@users.noreply.github.com": "donramon77",
159
+ "657290301@qq.com": "IMHaoyan",
160
+ "revar@users.noreply.github.com": "revaraver",
161
+ "dengtaoyuan@dengtaoyuandeMac-mini.local": "dengtaoyuan450-a11y",
162
+ "ysfalweshcan@gmail.com": "Junass1",
163
+ "bartokmagic@proton.me": "Bartok9",
164
+ "androidhtml@yandex.com": "hllqkb",
165
+ "25840394+Bongulielmi@users.noreply.github.com": "Bongulielmi",
166
+ "jonathan.troyer@overmatch.com": "JTroyerOvermatch",
167
+ "harryykyle1@gmail.com": "hharry11",
168
+ "wysie@users.noreply.github.com": "wysie",
169
+ "jkausel@gmail.com": "jkausel-ai",
170
+ "e.silacandmr@gmail.com": "Es1la",
171
+ "51599529+stephen0110@users.noreply.github.com": "stephen0110",
172
+ "265632032+sonic-netizen@users.noreply.github.com": "sonic-netizen",
173
+ "82531659+mwnickerson@users.noreply.github.com": "mwnickerson",
174
+ "sandrohub013@gmail.com": "SandroHub013",
175
+ "maciekczech@users.noreply.github.com": "maciekczech",
176
+ "154585401+LeonSGP43@users.noreply.github.com": "LeonSGP43",
177
+ "cine.dreamer.one@gmail.com": "LeonSGP43",
178
+ "zjtan1@gmail.com": "zeejaytan",
179
+ "asslaenn5@gmail.com": "Aslaaen",
180
+ "trae.anderson17@icloud.com": "Tkander1715",
181
+ "beardthelion@users.noreply.github.com": "beardthelion",
182
+ "tangyuanjc@JCdeAIfenshendeMac-mini.local": "tangyuanjc",
183
+ "leon@agentlinker.ai": "agentlinker",
184
+ "santoshhumagain1887@gmail.com": "npmisantosh",
185
+ "39641663+luarss@users.noreply.github.com": "luarss",
186
+ "16263913+zccyman@users.noreply.github.com": "zccyman",
187
+ "ahmetosrak@Ahmet-MacBook-Air.local": "Osraka",
188
+ "98612432+Osraka@users.noreply.github.com": "Osraka",
189
+ "112634774+ryptotalent@users.noreply.github.com": "ryptotalent",
190
+ "270097726+hookinglau@users.noreply.github.com": "hookinglau",
191
+ "5029547+AllynSheep@users.noreply.github.com": "AllynSheep",
192
+ "allyn0306@gmail.com": "AllynSheep",
193
+ "46887634+aqilaziz@users.noreply.github.com": "aqilaziz",
194
+ "gonzes7@gmail.com": "aqilaziz",
195
+ "6966326+laoli-no1@users.noreply.github.com": "laoli-no1",
196
+ "laoli_no1@163.com": "laoli-no1",
197
+ "39730900+NorethSea@users.noreply.github.com": "NorethSea",
198
+ "963979204@qq.com": "NorethSea",
199
+ "2283389+JamesX88@users.noreply.github.com": "JamesX88",
200
+ "JamesX88@users.noreply.github.com": "JamesX88",
201
+ "novax635@gmail.com": "novax635",
202
+ "krionex1@gmail.com": "Krionex",
203
+ "rxdxxxx@users.noreply.github.com": "rxdxxxx",
204
+ "ma.haohao2@xydigit.com": "MaHaoHao-ch",
205
+ "29756950+revaraver@users.noreply.github.com": "revaraver",
206
+ "nexus@eptic.me": "TheEpTic",
207
+ "74554762+wmagev@users.noreply.github.com": "wmagev",
208
+ "ashermorse@icloud.com": "ashermorse",
209
+ "happy5318@users.noreply.github.com": "happy5318",
210
+ "anatoliygranichenko@gmail.com": "wabrent",
211
+ "cash.williams@acquia.com": "CashWilliams",
212
+ "chengoak@users.noreply.github.com": "chengoak",
213
+ "mrhanoi@outlook.com": "qxxaa",
214
+ "guillaume.meyer@outlook.com": "guillaumemeyer",
215
+ "emelyanenko.kirill@gmail.com": "EmelyanenkoK",
216
+ "lazycat.manatee@gmail.com": "manateelazycat",
217
+ "bzarnitz13@gmail.com": "Beandon13",
218
+ "tony@tonysimons.dev": "asimons81",
219
+ "jetha@google.com": "jethac",
220
+ "jani@0xhoneyjar.xyz": "deep-name",
221
+ # LINE messaging plugin (synthesis PR)
222
+ "32443648+leepoweii@users.noreply.github.com": "leepoweii",
223
+ "openclaw@liyangchen.me": "liyoungc",
224
+ "charles@perng.com": "perng",
225
+ "soichiro0111.dev@gmail.com": "soichiyo",
226
+ "0xde@pieverse.io": "David-0x221Eight",
227
+ "77736378+David-0x221Eight@users.noreply.github.com": "David-0x221Eight",
228
+ "74749461+yuga-hashimoto@users.noreply.github.com": "yuga-hashimoto",
229
+ "xiangyong@zspace.cn": "CES4751",
230
+ "harish.kukreja@gmail.com": "counterposition",
231
+ "nidhi2894@gmail.com": "nidhi-singh02",
232
+ "35294173+Fearvox@users.noreply.github.com": "Fearvox",
233
+ "hypnus.yuan@gmail.com": "Hypnus-Yuan",
234
+ "15558128926@qq.com": "xsfX20",
235
+ "binhnt.ht.92@gmail.com": "binhnt92",
236
+ "johnny@Jons-MBA-M4.local": "acesjohnny",
237
+ "1581133593@qq.com": "liu-collab",
238
+ "haidaoe@proton.me": "haidao1919",
239
+ "50561768+zhanggttry@users.noreply.github.com": "zhanggttry",
240
+ "formulahendry@gmail.com": "formulahendry",
241
+ "93757150+bogerman1@users.noreply.github.com": "bogerman1",
242
+ "132852777+rob-maron@users.noreply.github.com": "rob-maron",
243
+ # Matrix parity salvage batch (April 2026)
244
+ "sr@samirusani": "samrusani",
245
+ "angelclaw@AngelMacBook.local": "angel12",
246
+ "charles@cryptoassetrecovery.com": "charles-brooks",
247
+ # DeepSeek v4 + Kimi thinking-mode reasoning_content salvage (April 2026)
248
+ "luwinyang@deepseek.com": "lsdsjy",
249
+ "season.saw@gmail.com": "season179",
250
+ "heathley@Heathley-MacBook-Air.local": "heathley",
251
+ "maliyldzhn@gmail.com": "heathley",
252
+ "vlad19@gmail.com": "dandaka",
253
+ "adamrummer@gmail.com": "cyclingwithelephants",
254
+ # Temporary tool-progress cleanup salvage (May 2026)
255
+ "Mrcharlesiv@gmail.com": "mrcharlesiv",
256
+ "nbot@liizfq.top": "liizfq",
257
+ "274096618+hermes-agent-dhabibi@users.noreply.github.com": "dhabibi",
258
+ "dejie.guo@gmail.com": "JayGwod",
259
+ "133716830+0xKingBack@users.noreply.github.com": "0xKingBack",
260
+ "daixin1204@gmail.com": "SimbaKingjoe",
261
+ "maxence@groine.fr": "MaxyMoos",
262
+ "61830395+leprincep35700@users.noreply.github.com": "leprincep35700",
263
+ # OpenViking viking_read salvage (April 2026)
264
+ "hitesh@gmail.com": "htsh",
265
+ "pty819@outlook.com": "pty819",
266
+ "pty819@users.noreply.github.com": "pty819",
267
+ "14341805+pty819@users.noreply.github.com": "pty819",
268
+ "517024110@qq.com": "chennest",
269
+ # Curator fixes (Apr 30 2026)
270
+ "yuxiangl490@gmail.com": "y0shua1ee",
271
+ "manmit0x@gmail.com": "0xDevNinja",
272
+ "stevekelly622@gmail.com": "steezkelly",
273
+ "brian@dralth.com": "btorresgil",
274
+ "momowind@gmail.com": "momowind",
275
+ "clockwork-codex@users.noreply.github.com": "misery-hl",
276
+ "207811921+misery-hl@users.noreply.github.com": "misery-hl",
277
+ "20nik.nosov21@gmail.com": "nik1t7n",
278
+ "90299797+nik1t7n@users.noreply.github.com": "nik1t7n",
279
+ "suncokret@protonmail.com": "suncokret12",
280
+ "mio.imoto.ai@gmail.com": "mioimotoai-lgtm",
281
+ "aamirjawaid@microsoft.com": "heyitsaamir",
282
+ "johnnncenaaa77@gmail.com": "johnncenae",
283
+ "thomasjhon6666@gmail.com": "ThomassJonax",
284
+ "focusflow.app.help@gmail.com": "yes999zc",
285
+ "rob@atlas.lan": "rmoen",
286
+ # Slack ephemeral slash-ack salvage (May 2026)
287
+ "probepark@users.noreply.github.com": "probepark",
288
+ # Slack batch salvage (May 2026)
289
+ "280484231+prive-fe-bot@users.noreply.github.com": "priveperfumes",
290
+ "amr@ghanem.sa": "amroessam",
291
+ "paperlantern.agent@gmail.com": "Hinotoi-agent",
292
+ "valda@underscore.jp": "valda",
293
+ "162235745+0z1-ghb@users.noreply.github.com": "0z1-ghb",
294
+ "yes999zc@163.com": "yes999zc",
295
+ "343873859@qq.com": "DrStrangerUJN",
296
+ "252818347@qq.com": "hejuntt1014",
297
+ "uzmpsk.dilekakbas@gmail.com": "dlkakbs",
298
+ "beliefanx@gmail.com": "BeliefanX",
299
+ "changchun989@proton.me": "changchun989",
300
+ "jefferson@heimdallstrategy.com": "Mind-Dragon",
301
+ "44753291+Nanako0129@users.noreply.github.com": "Nanako0129",
302
+ "steve.westerhouse@origami-analytics.com": "westers",
303
+ "yeyitech@users.noreply.github.com": "yeyitech",
304
+ "260878550+beenherebefore@users.noreply.github.com": "beenherebefore",
305
+ "79389617+txbxxx@users.noreply.github.com": "txbxxx",
306
+ "liuhao03@bilibili.com": "liuhao1024",
307
+ "130918800+devorun@users.noreply.github.com": "devorun",
308
+ "surat.s@itm.kmutnb.ac.th": "beesrsj2500",
309
+ "beesr@bee.localdomain": "beesrsj2500",
310
+ "mind-dragon@nous.research": "Mind-Dragon",
311
+ "juntingpublic@gmail.com": "JustinUssuri",
312
+ "mtf201013@gmail.com": "ma-pony",
313
+ "sonoyuncudmr@gmail.com": "Sonoyunchu",
314
+ "43525405+yatesjalex@users.noreply.github.com": "yatesjalex",
315
+ "maks.mir@yahoo.com": "say8hi",
316
+ "27719690+Mirac1eSky@users.noreply.github.com": "Mirac1eSky",
317
+ "web3blind@users.noreply.github.com": "web3blind",
318
+ "julia@alexland.us": "alexg0bot",
319
+ "christian@scheid.tech": "scheidti",
320
+ # Moonshot schema anyOf+enum salvage (May 2026)
321
+ "git@local.invalid": "hendrixfreire",
322
+ "1060770+benjaminsehl@users.noreply.github.com": "benjaminsehl",
323
+ "nerijusn76@gmail.com": "Nerijusas",
324
+ # Compaction salvage batch (May 2026)
325
+ "MacroAnarchy@users.noreply.github.com": "MacroAnarchy",
326
+ "itonov@proton.me": "Ito-69",
327
+ "glesstech@gmail.com": "georgeglessner",
328
+ "maxim.smetanin@gmail.com": "maxims-oss",
329
+ # Codex Spark restoration salvage (May 2026)
330
+ "olegwn@gmail.com": "nederev",
331
+ "vesper@askclaw.dev": "askclaw-vesper",
332
+ "nazirulhafiy@gmail.com": "nazirulhafiy",
333
+ "CREWorx@users.noreply.github.com": "BadTechBandit",
334
+ "yoimexex@gmail.com": "Yoimex",
335
+ "6548898+romanornr@users.noreply.github.com": "romanornr",
336
+ "foxion37@gmail.com": "foxion37",
337
+ "bloodcarter@gmail.com": "bloodcarter",
338
+ "scott@scotttrinh.com": "scotttrinh",
339
+ "quocanh261997@gmail.com": "quocanh261997",
340
+ # contributors (from noreply pattern)
341
+ "david.vv@icloud.com": "davidvv",
342
+ "wangqiang@wangqiangdeMac-mini.local": "xiaoqiang243",
343
+ "snreynolds2506@gmail.com": "snreynolds",
344
+ "35742124+0xbyt4@users.noreply.github.com": "0xbyt4",
345
+ "71184274+MassiveMassimo@users.noreply.github.com": "MassiveMassimo",
346
+ "massivemassimo@users.noreply.github.com": "MassiveMassimo",
347
+ "82637225+kshitijk4poor@users.noreply.github.com": "kshitijk4poor",
348
+ "keifergu@tencent.com": "keifergu",
349
+ "kshitijk4poor@users.noreply.github.com": "kshitijk4poor",
350
+ "SHL0MS@users.noreply.github.com": "SHL0MS",
351
+ "abner.the.foreman@agentmail.to": "Abnertheforeman",
352
+ "adam.manning@pro-serveinc.com": "amanning3390",
353
+ "thomasgeorgevii09@gmail.com": "tochukwuada",
354
+ "sb@wmc.sh": "zicochaos",
355
+ "harryykyle1@gmail.com": "hharry11",
356
+ "kshitijk4poor@gmail.com": "kshitijk4poor",
357
+ "1294707+Tosko4@users.noreply.github.com": "Tosko4",
358
+ "keira.voss94@gmail.com": "keiravoss94",
359
+ "16443023+stablegenius49@users.noreply.github.com": "stablegenius49",
360
+ "fqsy1416@gmail.com": "EKKOLearnAI",
361
+ "octo-patch@github.com": "octo-patch",
362
+ "math0r-be@github.com": "math0r-be",
363
+ "simbamax99@gmail.com": "simbam99",
364
+ "iris@growthpillars.co": "irispillars",
365
+ "185121704+stablegenius49@users.noreply.github.com": "stablegenius49",
366
+ "101283333+batuhankocyigit@users.noreply.github.com": "batuhankocyigit",
367
+ "255305877+ismell0992-afk@users.noreply.github.com": "ismell0992-afk",
368
+ "cyprian@ironin.pl": "iRonin",
369
+ "valdi.jorge@gmail.com": "jvcl",
370
+ "q19dcp@gmail.com": "aj-nt",
371
+ "ebukau84@gmail.com": "UgwujaGeorge",
372
+ "francip@gmail.com": "francip",
373
+ "omni@comelse.com": "omnissiah-comelse",
374
+ "oussama.redcode@gmail.com": "mavrickdeveloper",
375
+ "126368201+vilkasdev@users.noreply.github.com": "vilkasdev",
376
+ "137614867+cutepawss@users.noreply.github.com": "cutepawss",
377
+ "96793918+memosr@users.noreply.github.com": "memosr",
378
+ "mehmet.sr35@gmail.com": "memosr",
379
+ "milkoor@users.noreply.github.com": "milkoor",
380
+ "xuerui911@gmail.com": "Fatty911",
381
+ "131039422+SHL0MS@users.noreply.github.com": "SHL0MS",
382
+ "77628552+raulvidis@users.noreply.github.com": "raulvidis",
383
+ "145567217+Aum08Desai@users.noreply.github.com": "Aum08Desai",
384
+ "256820943+kshitij-eliza@users.noreply.github.com": "kshitij-eliza",
385
+ "jiechengwu@pony.ai": "Jason2031",
386
+ "44278268+shitcoinsherpa@users.noreply.github.com": "shitcoinsherpa",
387
+ "104278804+Sertug17@users.noreply.github.com": "Sertug17",
388
+ "112503481+caentzminger@users.noreply.github.com": "caentzminger",
389
+ "258577966+voidborne-d@users.noreply.github.com": "voidborne-d",
390
+ "3820588+ddupont808@users.noreply.github.com": "ddupont808",
391
+ "liusway405@gmail.com": "voidborne-d",
392
+ "xydarcher@uestc.edu.cn": "Readon",
393
+ "sir_even@icloud.com": "sirEven",
394
+ "36056348+sirEven@users.noreply.github.com": "sirEven",
395
+ "70424851+insecurejezza@users.noreply.github.com": "insecurejezza",
396
+ "jezzahehn@gmail.com": "JezzaHehn",
397
+ "barnacleboy.jezzahehn@agentmail.to": "JezzaHehn",
398
+ "254021826+dodo-reach@users.noreply.github.com": "dodo-reach",
399
+ "259807879+Bartok9@users.noreply.github.com": "Bartok9",
400
+ "270082434+crayfish-ai@users.noreply.github.com": "crayfish-ai",
401
+ "241404605+MestreY0d4-Uninter@users.noreply.github.com": "MestreY0d4-Uninter",
402
+ "268667990+Roy-oss1@users.noreply.github.com": "Roy-oss1",
403
+ "27917469+nosleepcassette@users.noreply.github.com": "nosleepcassette",
404
+ "241404605+MestreY0d4-Uninter@users.noreply.github.com": "MestreY0d4-Uninter",
405
+ "109555139+davetist@users.noreply.github.com": "davetist",
406
+ "39405770+yyq4193@users.noreply.github.com": "yyq4193",
407
+ "Asunfly@users.noreply.github.com": "Asunfly",
408
+ "2500400+honghua@users.noreply.github.com": "honghua",
409
+ "462836+jplew@users.noreply.github.com": "jplew",
410
+ "nish3451@users.noreply.github.com": "nish3451",
411
+ "Mibayy@users.noreply.github.com": "Mibayy",
412
+ "mibayy@users.noreply.github.com": "Mibayy",
413
+ "mibay@clawhub.io": "Mibayy",
414
+ "louismichalot@hotmail.com": "Mibayy",
415
+ "135070653+sgaofen@users.noreply.github.com": "sgaofen",
416
+ "lzy.dev@gmail.com": "zhiyanliu",
417
+ "me@janstepanovsky.cz": "hhhonzik",
418
+ "139848623+hhuang91@users.noreply.github.com": "hhuang91",
419
+ "s.ozaki@ebinou.net": "Satoshi-agi",
420
+ "10774721+kunlabs@users.noreply.github.com": "kunlabs",
421
+ "110560187+Wang-tianhao@users.noreply.github.com": "Wang-tianhao",
422
+ "170458616+ghostmfr@users.noreply.github.com": "ghostmfr",
423
+ "1848670+mewwts@users.noreply.github.com": "mewwts",
424
+ "1930707+haru398801@users.noreply.github.com": "haru398801",
425
+ "rapabelias@gmail.com": "badgerbees",
426
+ "xnb888@proton.me": "xnbi",
427
+ "xiahu889889@proton.me": "xiahu88988",
428
+ "nocoo@users.noreply.github.com": "nocoo",
429
+ "30841158+n-WN@users.noreply.github.com": "n-WN",
430
+ "tsuijinglei@gmail.com": "hiddenpuppy",
431
+ "buraysandro9@gmail.com": "ygd58",
432
+ "jerome@clawwork.ai": "HiddenPuppy",
433
+ "jerome.benoit@sap.com": "jerome-benoit",
434
+ "wysie@users.noreply.github.com": "Wysie",
435
+ "leoyuan0099@gmail.com": "keyuyuan",
436
+ "bxzt2006@163.com": "Only-Code-A",
437
+ "i@troy-y.org": "TroyMitchell911",
438
+ "mygamez@163.com": "zhongyueming1121",
439
+ "hansnow@users.noreply.github.com": "hansnow",
440
+ "134848055+UNLINEARITY@users.noreply.github.com": "UNLINEARITY",
441
+ "ben.burtenshaw@gmail.com": "burtenshaw",
442
+ "roopaknijhara@gmail.com": "rnijhara",
443
+ "josephzcan@gmail.com": "j0sephz",
444
+ # contributors (manual mapping from git names)
445
+ "ahmedsherif95@gmail.com": "asheriif",
446
+ "dyxushuai@gmail.com": "dyxushuai",
447
+ "33860762+etcircle@users.noreply.github.com": "etcircle",
448
+ "liujinkun@bytedance.com": "liujinkun2025",
449
+ "dmayhem93@gmail.com": "dmahan93",
450
+ "fr@tecompanytea.com": "ifrederico",
451
+ "cdanis@gmail.com": "cdanis",
452
+ "samherring99@gmail.com": "samherring99",
453
+ "desaiaum08@gmail.com": "Aum08Desai",
454
+ "shannon.sands.1979@gmail.com": "shannonsands",
455
+ "shannon@nousresearch.com": "shannonsands",
456
+ "abdi.moya@gmail.com": "AxDSan",
457
+ "eri@plasticlabs.ai": "Erosika",
458
+ "hjcpuro@gmail.com": "hjc-puro",
459
+ "xaydinoktay@gmail.com": "aydnOktay",
460
+ "abdullahfarukozden@gmail.com": "Farukest",
461
+ "lovre.pesut@gmail.com": "rovle",
462
+ "xjtumj@gmail.com": "mengjian-github",
463
+ "kevinskysunny@gmail.com": "kevinskysunny",
464
+ "xiewenxuan462@gmail.com": "yule975",
465
+ "yiweimeng.dlut@hotmail.com": "meng93",
466
+ "hakanerten02@hotmail.com": "teyrebaz33",
467
+ "linux2010@users.noreply.github.com": "Linux2010",
468
+ "elmatadorgh@users.noreply.github.com": "elmatadorgh",
469
+ "coktinbaran5@gmail.com": "elmatadorgh",
470
+ "alexazzjjtt@163.com": "alexzhu0",
471
+ "1180176+Swift42@users.noreply.github.com": "Swift42",
472
+ "ruzzgarcn@gmail.com": "Ruzzgar",
473
+ "yukipukikedy@gmail.com": "Yukipukii1",
474
+ "alireza78.crypto@gmail.com": "alireza78a",
475
+ "brooklyn.bb.nicholson@gmail.com": "brooklynnicholson",
476
+ "withapurpose37@gmail.com": "StefanIsMe",
477
+ "4317663+helix4u@users.noreply.github.com": "helix4u",
478
+ "ifkellx@users.noreply.github.com": "Ifkellx",
479
+ "331214+counterposition@users.noreply.github.com": "counterposition",
480
+ "blspear@gmail.com": "BrennerSpear",
481
+ "akhater@gmail.com": "akhater",
482
+ "Cos_Admin@PTG-COS.lodluvup4uaudnm3ycd14giyug.xx.internal.cloudapp.net": "akhater",
483
+ "239876380+handsdiff@users.noreply.github.com": "handsdiff",
484
+ "hesapacicam112@gmail.com": "etherman-os",
485
+ "mark.ramsell@rivermounts.com": "mark-ramsell",
486
+ "taeng02@icloud.com": "taeng0204",
487
+ "gpickett00@gmail.com": "gpickett00",
488
+ "mcosma@gmail.com": "wakamex",
489
+ "clawdia.nash@proton.me": "clawdia-nash",
490
+ "pickett.austin@gmail.com": "austinpickett",
491
+ "dangtc94@gmail.com": "dieutx",
492
+ "jaisehgal11299@gmail.com": "jaisup",
493
+ "percydikec@gmail.com": "PercyDikec",
494
+ "noonou7@gmail.com": "HenkDz",
495
+ # Azure Foundry salvage (PRs #9029, #4599, #10086, #8766)
496
+ "tech@smartlogics.net": "TechPrototyper",
497
+ "637186+HangGlidersRule@users.noreply.github.com": "HangGlidersRule",
498
+ "pein892@gmail.com": "pein892",
499
+ "dean.kerr@gmail.com": "deankerr",
500
+ "socrates1024@gmail.com": "socrates1024",
501
+ "seanalt555@gmail.com": "Salt-555",
502
+ "satelerd@gmail.com": "satelerd",
503
+ "dan@danlynn.com": "danklynn",
504
+ "mattmaximo@hotmail.com": "MattMaximo",
505
+ "MatthewRHardwick@gmail.com": "mrhwick",
506
+ "149063006+j3ffffff@users.noreply.github.com": "j3ffffff",
507
+ "A-FdL-Prog@users.noreply.github.com": "A-FdL-Prog",
508
+ "l0hde@users.noreply.github.com": "l0hde",
509
+ "difujia@users.noreply.github.com": "difujia",
510
+ "vominh1919@gmail.com": "vominh1919",
511
+ "yue.gu2023@gmail.com": "YueLich",
512
+ "51783311+andyylin@users.noreply.github.com": "andyylin",
513
+ "me@jakubkrcmar.cz": "jakubkrcmar",
514
+ "prasadus92@gmail.com": "prasadus92",
515
+ "michael@make.software": "mssteuer",
516
+ "der@konsi.org": "konsisumer",
517
+ "abogale2@gmail.com": "amanuel2",
518
+ "alexazzjjtt@163.com": "alexzhu0",
519
+ "pub_forgreatagent@antgroup.com": "AntAISecurityLab",
520
+ "252620095+briandevans@users.noreply.github.com": "briandevans",
521
+ "danielrpike9@gmail.com": "Bartok9",
522
+ "skozyuk@cruxexperts.com": "CruxExperts",
523
+ "154585401+LeonSGP43@users.noreply.github.com": "LeonSGP43",
524
+ "12250313+Kailigithub@users.noreply.github.com": "Kailigithub",
525
+ "mgparkprint@gmail.com": "vlwkaos",
526
+ "1317078257maroon@gmail.com": "Oxidane-bot",
527
+ "tranquil_flow@protonmail.com": "Tranquil-Flow",
528
+ "LyleLengyel@gmail.com": "mcndjxlefnd",
529
+ "wangshengyang2004@163.com": "Wangshengyang2004",
530
+ "hasan.ali13381@gmail.com": "H-Ali13381",
531
+ "xienb@proton.me": "XieNBi",
532
+ "139681654+maymuneth@users.noreply.github.com": "maymuneth",
533
+ "zengwei@nightq.cn": "nightq",
534
+ "1434494126@qq.com": "5park1e",
535
+ "158153005+5park1e@users.noreply.github.com": "5park1e",
536
+ "innocarpe@gmail.com": "innocarpe",
537
+ "noreply@ked.com": "qike-ms",
538
+ "andrekurait@gmail.com": "AndreKurait",
539
+ "bsgdigital@users.noreply.github.com": "bsgdigital",
540
+ "numman.ali@gmail.com": "nummanali",
541
+ "rohithsaimidigudla@gmail.com": "whitehatjr1001",
542
+ "0xNyk@users.noreply.github.com": "0xNyk",
543
+ "0xnykcd@googlemail.com": "0xNyk",
544
+ "buraysandro9@gmail.com": "buray",
545
+ "contact@jomar.fr": "joshmartinelle",
546
+ "camilo@tekelala.com": "tekelala",
547
+ "vincentcharlebois@gmail.com": "vincentcharlebois",
548
+ "aryan@synvoid.com": "aryansingh",
549
+ "johnsonblake1@gmail.com": "voteblake",
550
+ "hcn518@gmail.com": "pedh",
551
+ "haileymarshall005@gmail.com": "haileymarshall",
552
+ "bennet.yr.wang@gmail.com": "BennetYrWang",
553
+ "greer.guthrie@gmail.com": "g-guthrie",
554
+ "kennyx102@gmail.com": "bobashopcashier",
555
+ "77253505+bobashopcashier@users.noreply.github.com": "bobashopcashier",
556
+ "25355950+megastary@users.noreply.github.com": "megastary", # PR #18325
557
+ "shokatalishaikh95@gmail.com": "areu01or00",
558
+ "bryan@intertwinesys.com": "bryanyoung",
559
+ "christo.mitov@gmail.com": "christomitov",
560
+ "hermes@nousresearch.com": "NousResearch",
561
+ "reginaldasr@gmail.com": "ReginaldasR",
562
+ "ntconguit@gmail.com": "0xharryriddle",
563
+ "agent@wildcat.local": "ericnicolaides",
564
+ "georgex8001@gmail.com": "georgex8001",
565
+ "stefan@dimagents.ai": "dimitrovi",
566
+ "hermes@noushq.ai": "benbarclay",
567
+ "chinmingcock@gmail.com": "ChimingLiu",
568
+ "allard.quek@singtel.com": "AllardQuek",
569
+ "openclaw@sparklab.ai": "openclaw",
570
+ "semihcvlk53@gmail.com": "Himess",
571
+ "erenkar950@gmail.com": "erenkarakus",
572
+ "adavyasharma@gmail.com": "adavyas",
573
+ "acaayush1111@gmail.com": "aayushchaudhary",
574
+ "jason@outland.art": "jasonoutland",
575
+ "73175452+Magaav@users.noreply.github.com": "Magaav",
576
+ "mrflu1918@proton.me": "SPANISHFLU",
577
+ "morganemoss@gmai.com": "mormio",
578
+ "kopjop926@gmail.com": "cesareth",
579
+ "fuleinist@gmail.com": "fuleinist",
580
+ "jack.47@gmail.com": "JackTheGit",
581
+ "dalvidjr2022@gmail.com": "Jr-kenny",
582
+ "m@statecraft.systems": "mbierling",
583
+ "balyan.sid@gmail.com": "alt-glitch",
584
+ "52913345+alt-glitch@users.noreply.github.com": "alt-glitch",
585
+ "oluwadareab12@gmail.com": "oluwadareab12",
586
+ "simon@simonmarcus.org": "simon-marcus",
587
+ "xowiekk@gmail.com": "Xowiek",
588
+ "1243352777@qq.com": "zons-zhaozhy",
589
+ "e.silacandmr@gmail.com": "Es1la",
590
+ "51599529+stephen0110@users.noreply.github.com": "stephen0110",
591
+ "265632032+sonic-netizen@users.noreply.github.com": "sonic-netizen",
592
+ "82531659+mwnickerson@users.noreply.github.com": "mwnickerson",
593
+ "sandrohub013@gmail.com": "SandroHub013",
594
+ "maciekczech@users.noreply.github.com": "maciekczech",
595
+ "h3057183414@gmail.com": "CoreyNoDream",
596
+ "franksong2702@gmail.com": "franksong2702",
597
+ "673088860@qq.com": "ambition0802",
598
+ "beibei1988@proton.me": "beibi9966",
599
+ # ── bulk addition: 75 emails resolved via API, PR salvage bodies, noreply
600
+ # crossref, and GH contributor list matching (April 2026 audit) ──
601
+ "1115117931@qq.com": "aaronagent",
602
+ "1506751656@qq.com": "hqhq1025",
603
+ "364939526@qq.com": "luyao618",
604
+ "hgk324@gmail.com": "houziershi",
605
+ "176644217+PStarH@users.noreply.github.com": "PStarH",
606
+ "51058514+Sanjays2402@users.noreply.github.com": "Sanjays2402",
607
+ "16577466+andy825@user.noreply.gitee.com": "Andy283",
608
+ "906014227@qq.com": "bingo906",
609
+ "aaronwong1999@icloud.com": "AaronWong1999",
610
+ "agents@kylefrench.dev": "DeployFaith",
611
+ "angelos@oikos.lan.home.malaiwah.com": "angelos",
612
+ "aptx4561@gmail.com": "cokemine",
613
+ "arilotter@gmail.com": "ethernet8023",
614
+ "ben@nousresearch.com": "benbarclay",
615
+ "birdiegyal@gmail.com": "yyovil",
616
+ "boschi1997@gmail.com": "nicoloboschi",
617
+ "chef.ya@gmail.com": "cherifya",
618
+ "chlqhdtn98@gmail.com": "BongSuCHOI",
619
+ "coffeemjj@gmail.com": "Cafexss",
620
+ "dalianmao0107@gmail.com": "dalianmao000",
621
+ "der@konsi.org": "konsisumer",
622
+ "dgrieco@redhat.com": "DomGrieco",
623
+ "dhicham.pro@gmail.com": "spideystreet",
624
+ "dipp.who@gmail.com": "dippwho",
625
+ "don.rhm@gmail.com": "donrhmexe",
626
+ "dorukardahan@hotmail.com": "dorukardahan",
627
+ "dsocolobsky@gmail.com": "dsocolobsky",
628
+ "dylan.socolobsky@lambdaclass.com": "dsocolobsky",
629
+ "ignacio.avecilla@lambdaclass.com": "IAvecilla",
630
+ "duerzy@gmail.com": "duerzy",
631
+ "emozilla@nousresearch.com": "emozilla",
632
+ "fancydirty@gmail.com": "fancydirty",
633
+ "farion1231@gmail.com": "farion1231",
634
+ "floptopbot33@gmail.com": "flobo3",
635
+ "fontana.pedro93@gmail.com": "pefontana",
636
+ "francis.x.fitzpatrick@gmail.com": "fxfitz",
637
+ "frank@helmschrott.de": "Helmi",
638
+ "gaixg94@gmail.com": "gaixianggeng",
639
+ "geoff.wellman@gmail.com": "geoffwellman",
640
+ "han.shan@live.cn": "jamesarch",
641
+ "haolong@microsoft.com": "LongOddCode",
642
+ "hata1234@gmail.com": "hata1234",
643
+ "hmbown@gmail.com": "Hmbown",
644
+ "iacobs@m0n5t3r.info": "m0n5t3r",
645
+ "jiayuw794@gmail.com": "JiayuuWang",
646
+ "jonny@nousresearch.com": "jquesnelle",
647
+ "jake@nousresearch.com": "simpolism",
648
+ "juan.ovalle@mistral.ai": "jjovalle99",
649
+ "julien.talbot@ergonomia.re": "Julientalbot",
650
+ "kagura.chen28@gmail.com": "kagura-agent",
651
+ "1342088860@qq.com": "youngDoo",
652
+ "kamil@gwozdz.me": "kamil-gwozdz",
653
+ "skmishra1991@gmail.com": "bugkill3r",
654
+ "karamusti912@gmail.com": "MustafaKara7",
655
+ "kira@ariaki.me": "kira-ariaki",
656
+ "kira.ops@proton.me": "KiraKatana",
657
+ "knopki@duck.com": "knopki",
658
+ "limars874@gmail.com": "limars874",
659
+ "lisicheng168@gmail.com": "lesterli",
660
+ "mingjwan@microsoft.com": "MagicRay1217",
661
+ "orangeko@gmail.com": "GenKoKo",
662
+ "82095453+iacker@users.noreply.github.com": "iacker",
663
+ "sontianye@users.noreply.github.com": "sontianye",
664
+ "jackjin1997@users.noreply.github.com": "jackjin1997",
665
+ "1037461232@qq.com": "jackjin1997",
666
+ "danieldoderlein@users.noreply.github.com": "danieldoderlein",
667
+ "lrawnsley@users.noreply.github.com": "lrawnsley",
668
+ "taeuk178@users.noreply.github.com": "taeuk178",
669
+ "ogzerber@users.noreply.github.com": "ogzerber",
670
+ "cola-runner@users.noreply.github.com": "cola-runner",
671
+ "ygd58@users.noreply.github.com": "ygd58",
672
+ "45554392+warabe1122@users.noreply.github.com": "warabe1122",
673
+ "187001140+willy-scr@users.noreply.github.com": "willy-scr",
674
+ "vominh1919@users.noreply.github.com": "vominh1919",
675
+ "iamagenius00@users.noreply.github.com": "iamagenius00",
676
+ "9219265+cresslank@users.noreply.github.com": "cresslank",
677
+ "trevmanthony@gmail.com": "trevthefoolish",
678
+ "ziliangpeng@users.noreply.github.com": "ziliangpeng",
679
+ "centripetal-star@users.noreply.github.com": "centripetal-star",
680
+ "LeonSGP43@users.noreply.github.com": "LeonSGP43",
681
+ "154585401+LeonSGP43@users.noreply.github.com": "LeonSGP43",
682
+ "cine.dreamer.one@gmail.com": "LeonSGP43",
683
+ "Lubrsy706@users.noreply.github.com": "Lubrsy706",
684
+ "niyant@spicefi.xyz": "spniyant",
685
+ "olafthiele@gmail.com": "olafthiele",
686
+ "oncuevtv@gmail.com": "sprmn24",
687
+ "programming@olafthiele.com": "olafthiele",
688
+ "r2668940489@gmail.com": "r266-tech",
689
+ "s5460703@gmail.com": "BlackishGreen33",
690
+ "saul.jj.wu@gmail.com": "SaulJWu",
691
+ "shenhaocheng19990111@gmail.com": "hcshen0111",
692
+ "sjtuwbh@gmail.com": "Cygra",
693
+ "srhtsrht17@gmail.com": "Sertug17",
694
+ "stephenschoettler@gmail.com": "stephenschoettler",
695
+ "tanishq231003@gmail.com": "yyovil",
696
+ "taosiyuan163@153.com": "taosiyuan163",
697
+ "tesseracttars@gmail.com": "tesseracttars-creator",
698
+ "tianliangjay@gmail.com": "xingkongliang",
699
+ "1317078257maroon@gmail.com": "Oxidane-bot",
700
+ "tranquil_flow@protonmail.com": "Tranquil-Flow",
701
+ "LyleLengyel@gmail.com": "mcndjxlefnd",
702
+ "unayung@gmail.com": "Unayung",
703
+ "vorvul.danylo@gmail.com": "WorldInnovationsDepartment",
704
+ "win4r@outlook.com": "win4r",
705
+ "xush@xush.org": "KUSH42",
706
+ "yangzhi.see@gmail.com": "SeeYangZhi",
707
+ "yongtenglei@gmail.com": "yongtenglei",
708
+ "young@YoungdeMacBook-Pro.local": "YoungYang963",
709
+ "ysfalweshcan@gmail.com": "Junass1",
710
+ "ysfwaxlycan@gmail.com": "WAXLYY",
711
+ "yusufalweshdemir@gmail.com": "Dusk1e",
712
+ "zhouboli@gmail.com": "zhouboli",
713
+ "zqiao@microsoft.com": "tomqiaozc",
714
+ "zzn+pa@zzn.im": "xinbenlv",
715
+ "zaynjarvis@gmail.com": "ZaynJarvis",
716
+ "zhiheng.liu@bytedance.com": "ZaynJarvis",
717
+ "izhaolongfei@gmail.com": "loongfay",
718
+ "296659110@qq.com": "lrt4836",
719
+ "fe.daniel91@gmail.com": "beforeload",
720
+ "libo1106@foxmail.com": "libo1106",
721
+ "295367131@qq.com": "295367131",
722
+ "295367132@qq.com": "IxAres",
723
+ "danieldliu@tencent.com": "danieldliu",
724
+ "loongzhao@tencent.com": "loongzhao",
725
+ "Bartok9@users.noreply.github.com": "Bartok9",
726
+ "LeonSGP43@users.noreply.github.com": "LeonSGP43",
727
+ "kshitijk4poor@users.noreply.github.com": "kshitijk4poor",
728
+ "mbelleau@Michels-MacBook-Pro.local": "malaiwah",
729
+ "michel.belleau@malaiwah.com": "malaiwah",
730
+ "gnanasekaran.sekareee@gmail.com": "gnanam1990",
731
+ "jz.pentest@gmail.com": "0xyg3n",
732
+ "7093928+0xyg3n@users.noreply.github.com": "0xyg3n",
733
+ "nftpoetrist@gmail.com": "nftpoetrist", # PR #18982
734
+ "millerc79@users.noreply.github.com": "millerc79", # PR #19033
735
+ "hermes@example.com": "shellybotmoyer", # PR #18915 (bot-committed)
736
+ "exx@example.com": "exxmen", # PR #19555
737
+ "hypnosis.mda@gmail.com": "Hypn0sis",
738
+ "ywt000818@gmail.com": "OwenYWT",
739
+ "dhandhalyabhavik@gmail.com": "v1k22",
740
+ "rucchizhao@zhaochenfeideMacBook-Pro.local": "RucchiZ",
741
+ "tannerfokkens@Mac.attlocal.net": "tannerfokkens-maker",
742
+ "lehaolin98@outlook.com": "LehaoLin",
743
+ "yuewang1@microsoft.com": "imink",
744
+ "1736355688@qq.com": "hedgeho9X",
745
+ "bernylinville@devopsthink.org": "bernylinville",
746
+ "brian@bde.io": "briandevans",
747
+ "hubin_ll@qq.com": "LLQWQ",
748
+ "memosr_email@gmail.com": "memosr",
749
+ "jperlow@gmail.com": "perlowja",
750
+ "jasonpette1783@gmail.com": "web-dev0521",
751
+ "bjianhang@gmail.com": "bjianhang",
752
+ "tangyuanjc@JCdeAIfenshendeMac-mini.local": "tangyuanjc",
753
+ "harryplusplus@gmail.com": "harryplusplus",
754
+ "anthhub@163.com": "anthhub",
755
+ "vmphuongit@gmail.com": "phuongvm",
756
+ "allard.quek@singtel.com": "AllardQuek",
757
+ "shenuu@gmail.com": "shenuu",
758
+ "xiayh17@gmail.com": "xiayh0107",
759
+ "zhujianxyz@gmail.com": "opriz",
760
+ "tuancanhnguyen706@gmail.com": "xxxigm",
761
+ "asurla@nvidia.com": "anniesurla",
762
+ "kchantharuan@nvidia.com": "nv-kasikritc",
763
+ "limkuan24@gmail.com": "WideLee",
764
+ "aviralarora002@gmail.com": "AviArora02-commits",
765
+ "draixagent@gmail.com": "draix",
766
+ "junminliu@gmail.com": "JimLiu",
767
+ "jarvischer@gmail.com": "maxchernin",
768
+ "levantam.98.2324@gmail.com": "LVT382009",
769
+ "zhurongcheng@rcrai.com": "heykb",
770
+ "withapurpose37@gmail.com": "StefanIsMe",
771
+ "261797239+lumenradley@users.noreply.github.com": "lumenradley",
772
+ "166376523+sjz-ks@users.noreply.github.com": "sjz-ks",
773
+ "haileymarshall005@gmail.com": "haileymarshall",
774
+ "aniruddhaadak80@users.noreply.github.com": "aniruddhaadak80",
775
+ "zheng.jerilyn@gmail.com": "jerilynzheng",
776
+ "asslaenn5@gmail.com": "Aslaaen",
777
+ "shalompmc0505@naver.com": "pinion05",
778
+ "105142614+VTRiot@users.noreply.github.com": "VTRiot",
779
+ "vivien000812@gmail.com": "iamagenius00",
780
+ "89228157+Feranmi10@users.noreply.github.com": "Feranmi10",
781
+ "oluwadareferanmi11@gmail.com": "Feranmi10",
782
+ "simon@gtcl.us": "simon-gtcl",
783
+ "suzukaze.haduki@gmail.com": "houko",
784
+ "cliff@cigii.com": "cgarwood82",
785
+ "anna@oa.ke": "anna-oake",
786
+ "jaffarkeikei@gmail.com": "jaffarkeikei",
787
+ "hxp@hxp.plus": "hxp-plus",
788
+ "3580442280@qq.com": "Tianworld",
789
+ "wujianxu91@gmail.com": "wujhsu",
790
+ "zhrh120@gmail.com": "niyoh120",
791
+ "vrinek@hey.com": "vrinek",
792
+ "268198004+xandersbell@users.noreply.github.com": "xandersbell",
793
+ "somme4096@gmail.com": "Somme4096",
794
+ "brian@tiuxo.com": "brianclemens",
795
+ "25944632+yudaiyan@users.noreply.github.com": "yudaiyan",
796
+ "chayton@sina.com": "ycbai",
797
+ "longsizhuo@gmail.com": "longsizhuo",
798
+ "chenb19870707@gmail.com": "ms-alan",
799
+ "agorgianitisj@hotmail.com": "johnisag",
800
+ "phil.thomas@gametime.co": "explainanalyze",
801
+ "276886827+WuTianyi123@users.noreply.github.com": "WuTianyi123",
802
+ "22549957+li0near@users.noreply.github.com": "li0near",
803
+ "guoyu801@gmail.com": "li0near",
804
+ "ty@tmrtn.com": "tymrtn",
805
+ "elitovsky@zenproject.net": "kallidean",
806
+ "5463986+baocin@users.noreply.github.com": "baocin",
807
+ "107296821+princepal9120@users.noreply.github.com": "princepal9120",
808
+ "gufo0125@gmail.com": "guglielmofonda",
809
+ "102474490+yehuosi@users.noreply.github.com": "yehuosi",
810
+ "yehuosi@users.noreply.github.com": "yehuosi",
811
+ "31932854+jelrod27@users.noreply.github.com": "jelrod27",
812
+ "11262660+konsisumer@users.noreply.github.com": "konsisumer",
813
+ "23434080+sicnuyudidi@users.noreply.github.com": "sicnuyudidi",
814
+ "haimu0x0@proton.me": "haimu0x",
815
+ "abdelmajidnidnasser1@gmail.com": "NIDNASSER-Abdelmajid",
816
+ "projectadmin@wit.id": "projectadmin-dev",
817
+ "mrigankamondal10@gmail.com": "Dev-Mriganka",
818
+ "132275809+shushuzn@users.noreply.github.com": "shushuzn",
819
+ "ibrahimozsarac@gmail.com": "iborazzi",
820
+ "130149563+A-afflatus@users.noreply.github.com": "A-afflatus",
821
+ "huangkwell@163.com": "huangke19",
822
+ "tanishq@exa.ai": "10ishq",
823
+ "363708+christopherwoodall@users.noreply.github.com": "christopherwoodall",
824
+ "zhang9w0v5@qq.com": "zhang9w0v5",
825
+ "fuleinist@outlook.com": "fuleinist",
826
+ "43494187+Llugaes@users.noreply.github.com": "Llugaes",
827
+ "fengtianyu88@users.noreply.github.com": "fengtianyu88",
828
+ "l.moncany@gmail.com": "lmoncany",
829
+ "fatinghenji@users.noreply.github.com": "fatinghenji",
830
+ "xin.peng.dr@gmail.com": "xinpengdr",
831
+ "mike@mikewaters.net": "mikewaters",
832
+ "65117428+WadydX@users.noreply.github.com": "WadydX",
833
+ "216480837+isaachuangGMICLOUD@users.noreply.github.com": "isaachuangGMICLOUD",
834
+ "isaac.h@gmicloud.ai": "isaachuangGMICLOUD",
835
+ "nukuom976228@gmail.com": "hsy5571616",
836
+ "11462216+Nan93@users.noreply.github.com": "Nan93",
837
+ "l973401489@126.com": "zhouxiaoya12",
838
+ "373119611@qq.com": "roytian1217",
839
+ "brett@brettbrewer.com": "minorgod",
840
+ "67779267+wenhao7@users.noreply.github.com": "wenhao7",
841
+ "git@yzx9.xyz": "yzx9",
842
+ "nilesh@cloudgeni.us": "lvnilesh",
843
+ "63502660+azhengbot@users.noreply.github.com": "azhengbot",
844
+ "sharvil.saxena@gmail.com": "sharziki",
845
+ "yuanhe@minimaxi.com": "RyanLee-Dev",
846
+ "curtis992250@gmail.com": "TaroballzChen",
847
+ "92638503+Lind3ey@users.noreply.github.com": "Lind3ey",
848
+ "1352808998@qq.com": "phpoh",
849
+ "caliberoviv@gmail.com": "vivganes",
850
+ "michaelfackerell@gmail.com": "MikeFac",
851
+ "18024642@qq.com": "GuyCui",
852
+ "eumael.mkt@gmail.com": "maelrx",
853
+ # v0.11.0 additions
854
+ "benbarclay@gmail.com": "benbarclay",
855
+ "lijiawen@umich.edu": "Jiawen-lee",
856
+ "oleksiy@kovyrin.net": "kovyrin",
857
+ "kovyrin.claw@gmail.com": "kovyrin",
858
+ "kaiobarb@gmail.com": "liftaris",
859
+ "me@arihantsethia.com": "arihantsethia",
860
+ "zhuofengwang2003@gmail.com": "coekfung",
861
+ "teknium@noreply.github.com": "teknium1",
862
+ "2114364329@qq.com": "cuyua9",
863
+ "2557058999@qq.com": "Disaster-Terminator",
864
+ "cine.dreamer.one@gmail.com": "LeonSGP43",
865
+ "zyprothh@gmail.com": "Zyproth",
866
+ "amitgaur@gmail.com": "amitgaur",
867
+ "albuquerque.abner@gmail.com": "mrbob-git",
868
+ "kiala@users.noreply.github.com": "kiala9",
869
+ "alanxchen@gmail.com": "alanxchen85",
870
+ "clawbot@clawbots-Mac-mini.local": "John-tip",
871
+ "der@konsi.org": "konsisumer",
872
+ "cirwel@The-CIRWEL-Group.local": "CIRWEL",
873
+ "molvikar8@gmail.com": "molvikar",
874
+ "nftpoetrist@gmail.com": "nftpoetrist",
875
+ "dodofun@126.com": "colorcross",
876
+ "1615063567@qq.com": "zhao0112",
877
+ "ethanguo.2003@gmail.com": "EthanGuo-coder",
878
+ "dev0jsh@gmail.com": "tmdgusya",
879
+ "leavr@163.com": "leavrcn",
880
+ "17683456+wanazhar@users.noreply.github.com": "wanazhar",
881
+ "26782336+cixuuz@users.noreply.github.com": "cixuuz",
882
+ "aleksandr.pasevin@openzeppelin.com": "pasevin",
883
+ "ubuntu@localhost.localdomain": "holynn-q",
884
+ "holynn@placeholder.local": "holynn-q",
885
+ "agent@hermes.local": "jacdevos",
886
+ "sunsky.lau@gmail.com": "liuhao1024",
887
+ "qiuqfang98@qq.com": "keepcalmqqf",
888
+ "261867348+ai-ag2026@users.noreply.github.com": "ai-ag2026",
889
+ "yanzh.su@gmail.com": "YanzhongSu",
890
+ "wanderwang@users.noreply.github.com": "WanderWang",
891
+ "yueheime@gmail.com": "yuehei",
892
+ "emidomh@gmail.com": "Emidomenge",
893
+ "2642448440@qq.com": "BlackJulySnow",
894
+ "4317663+helix4u@users.noreply.github.com": "helix4u",
895
+ "floptopbot33@gmail.com": "flobo3",
896
+ "dpaluy@users.noreply.github.com": "dpaluy",
897
+ "psikonetik@gmail.com": "el-analista",
898
+ "chenb19870707@gmail.com": "ms-alan",
899
+ "agorgianitisj@hotmail.com": "johnisag",
900
+ "phil.thomas@gametime.co": "explainanalyze",
901
+ "hex-clawd@users.noreply.github.com": "hex-clawd",
902
+ "154585401+LeonSGP43@users.noreply.github.com": "LeonSGP43",
903
+ "barteq@hacknotes.local": "barteqpl",
904
+ "pama0227@gmail.com": "pama0227",
905
+ "52785845+ee-blog@users.noreply.github.com": "ee-blog",
906
+ "simplenamebox@gmail.com": "simplenamebox-ops",
907
+ "balyan.sid@gmail.com": "alt-glitch",
908
+ "xdord@xdorddeMac-mini.local": "foreverxdord",
909
+ "k2767567815@gmail.com": "QifengKuang",
910
+ "88077783+jjjojoj@users.noreply.github.com": "jjjojoj",
911
+ "valda@underscore.jp": "valda",
912
+ "lling486@163.com": "M3RCUR2Y",
913
+ "buraysandro9@gmail.com": "ygd58",
914
+ "ideathinklab01-source@users.noreply.github.com": "ideathinklab01-source",
915
+ "27987889@qq.com": "zng8418",
916
+ "daniuxie88@proton.me": "DaniuXie",
917
+ "panchanler@gmail.com": "ChanlerDev",
918
+ "252620095+briandevans@users.noreply.github.com": "briandevans",
919
+ "141889580+h0tp-ftw@users.noreply.github.com": "h0tp-ftw",
920
+ "chinadbo@foxmail.com": "chinadbo",
921
+ "82637225+kshitijk4poor@users.noreply.github.com": "kshitijk4poor",
922
+ "xyywtt@gmail.com": "xyiy001",
923
+ "charliekerfoot@gmail.com": "CharlieKerfoot",
924
+ "grey0202@users.noreply.github.com": "Grey0202",
925
+ "vominh1919@gmail.com": "vominh1919",
926
+ "giwavictor9@gmail.com": "giwaov",
927
+ "yoimexex@gmail.com": "Yoimex",
928
+ "76803960+atongrun@users.noreply.github.com": "atongrun",
929
+ "michaeldanko@icloud.com": "MichaelWDanko",
930
+ "xudavid429@gmail.com": "YX234",
931
+ "kathy@Kathy.local": "julysir",
932
+ "274902531@qq.com": "JanCong",
933
+ "225304168+e-shizz@users.noreply.github.com": "e-shizz",
934
+ "vincent_hh@users.noreply.github.com": "VinVC",
935
+ "1243352777@qq.com": "zons-zhaozhy",
936
+ "dejie.guo@gmail.com": "JayGwod",
937
+ "52840391+swithek@users.noreply.github.com": "swithek",
938
+ "raipratik0101@gmail.com": "PratikRai0101",
939
+ "code@sasha.id": "sasha-id",
940
+ "chen.yunbo@xydigit.com": "chenyunbo411",
941
+ "openclaw@local": "Asce66",
942
+ "59465365+0xsir0000@users.noreply.github.com": "0xsir0000",
943
+ "lisanhu2014@hotmail.com": "lisanhu",
944
+ "0668001438@zte.com.cn": "chenyunbo411",
945
+ "steven_chanin@alum.mit.edu": "stevenchanin",
946
+ "fiver@example.com": "halmisen",
947
+ "mayq0422@gmail.com": "yuqianma",
948
+ "yuqian@zmetasoft.com": "yuqianma",
949
+ "scott@bubble.local": "bassings",
950
+ "highland0971@users.noreply.github.com": "highland0971",
951
+ "sudolewis@gmail.com": "lewislulu",
952
+ "gaurav2301v@gmail.com": "Gaurav23V",
953
+ "tranquil_flow@protonmail.com": "Tranquil-Flow",
954
+ "albert748@gmail.com": "albert748",
955
+ "ntconguit@gmail.com": "0xharryriddle",
956
+ "lhysdl@gmail.com": "lhysdl",
957
+ "shemol@163.com": "SherlockShemol",
958
+ "enochlam2002@gmail.com": "eloklam",
959
+ "eloklam@eloklam-ubuntudesktop.tail21966c.ts.net": "eloklam",
960
+ "clawdia@fmercurio-macstudio.local": "fmercurio",
961
+ "ricardoporsche001@icloud.com": "Ricardo-M-L",
962
+ "leozeli@qq.com": "leozeli",
963
+ "linlehao@cuhk.edu.cn": "LehaoLin",
964
+ "liutong@isacas.ac.cn": "I3eg1nner",
965
+ "peterberthelsen@Peters-MacBook-Air.local": "PeterBerthelsen",
966
+ "root@debian.debian": "lengxii",
967
+ "roque@priveperfumeshn.com": "priveperfumes",
968
+ "shijianzhi@shijianzhideMacBook-Pro.local": "sjz-ks",
969
+ "topcheer@me.com": "topcheer",
970
+ "walli@tencent.com": "walli",
971
+ "zhuofengwang@tencent.com": "Zhuofeng-Wang",
972
+ "simonweng@tencent.com": "Contentment003111",
973
+ # April 2026 salvage-PR batch (#14920, #14986, #14966)
974
+ "mrunmayeerane17@gmail.com": "mrunmayee17",
975
+ "69489633+camaragon@users.noreply.github.com": "camaragon",
976
+ "shamork@outlook.com": "shamork",
977
+ # April 2026 Discord Copilot /model salvage (#15030)
978
+ "cshong2017@outlook.com": "Nicecsh",
979
+ # no-github-match — keep as display names
980
+ "clio-agent@sisyphuslabs.ai": "Sisyphus",
981
+ "marco@rutimka.de": "Marco Rutsch",
982
+ "paul@gamma.app": "Paul Bergeron",
983
+ "zhangxicen@example.com": "zhangxicen",
984
+ "codex@openai.invalid": "teknium1",
985
+ "screenmachine@gmail.com": "teknium1",
986
+ "chenzeshi@live.com": "chen1749144759",
987
+ "mor.aleksandr@yahoo.com": "MorAlekss",
988
+ "276649498+ztexydt-cqh@users.noreply.github.com": "ztexydt-cqh",
989
+ "ash@users.noreply.github.com": "ash",
990
+ "andrewho.sf@gmail.com": "andrewhosf",
991
+ # April 2026 Honcho bug-fix consolidation (#15381)
992
+ "HiddenPuppy@users.noreply.github.com": "HiddenPuppy",
993
+ "code@sasha.id": "sasha-id",
994
+ "dontcallmejames@users.noreply.github.com": "dontcallmejames",
995
+ "hekaru.agent@gmail.com": "hekaru-agent",
996
+ "jas9000@gmail.com": "twozle",
997
+ "r.filgueiras@apheris.com": "rfilgueiras",
998
+ "leihaibo1992@gmail.com": "Leihb",
999
+ # ACP streaming fix salvage (PR #9428 + #16273)
1000
+ "nfb0408@163.com": "ningfangbin",
1001
+ "164839249+Joseph19820124@users.noreply.github.com": "Joseph19820124",
1002
+ "rugved@lmstudio.ai": "rugvedS07",
1003
+ "44333070+Heltman@users.noreply.github.com": "Heltman",
1004
+ # v0.12.0 additions
1005
+ "ching@kachingappz.com": "ching-kaching",
1006
+ "codezhujr@gmail.com": "Zjianru", # salvage chain: code by codez, PR #15749 author @Zjianru
1007
+ "daimon@noreply.github.com": "Siddharth Balyan", # co-author only
1008
+ "i@zkl2333.com": "zkl2333",
1009
+ "isaachuang@Isaacs-MacBook-Pro.local": "isaachuangGMICLOUD",
1010
+ "isaachuang@Mac.localdomain": "isaachuangGMICLOUD", # salvage of PR #11955 → #16663
1011
+ "liyuan851277048@icloud.com": "Octopus", # co-author only
1012
+ "me+github7604@versun.org": "Versun", # co-author only
1013
+ "my.vesper.nine@gmail.com": "kevin-ho", # salvage: PR #15488 author @kevin-ho
1014
+ "noreply@paperclip.ing": "Paperclip", # co-author only
1015
+ "teknium@hermes-agent": "teknium1",
1016
+ "web3blind@gmail.com": "web3blind",
1017
+ "ztzheng@163.com": "chengoak", # PR #17467
1018
+ "24110240104@m.fudan.edu.cn": "YuShu", # co-author only
1019
+ "charliekerfoot@gmail.com": "CharlieKerfoot", # PR #18951
1020
+ # Debug share upload-time redaction (May 2026)
1021
+ "dhuysamen@gmail.com": "GodsBoy", # PR #19318
1022
+ "mrcoferland@gmail.com": "mrcoferland", # PR #19023
1023
+ "chenlinfeng@ruije.com.cn": "noOne-list", # PR #19050
1024
+ "briansu@Mac-mini.attlocal.net": "likejudy", # PR #19052
1025
+ "leosma@gmail.com": "leon7609", # PR #19069
1026
+ "nouseman666@gmail.com": "nouseman666", # PR #19088
1027
+ "ginwu05@gmail.com": "GinWU05", # PR #19093
1028
+ "shashwatgokhe2@gmail.com": "shashwatgokhe", # PR #19196
1029
+ "stevenchou.ai@gmail.com": "stevenchouai", # PR #19221
1030
+ "leo.gong@phizchat.com": "agilejava", # PR #19346
1031
+ "acc001k@pm.me": "acc001k", # PR #19358
1032
+ "kowenhao@users.noreply.github.com": "kowenhaoai", # PR #19376
1033
+ "hedirman@gmail.com": "hedirman", # PR #19410
1034
+ "lucianopacheco@gmail.com": "LucianoSP", # PR #19412
1035
+ "paultian.research@gmail.com": "paul-tian", # PR #19423
1036
+ "info@glesperance.com": "glesperance", # PR #19443
1037
+ "lxl694522264@gmail.com": "EvilDrag0n", # PR #20651
1038
+ # v0.13.0 additions
1039
+ "clode@clo5de.info": "jackey8616", # via PR salvage
1040
+ "james.russo@heygen.com": "jrusso1020", # via PR salvage
1041
+ "leon@sgp43.com": "LeonSGP43", # PR #18739 salvage of #14570
1042
+ "miniding@miniding.home": "Foolafroos", # PR #20329 French locale
1043
+ "montbra@gmail.com": "Montbra", # PR #20897 salvage of #16189 (TUI voice PTT)
1044
+ "promptsiren@gmail.com": "firefly", # PR #18123 salvage of #16660 (ContextVars)
1045
+ "wtyopenclaw@gmail.com": "WuTianyi123", # PR #20275 salvage of #13723 (feishu markdown)
1046
+ "zhicheng.han@mathematik.uni-goettingen.de": "hanzckernel", # PR #20311 (api-server approval events)
1047
+ "agentsmithlaor@gmail.com": "oferlaor", # PR #22356 salvage (cron origin sender identity)
1048
+ "jhin.lee@unity3d.com": "leehack", # PR #22053 salvage (telegram DM topic reply fallback)
1049
+ # pander: empty email, salvaged via PR #19665 from #16126 by @ms-alan
1050
+ "ayman.a.kamal@hotmail.com": "A-kamal", # PR #18678 (xAI image resolution fix)
1051
+ # Kanban bug-fix batch salvage (May 2026)
1052
+ "frowte3k@gmail.com": "Frowtek", # salvage of #23206 (gateway --board auto-subscribe)
1053
+ "sylw3st3rr@gmail.com": "Sylw3ster", # salvage of #23252 (HERMES_KANBAN_BOARD restore)
1054
+ "hello@dominikh.com": "dmnkhorvath", # salvage of #23358 (kanban worker send_message)
1055
+ "413011+smwbev@users.noreply.github.com": "smwbev", # salvage of #23659 (aria-label colLabel)
1056
+ "58116817+TurgutKural@users.noreply.github.com": "TurgutKural", # salvage of #23356 (HERMES_HOME inject)
1057
+ "openclaw@agent.local": "29206394", # PR #22194 salvage (sudo -S brute-force guard, #9590)
1058
+ "freedemon@gmail.com": "fr33d3m0n", # PR #21128 salvage (sudo stdin/askpass DANGEROUS, #17873 cat 4)
1059
+ "zhaowh3613@outlook.com": "VinceZcrikl", # PR #23647 salvage (npm UTF-8 decode on GBK Windows)
1060
+ "anton.kuenzi@gmail.com": "ZeterMordio", # PR #11754 salvage (zsh completion compdef + _arguments syntax)
1061
+ "23yntong@stu.edu.cn": "iuyup", # PR #6155 salvage (shell=True hardening)
1062
+ "86501179+1RB@users.noreply.github.com": "1RB", # PR #25462 salvage (discord forwarded messages)
1063
+ "44045943+ayushere@users.noreply.github.com": "ayushere", # PR #25342 salvage (memory teardown leak)
1064
+ "15791290+domtriola@users.noreply.github.com": "domtriola", # PR #25424 salvage (docs tirith link)
1065
+ "284216128+ephron-ren@users.noreply.github.com": "ephron-ren", # PR #25358 salvage (MiMo reasoning echo-back)
1066
+ "96843562+freqyfreqy@users.noreply.github.com": "freqyfreqy", # PR #25423 salvage (docs LSP worktree -> repo)
1067
+ "54306477+fu576@users.noreply.github.com": "fu576", # PR #25369 salvage (api_mode not inherited cross-provider)
1068
+ "258095375+kfa-ai@users.noreply.github.com": "kfa-ai", # PR #25398 salvage (whatsapp quoted reply metadata)
1069
+ "99181308+magic524@users.noreply.github.com": "magic524", # PR #25361 salvage (QQBot reconnect loop)
1070
+ "9150277+PaTTeeL@users.noreply.github.com": "PaTTeeL", # PR #25359 salvage (custom_providers in compression length)
1071
+ "1700913+pearjelly@users.noreply.github.com": "pearjelly", # PR #25388 salvage (feishu ws connect override sync)
1072
+ "100820567+raymaylee@users.noreply.github.com": "raymaylee", # PR #25394 salvage (context compaction status)
1073
+ "122434621+Tianyu199509@users.noreply.github.com": "Tianyu199509", # PR #25421 salvage (gateway PID Windows)
1074
+ "58224596+HxT9@users.noreply.github.com": "HxT9", # PR #25760 salvage (web sync-assets cross-platform)
1075
+ "120411712+evgyur@users.noreply.github.com": "evgyur", # PR #25651 salvage (docs media session context)
1076
+ "36507055+AsoTora@users.noreply.github.com": "AsoTora", # PR #25624 salvage (MCP auth no-retry)
1077
+ "98992931+oxngon@users.noreply.github.com": "oxngon", # PR #25603 salvage (forward image attachments to bg tasks)
1078
+ "37467487+yifengingit@users.noreply.github.com": "yifengingit", # PR #25589 salvage (AUTOINCREMENT id ordering)
1079
+ "89525629+vanthinh6886@users.noreply.github.com": "vanthinh6886", # PR #25562 salvage (.env 0600 perms)
1080
+ "16034932+Arkmusn@users.noreply.github.com": "Arkmusn", # PR #25559 salvage (approvals.timeout from config)
1081
+ "nidhi2894@gmail.com": "nidhi-singh02", # PR #2752 salvage (slack whitespace-only IndexError guard)
1082
+ "38173192+nidhi-singh02@users.noreply.github.com": "nidhi-singh02",
1083
+ "Jaaneek@users.noreply.github.com": "Jaaneek", # PR #26457 (xAI Grok OAuth provider)
1084
+ # v0.14.0 additions
1085
+ "chuang.guo@hopechart.com": "wuwuzhijing", # PR #21063 salvage (gateway docs mention Weixin)
1086
+ "nightcityblade@gmail.com": "nightcityblade", # PR #24138 (docs voice/tts table)
1087
+ "pol.kuijken@gmail.com": "polkn", # PR #6136 salvage (skill_view collision refusal)
1088
+ "robin@soal.org": "rewbs",
1089
+ }
1090
+
1091
+
1092
+ def git(*args, cwd=None):
1093
+ """Run a git command and return stdout."""
1094
+ result = subprocess.run(
1095
+ ["git"] + list(args),
1096
+ capture_output=True, text=True,
1097
+ cwd=cwd or str(REPO_ROOT),
1098
+ )
1099
+ if result.returncode != 0:
1100
+ print(f"git {' '.join(args)} failed: {result.stderr}", file=sys.stderr)
1101
+ return ""
1102
+ return result.stdout.strip()
1103
+
1104
+
1105
+ def git_result(*args, cwd=None):
1106
+ """Run a git command and return the full CompletedProcess."""
1107
+ return subprocess.run(
1108
+ ["git"] + list(args),
1109
+ capture_output=True,
1110
+ text=True,
1111
+ cwd=cwd or str(REPO_ROOT),
1112
+ )
1113
+
1114
+
1115
+ def get_last_tag():
1116
+ """Get the most recent CalVer tag."""
1117
+ tags = git("tag", "--list", "v20*", "--sort=-v:refname")
1118
+ if tags:
1119
+ return tags.split("\n")[0]
1120
+ return None
1121
+
1122
+
1123
+ def next_available_tag(base_tag: str) -> tuple[str, str]:
1124
+ """Return a tag/calver pair, suffixing same-day releases when needed."""
1125
+ if not git("tag", "--list", base_tag):
1126
+ return base_tag, base_tag.removeprefix("v")
1127
+
1128
+ suffix = 2
1129
+ while git("tag", "--list", f"{base_tag}.{suffix}"):
1130
+ suffix += 1
1131
+ tag_name = f"{base_tag}.{suffix}"
1132
+ return tag_name, tag_name.removeprefix("v")
1133
+
1134
+
1135
+ def get_current_version():
1136
+ """Read current semver from __init__.py."""
1137
+ content = VERSION_FILE.read_text()
1138
+ match = re.search(r'__version__\s*=\s*"([^"]+)"', content)
1139
+ return match.group(1) if match else "0.0.0"
1140
+
1141
+
1142
+ def bump_version(current: str, part: str) -> str:
1143
+ """Bump a semver version string."""
1144
+ parts = current.split(".")
1145
+ if len(parts) != 3:
1146
+ parts = ["0", "0", "0"]
1147
+ major, minor, patch = int(parts[0]), int(parts[1]), int(parts[2])
1148
+
1149
+ if part == "major":
1150
+ major += 1
1151
+ minor = 0
1152
+ patch = 0
1153
+ elif part == "minor":
1154
+ minor += 1
1155
+ patch = 0
1156
+ elif part == "patch":
1157
+ patch += 1
1158
+ else:
1159
+ raise ValueError(f"Unknown bump part: {part}")
1160
+
1161
+ return f"{major}.{minor}.{patch}"
1162
+
1163
+
1164
+ def update_version_files(semver: str, calver_date: str):
1165
+ """Update version strings in source files."""
1166
+ # Update __init__.py
1167
+ content = VERSION_FILE.read_text()
1168
+ content = re.sub(
1169
+ r'__version__\s*=\s*"[^"]+"',
1170
+ f'__version__ = "{semver}"',
1171
+ content,
1172
+ )
1173
+ content = re.sub(
1174
+ r'__release_date__\s*=\s*"[^"]+"',
1175
+ f'__release_date__ = "{calver_date}"',
1176
+ content,
1177
+ )
1178
+ VERSION_FILE.write_text(content)
1179
+
1180
+ # Update pyproject.toml
1181
+ pyproject = PYPROJECT_FILE.read_text()
1182
+ pyproject = re.sub(
1183
+ r'^version\s*=\s*"[^"]+"',
1184
+ f'version = "{semver}"',
1185
+ pyproject,
1186
+ flags=re.MULTILINE,
1187
+ )
1188
+ PYPROJECT_FILE.write_text(pyproject)
1189
+
1190
+ # Update ACP Registry manifest + npm launcher (must stay version-locked
1191
+ # with pyproject — enforced by tests/acp/test_registry_manifest.py).
1192
+ _update_acp_registry_versions(semver)
1193
+
1194
+
1195
+ def _update_acp_registry_versions(semver: str) -> None:
1196
+ """Bump the ACP Registry manifest's version + uvx package pin in lockstep
1197
+ with pyproject.
1198
+
1199
+ Skips silently if the manifest is missing — older release branches predate
1200
+ the ACP Registry assets.
1201
+ """
1202
+ if ACP_REGISTRY_MANIFEST.exists():
1203
+ manifest = json.loads(ACP_REGISTRY_MANIFEST.read_text(encoding="utf-8"))
1204
+ manifest["version"] = semver
1205
+ uvx = manifest.get("distribution", {}).get("uvx", {})
1206
+ if "package" in uvx:
1207
+ uvx["package"] = f"hermes-agent[acp]=={semver}"
1208
+ # Preserve trailing newline + 2-space indent the file already uses.
1209
+ ACP_REGISTRY_MANIFEST.write_text(
1210
+ json.dumps(manifest, indent=2) + "\n", encoding="utf-8"
1211
+ )
1212
+
1213
+
1214
+ def build_release_artifacts(semver: str) -> list[Path]:
1215
+ """Build sdist/wheel artifacts for the current release.
1216
+
1217
+ Tries ``uv build`` first (matching the CI workflow), falls back to
1218
+ ``python -m build`` if uv is unavailable.
1219
+ """
1220
+ dist_dir = REPO_ROOT / "dist"
1221
+ shutil.rmtree(dist_dir, ignore_errors=True)
1222
+
1223
+ # Prefer uv build (matches CI workflow), fall back to python -m build.
1224
+ uv_bin = shutil.which("uv")
1225
+ if uv_bin:
1226
+ cmd = [uv_bin, "build", "--sdist", "--wheel"]
1227
+ else:
1228
+ cmd = [sys.executable, "-m", "build", "--sdist", "--wheel"]
1229
+
1230
+ result = subprocess.run(
1231
+ cmd,
1232
+ cwd=str(REPO_ROOT),
1233
+ capture_output=True,
1234
+ text=True,
1235
+ )
1236
+ if result.returncode != 0:
1237
+ print(" ⚠ Could not build Python release artifacts.")
1238
+ stderr = result.stderr.strip()
1239
+ stdout = result.stdout.strip()
1240
+ if stderr:
1241
+ print(f" {stderr.splitlines()[-1]}")
1242
+ elif stdout:
1243
+ print(f" {stdout.splitlines()[-1]}")
1244
+ print(" Install uv or the 'build' package to attach sdist/wheel assets.")
1245
+ return []
1246
+
1247
+ artifacts = sorted(p for p in dist_dir.iterdir() if p.is_file())
1248
+ matching = [p for p in artifacts if semver in p.name]
1249
+ if not matching:
1250
+ print(" ⚠ Built artifacts did not match the expected release version.")
1251
+ return []
1252
+ return matching
1253
+
1254
+
1255
+ def resolve_author(name: str, email: str) -> str:
1256
+ """Resolve a git author to a GitHub @mention."""
1257
+ # Try email lookup first
1258
+ gh_user = AUTHOR_MAP.get(email)
1259
+ if gh_user:
1260
+ return f"@{gh_user}"
1261
+
1262
+ # Try noreply pattern
1263
+ noreply_match = re.match(r"(\d+)\+(.+)@users\.noreply\.github\.com", email)
1264
+ if noreply_match:
1265
+ return f"@{noreply_match.group(2)}"
1266
+
1267
+ # Try username@users.noreply.github.com
1268
+ noreply_match2 = re.match(r"(.+)@users\.noreply\.github\.com", email)
1269
+ if noreply_match2:
1270
+ return f"@{noreply_match2.group(1)}"
1271
+
1272
+ # Fallback to git name
1273
+ return name
1274
+
1275
+
1276
+ def categorize_commit(subject: str) -> str:
1277
+ """Categorize a commit by its conventional commit prefix."""
1278
+ subject_lower = subject.lower()
1279
+
1280
+ # Match conventional commit patterns
1281
+ patterns = {
1282
+ "breaking": [r"^breaking[\s:(]", r"^!:", r"BREAKING CHANGE"],
1283
+ "features": [r"^feat[\s:(]", r"^feature[\s:(]", r"^add[\s:(]"],
1284
+ "fixes": [r"^fix[\s:(]", r"^bugfix[\s:(]", r"^bug[\s:(]", r"^hotfix[\s:(]"],
1285
+ "improvements": [r"^improve[\s:(]", r"^perf[\s:(]", r"^enhance[\s:(]",
1286
+ r"^refactor[\s:(]", r"^cleanup[\s:(]", r"^clean[\s:(]",
1287
+ r"^update[\s:(]", r"^optimize[\s:(]"],
1288
+ "docs": [r"^doc[\s:(]", r"^docs[\s:(]"],
1289
+ "tests": [r"^test[\s:(]", r"^tests[\s:(]"],
1290
+ "chore": [r"^chore[\s:(]", r"^ci[\s:(]", r"^build[\s:(]",
1291
+ r"^deps[\s:(]", r"^bump[\s:(]"],
1292
+ }
1293
+
1294
+ for category, regexes in patterns.items():
1295
+ for regex in regexes:
1296
+ if re.match(regex, subject_lower):
1297
+ return category
1298
+
1299
+ # Heuristic fallbacks
1300
+ if any(w in subject_lower for w in ["add ", "new ", "implement", "support "]):
1301
+ return "features"
1302
+ if any(w in subject_lower for w in ["fix ", "fixed ", "resolve", "patch "]):
1303
+ return "fixes"
1304
+ if any(w in subject_lower for w in ["refactor", "cleanup", "improve", "update "]):
1305
+ return "improvements"
1306
+
1307
+ return "other"
1308
+
1309
+
1310
+ def clean_subject(subject: str) -> str:
1311
+ """Clean up a commit subject for display."""
1312
+ # Remove conventional commit prefix
1313
+ cleaned = re.sub(r"^(feat|fix|docs|chore|refactor|test|perf|ci|build|improve|add|update|cleanup|hotfix|breaking|enhance|optimize|bugfix|bug|feature|tests|deps|bump)[\s:(!]+\s*", "", subject, flags=re.IGNORECASE)
1314
+ # Remove trailing issue refs that are redundant with PR links
1315
+ cleaned = cleaned.strip()
1316
+ # Capitalize first letter
1317
+ if cleaned:
1318
+ cleaned = cleaned[0].upper() + cleaned[1:]
1319
+ return cleaned
1320
+
1321
+
1322
+ def parse_coauthors(body: str) -> list:
1323
+ """Extract Co-authored-by trailers from a commit message body.
1324
+
1325
+ Returns a list of {'name': ..., 'email': ...} dicts.
1326
+ Filters out AI assistants and bots (Claude, Copilot, Cursor, etc.).
1327
+ """
1328
+ if not body:
1329
+ return []
1330
+ # AI/bot emails to ignore in co-author trailers
1331
+ _ignored_emails = {"noreply@anthropic.com", "noreply@github.com",
1332
+ "cursoragent@cursor.com", "hermes@nousresearch.com"}
1333
+ _ignored_names = re.compile(r"^(Claude|Copilot|Cursor Agent|GitHub Actions?|dependabot|renovate)", re.IGNORECASE)
1334
+ pattern = re.compile(r"Co-authored-by:\s*(.+?)\s*<([^>]+)>", re.IGNORECASE)
1335
+ results = []
1336
+ for m in pattern.finditer(body):
1337
+ name, email = m.group(1).strip(), m.group(2).strip()
1338
+ if email in _ignored_emails or _ignored_names.match(name):
1339
+ continue
1340
+ results.append({"name": name, "email": email})
1341
+ return results
1342
+
1343
+
1344
+ def get_commits(since_tag=None):
1345
+ """Get commits since a tag (or all commits if None)."""
1346
+ if since_tag:
1347
+ range_spec = f"{since_tag}..HEAD"
1348
+ else:
1349
+ range_spec = "HEAD"
1350
+
1351
+ # Format: hash<US>author_name<US>author_email<US>subject\0body
1352
+ # Using %x1f (unit separator) to avoid conflict with | in author names
1353
+ log = git(
1354
+ "log", range_spec,
1355
+ "--format=%H%x1f%an%x1f%ae%x1f%s%x00%b%x00",
1356
+ "--no-merges",
1357
+ )
1358
+
1359
+ if not log:
1360
+ return []
1361
+
1362
+ commits = []
1363
+ # Split on double-null to get each commit entry, since body ends with \0
1364
+ # and format ends with \0, each record ends with \0\0 between entries
1365
+ for entry in log.split("\0\0"):
1366
+ entry = entry.strip()
1367
+ if not entry:
1368
+ continue
1369
+ # Split on first null to separate "hash<US>name<US>email<US>subject" from "body"
1370
+ if "\0" in entry:
1371
+ header, body = entry.split("\0", 1)
1372
+ body = body.strip()
1373
+ else:
1374
+ header = entry
1375
+ body = ""
1376
+ parts = header.split("\x1f", 3)
1377
+ if len(parts) != 4:
1378
+ continue
1379
+ sha, name, email, subject = parts
1380
+ coauthor_info = parse_coauthors(body)
1381
+ coauthors = [resolve_author(ca["name"], ca["email"]) for ca in coauthor_info]
1382
+ commits.append({
1383
+ "sha": sha,
1384
+ "short_sha": sha[:8],
1385
+ "author_name": name,
1386
+ "author_email": email,
1387
+ "subject": subject,
1388
+ "category": categorize_commit(subject),
1389
+ "github_author": resolve_author(name, email),
1390
+ "coauthors": coauthors,
1391
+ })
1392
+
1393
+ return commits
1394
+
1395
+
1396
+ def get_pr_number(subject: str) -> str | None:
1397
+ """Extract PR number from commit subject if present."""
1398
+ match = re.search(r"#(\d+)", subject)
1399
+ if match:
1400
+ return match.group(1)
1401
+ return None
1402
+
1403
+
1404
+ def generate_changelog(commits, tag_name, semver, repo_url="https://github.com/NousResearch/hermes-agent",
1405
+ prev_tag=None, first_release=False):
1406
+ """Generate markdown changelog from categorized commits."""
1407
+ lines = []
1408
+
1409
+ # Header
1410
+ now = datetime.now()
1411
+ date_str = now.strftime("%B %d, %Y")
1412
+ lines.append(f"# Hermes Agent v{semver} ({tag_name})")
1413
+ lines.append("")
1414
+ lines.append(f"**Release Date:** {date_str}")
1415
+ lines.append("")
1416
+
1417
+ if first_release:
1418
+ lines.append("> 🎉 **First official release!** This marks the beginning of regular weekly releases")
1419
+ lines.append("> for Hermes Agent. See below for everything included in this initial release.")
1420
+ lines.append("")
1421
+
1422
+ # Group commits by category
1423
+ categories = defaultdict(list)
1424
+ all_authors = set()
1425
+ teknium_aliases = {"@teknium1"}
1426
+
1427
+ for commit in commits:
1428
+ categories[commit["category"]].append(commit)
1429
+ author = commit["github_author"]
1430
+ if author not in teknium_aliases:
1431
+ all_authors.add(author)
1432
+ for coauthor in commit.get("coauthors", []):
1433
+ if coauthor not in teknium_aliases:
1434
+ all_authors.add(coauthor)
1435
+
1436
+ # Category display order and emoji
1437
+ category_order = [
1438
+ ("breaking", "⚠️ Breaking Changes"),
1439
+ ("features", "✨ Features"),
1440
+ ("improvements", "🔧 Improvements"),
1441
+ ("fixes", "🐛 Bug Fixes"),
1442
+ ("docs", "📚 Documentation"),
1443
+ ("tests", "🧪 Tests"),
1444
+ ("chore", "🏗️ Infrastructure"),
1445
+ ("other", "📦 Other Changes"),
1446
+ ]
1447
+
1448
+ for cat_key, cat_title in category_order:
1449
+ cat_commits = categories.get(cat_key, [])
1450
+ if not cat_commits:
1451
+ continue
1452
+
1453
+ lines.append(f"## {cat_title}")
1454
+ lines.append("")
1455
+
1456
+ for commit in cat_commits:
1457
+ subject = clean_subject(commit["subject"])
1458
+ pr_num = get_pr_number(commit["subject"])
1459
+ author = commit["github_author"]
1460
+
1461
+ # Build the line
1462
+ parts = [f"- {subject}"]
1463
+ if pr_num:
1464
+ parts.append(f"([#{pr_num}]({repo_url}/pull/{pr_num}))")
1465
+ else:
1466
+ parts.append(f"([`{commit['short_sha']}`]({repo_url}/commit/{commit['sha']}))")
1467
+
1468
+ if author not in teknium_aliases:
1469
+ parts.append(f"— {author}")
1470
+
1471
+ lines.append(" ".join(parts))
1472
+
1473
+ lines.append("")
1474
+
1475
+ # Contributors section
1476
+ if all_authors:
1477
+ # Sort contributors by commit count
1478
+ author_counts = defaultdict(int)
1479
+ for commit in commits:
1480
+ author = commit["github_author"]
1481
+ if author not in teknium_aliases:
1482
+ author_counts[author] += 1
1483
+ for coauthor in commit.get("coauthors", []):
1484
+ if coauthor not in teknium_aliases:
1485
+ author_counts[coauthor] += 1
1486
+
1487
+ sorted_authors = sorted(author_counts.items(), key=lambda x: -x[1])
1488
+
1489
+ lines.append("## 👥 Contributors")
1490
+ lines.append("")
1491
+ lines.append("Thank you to everyone who contributed to this release!")
1492
+ lines.append("")
1493
+ for author, count in sorted_authors:
1494
+ commit_word = "commit" if count == 1 else "commits"
1495
+ lines.append(f"- {author} ({count} {commit_word})")
1496
+ lines.append("")
1497
+
1498
+ # Full changelog link
1499
+ if prev_tag:
1500
+ lines.append(f"**Full Changelog**: [{prev_tag}...{tag_name}]({repo_url}/compare/{prev_tag}...{tag_name})")
1501
+ else:
1502
+ lines.append(f"**Full Changelog**: [{tag_name}]({repo_url}/commits/{tag_name})")
1503
+ lines.append("")
1504
+
1505
+ return "\n".join(lines)
1506
+
1507
+
1508
+ def main():
1509
+ parser = argparse.ArgumentParser(description="Hermes Agent Release Tool")
1510
+ parser.add_argument("--bump", choices=["major", "minor", "patch"],
1511
+ help="Which semver component to bump")
1512
+ parser.add_argument("--publish", action="store_true",
1513
+ help="Actually create the tag and GitHub release (otherwise dry run)")
1514
+ parser.add_argument("--date", type=str,
1515
+ help="Override CalVer date (format: YYYY.M.D)")
1516
+ parser.add_argument("--first-release", action="store_true",
1517
+ help="Mark as first release (no previous tag expected)")
1518
+ parser.add_argument("--output", type=str,
1519
+ help="Write changelog to file instead of stdout")
1520
+ args = parser.parse_args()
1521
+
1522
+ # Determine CalVer date
1523
+ if args.date:
1524
+ calver_date = args.date
1525
+ else:
1526
+ now = datetime.now()
1527
+ calver_date = f"{now.year}.{now.month}.{now.day}"
1528
+
1529
+ base_tag = f"v{calver_date}"
1530
+ tag_name, calver_date = next_available_tag(base_tag)
1531
+ if tag_name != base_tag:
1532
+ print(f"Note: Tag {base_tag} already exists, using {tag_name}")
1533
+
1534
+ # Determine semver
1535
+ current_version = get_current_version()
1536
+ if args.bump:
1537
+ new_version = bump_version(current_version, args.bump)
1538
+ else:
1539
+ new_version = current_version
1540
+
1541
+ # Get previous tag
1542
+ prev_tag = get_last_tag()
1543
+ if not prev_tag and not args.first_release:
1544
+ print("No previous tags found. Use --first-release for the initial release.")
1545
+ print(f"Would create tag: {tag_name}")
1546
+ print(f"Would set version: {new_version}")
1547
+ return
1548
+
1549
+ # Get commits
1550
+ commits = get_commits(since_tag=prev_tag)
1551
+ if not commits:
1552
+ print("No new commits since last tag.")
1553
+ if not args.first_release:
1554
+ return
1555
+
1556
+ print(f"{'='*60}")
1557
+ print(f" Hermes Agent Release Preview")
1558
+ print(f"{'='*60}")
1559
+ print(f" CalVer tag: {tag_name}")
1560
+ print(f" SemVer: v{current_version} → v{new_version}")
1561
+ print(f" Previous tag: {prev_tag or '(none — first release)'}")
1562
+ print(f" Commits: {len(commits)}")
1563
+ print(f" Unique authors: {len({c['github_author'] for c in commits})}")
1564
+ print(f" Mode: {'PUBLISH' if args.publish else 'DRY RUN'}")
1565
+ print(f"{'='*60}")
1566
+ print()
1567
+
1568
+ # Generate changelog
1569
+ changelog = generate_changelog(
1570
+ commits, tag_name, new_version,
1571
+ prev_tag=prev_tag,
1572
+ first_release=args.first_release,
1573
+ )
1574
+
1575
+ if args.output:
1576
+ Path(args.output).write_text(changelog, encoding="utf-8")
1577
+ print(f"Changelog written to {args.output}")
1578
+ else:
1579
+ print(changelog)
1580
+
1581
+ if args.publish:
1582
+ print(f"\n{'='*60}")
1583
+ print(" Publishing release...")
1584
+ print(f"{'='*60}")
1585
+
1586
+ # Update version files
1587
+ if args.bump:
1588
+ update_version_files(new_version, calver_date)
1589
+ print(f" ✓ Updated version files to v{new_version} ({calver_date})")
1590
+
1591
+ # Commit version bump
1592
+ add_files = [str(VERSION_FILE), str(PYPROJECT_FILE)]
1593
+ if ACP_REGISTRY_MANIFEST.exists():
1594
+ add_files.append(str(ACP_REGISTRY_MANIFEST))
1595
+ add_result = git_result("add", *add_files)
1596
+ if add_result.returncode != 0:
1597
+ print(f" ✗ Failed to stage version files: {add_result.stderr.strip()}")
1598
+ return
1599
+
1600
+ commit_result = git_result(
1601
+ "commit", "-m", f"chore: bump version to v{new_version} ({calver_date})"
1602
+ )
1603
+ if commit_result.returncode != 0:
1604
+ print(f" ✗ Failed to commit version bump: {commit_result.stderr.strip()}")
1605
+ return
1606
+ print(f" ✓ Committed version bump")
1607
+
1608
+ # Create annotated tag
1609
+ tag_result = git_result(
1610
+ "tag", "-a", tag_name, "-m",
1611
+ f"Hermes Agent v{new_version} ({calver_date})\n\nWeekly release"
1612
+ )
1613
+ if tag_result.returncode != 0:
1614
+ print(f" ✗ Failed to create tag {tag_name}: {tag_result.stderr.strip()}")
1615
+ return
1616
+ print(f" ✓ Created tag {tag_name}")
1617
+
1618
+ # Push
1619
+ push_result = git_result("push", "origin", "HEAD", "--tags")
1620
+ if push_result.returncode == 0:
1621
+ print(f" ✓ Pushed to origin")
1622
+ else:
1623
+ print(f" ✗ Failed to push to origin: {push_result.stderr.strip()}")
1624
+ print(" Continue manually after fixing access:")
1625
+ print(" git push origin HEAD --tags")
1626
+
1627
+ # Build semver-named Python artifacts so downstream packagers
1628
+ # (e.g. Homebrew) can target them without relying on CalVer tag names.
1629
+ artifacts = build_release_artifacts(new_version)
1630
+ if artifacts:
1631
+ print(" ✓ Built release artifacts:")
1632
+ for artifact in artifacts:
1633
+ print(f" - {artifact.relative_to(REPO_ROOT)}")
1634
+
1635
+ # Create GitHub release
1636
+ changelog_file = REPO_ROOT / ".release_notes.md"
1637
+ changelog_file.write_text(changelog, encoding="utf-8")
1638
+
1639
+ gh_cmd = [
1640
+ "gh", "release", "create", tag_name,
1641
+ "--title", f"Hermes Agent v{new_version} ({calver_date})",
1642
+ "--notes-file", str(changelog_file),
1643
+ ]
1644
+ gh_cmd.extend(str(path) for path in artifacts)
1645
+
1646
+ gh_bin = shutil.which("gh")
1647
+ if gh_bin:
1648
+ result = subprocess.run(
1649
+ gh_cmd,
1650
+ capture_output=True, text=True,
1651
+ cwd=str(REPO_ROOT),
1652
+ )
1653
+ else:
1654
+ result = None
1655
+
1656
+ if result and result.returncode == 0:
1657
+ changelog_file.unlink(missing_ok=True)
1658
+ print(f" ✓ GitHub release created: {result.stdout.strip()}")
1659
+ print(f"\n 🎉 Release v{new_version} ({tag_name}) published!")
1660
+ else:
1661
+ if result is None:
1662
+ print(" ✗ GitHub release skipped: `gh` CLI not found.")
1663
+ else:
1664
+ print(f" ✗ GitHub release failed: {result.stderr.strip()}")
1665
+ print(f" Release notes kept at: {changelog_file}")
1666
+ print(f" Tag was created locally. Create the release manually:")
1667
+ print(
1668
+ f" gh release create {tag_name} --title 'Hermes Agent v{new_version} ({calver_date})' "
1669
+ f"--notes-file .release_notes.md {' '.join(str(path) for path in artifacts)}"
1670
+ )
1671
+ print(f"\n ✓ Release artifacts prepared for manual publish: v{new_version} ({tag_name})")
1672
+ else:
1673
+ print(f"\n{'='*60}")
1674
+ print(f" Dry run complete. To publish, add --publish")
1675
+ print(f" Example: python scripts/release.py --bump minor --publish")
1676
+ print(f"{'='*60}")
1677
+
1678
+
1679
+ if __name__ == "__main__":
1680
+ main()