bridgeagent 0.16.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (946) hide show
  1. bridgeagent-0.16.0/LICENSE +25 -0
  2. bridgeagent-0.16.0/MANIFEST.in +10 -0
  3. bridgeagent-0.16.0/PKG-INFO +374 -0
  4. bridgeagent-0.16.0/README.md +218 -0
  5. bridgeagent-0.16.0/acp_adapter/__init__.py +1 -0
  6. bridgeagent-0.16.0/acp_adapter/__main__.py +5 -0
  7. bridgeagent-0.16.0/acp_adapter/auth.py +85 -0
  8. bridgeagent-0.16.0/acp_adapter/edit_approval.py +286 -0
  9. bridgeagent-0.16.0/acp_adapter/entry.py +266 -0
  10. bridgeagent-0.16.0/acp_adapter/events.py +279 -0
  11. bridgeagent-0.16.0/acp_adapter/permissions.py +168 -0
  12. bridgeagent-0.16.0/acp_adapter/server.py +1952 -0
  13. bridgeagent-0.16.0/acp_adapter/session.py +623 -0
  14. bridgeagent-0.16.0/acp_adapter/tools.py +1291 -0
  15. bridgeagent-0.16.0/agent/__init__.py +8 -0
  16. bridgeagent-0.16.0/agent/account_usage.py +550 -0
  17. bridgeagent-0.16.0/agent/agent_init.py +1739 -0
  18. bridgeagent-0.16.0/agent/agent_runtime_helpers.py +2482 -0
  19. bridgeagent-0.16.0/agent/anthropic_adapter.py +2303 -0
  20. bridgeagent-0.16.0/agent/async_utils.py +68 -0
  21. bridgeagent-0.16.0/agent/auxiliary_client.py +5928 -0
  22. bridgeagent-0.16.0/agent/azure_identity_adapter.py +555 -0
  23. bridgeagent-0.16.0/agent/background_review.py +597 -0
  24. bridgeagent-0.16.0/agent/bedrock_adapter.py +1277 -0
  25. bridgeagent-0.16.0/agent/browser_provider.py +175 -0
  26. bridgeagent-0.16.0/agent/browser_registry.py +192 -0
  27. bridgeagent-0.16.0/agent/chat_completion_helpers.py +2472 -0
  28. bridgeagent-0.16.0/agent/codex_responses_adapter.py +1260 -0
  29. bridgeagent-0.16.0/agent/codex_runtime.py +535 -0
  30. bridgeagent-0.16.0/agent/context_compressor.py +2078 -0
  31. bridgeagent-0.16.0/agent/context_engine.py +226 -0
  32. bridgeagent-0.16.0/agent/context_references.py +518 -0
  33. bridgeagent-0.16.0/agent/conversation_compression.py +785 -0
  34. bridgeagent-0.16.0/agent/conversation_loop.py +4965 -0
  35. bridgeagent-0.16.0/agent/copilot_acp_client.py +686 -0
  36. bridgeagent-0.16.0/agent/credential_persistence.py +174 -0
  37. bridgeagent-0.16.0/agent/credential_pool.py +2183 -0
  38. bridgeagent-0.16.0/agent/credential_sources.py +448 -0
  39. bridgeagent-0.16.0/agent/credits_tracker.py +723 -0
  40. bridgeagent-0.16.0/agent/curator.py +1843 -0
  41. bridgeagent-0.16.0/agent/curator_backup.py +695 -0
  42. bridgeagent-0.16.0/agent/display.py +1033 -0
  43. bridgeagent-0.16.0/agent/error_classifier.py +1319 -0
  44. bridgeagent-0.16.0/agent/file_safety.py +640 -0
  45. bridgeagent-0.16.0/agent/gemini_cloudcode_adapter.py +909 -0
  46. bridgeagent-0.16.0/agent/gemini_native_adapter.py +990 -0
  47. bridgeagent-0.16.0/agent/gemini_schema.py +99 -0
  48. bridgeagent-0.16.0/agent/google_code_assist.py +451 -0
  49. bridgeagent-0.16.0/agent/google_oauth.py +1067 -0
  50. bridgeagent-0.16.0/agent/i18n.py +302 -0
  51. bridgeagent-0.16.0/agent/image_gen_provider.py +324 -0
  52. bridgeagent-0.16.0/agent/image_gen_registry.py +145 -0
  53. bridgeagent-0.16.0/agent/image_routing.py +511 -0
  54. bridgeagent-0.16.0/agent/insights.py +930 -0
  55. bridgeagent-0.16.0/agent/iteration_budget.py +62 -0
  56. bridgeagent-0.16.0/agent/jiter_preload.py +39 -0
  57. bridgeagent-0.16.0/agent/lmstudio_reasoning.py +48 -0
  58. bridgeagent-0.16.0/agent/lsp/__init__.py +106 -0
  59. bridgeagent-0.16.0/agent/lsp/cli.py +299 -0
  60. bridgeagent-0.16.0/agent/lsp/client.py +943 -0
  61. bridgeagent-0.16.0/agent/lsp/eventlog.py +213 -0
  62. bridgeagent-0.16.0/agent/lsp/install.py +400 -0
  63. bridgeagent-0.16.0/agent/lsp/manager.py +639 -0
  64. bridgeagent-0.16.0/agent/lsp/protocol.py +196 -0
  65. bridgeagent-0.16.0/agent/lsp/range_shift.py +149 -0
  66. bridgeagent-0.16.0/agent/lsp/reporter.py +78 -0
  67. bridgeagent-0.16.0/agent/lsp/servers.py +1040 -0
  68. bridgeagent-0.16.0/agent/lsp/workspace.py +223 -0
  69. bridgeagent-0.16.0/agent/manual_compression_feedback.py +49 -0
  70. bridgeagent-0.16.0/agent/markdown_tables.py +309 -0
  71. bridgeagent-0.16.0/agent/memory_manager.py +683 -0
  72. bridgeagent-0.16.0/agent/memory_provider.py +296 -0
  73. bridgeagent-0.16.0/agent/message_sanitization.py +444 -0
  74. bridgeagent-0.16.0/agent/model_metadata.py +1925 -0
  75. bridgeagent-0.16.0/agent/models_dev.py +725 -0
  76. bridgeagent-0.16.0/agent/moonshot_schema.py +231 -0
  77. bridgeagent-0.16.0/agent/nous_rate_guard.py +325 -0
  78. bridgeagent-0.16.0/agent/onboarding.py +193 -0
  79. bridgeagent-0.16.0/agent/plugin_llm.py +1046 -0
  80. bridgeagent-0.16.0/agent/portal_tags.py +64 -0
  81. bridgeagent-0.16.0/agent/process_bootstrap.py +167 -0
  82. bridgeagent-0.16.0/agent/prompt_builder.py +1660 -0
  83. bridgeagent-0.16.0/agent/prompt_caching.py +79 -0
  84. bridgeagent-0.16.0/agent/rate_limit_tracker.py +246 -0
  85. bridgeagent-0.16.0/agent/redact.py +497 -0
  86. bridgeagent-0.16.0/agent/retry_utils.py +57 -0
  87. bridgeagent-0.16.0/agent/runtime_cwd.py +62 -0
  88. bridgeagent-0.16.0/agent/secret_registry.py +223 -0
  89. bridgeagent-0.16.0/agent/secret_sources/__init__.py +13 -0
  90. bridgeagent-0.16.0/agent/secret_sources/bitwarden.py +690 -0
  91. bridgeagent-0.16.0/agent/shell_hooks.py +847 -0
  92. bridgeagent-0.16.0/agent/skill_bundles.py +410 -0
  93. bridgeagent-0.16.0/agent/skill_commands.py +527 -0
  94. bridgeagent-0.16.0/agent/skill_preprocessing.py +139 -0
  95. bridgeagent-0.16.0/agent/skill_utils.py +677 -0
  96. bridgeagent-0.16.0/agent/stream_diag.py +280 -0
  97. bridgeagent-0.16.0/agent/subdirectory_hints.py +270 -0
  98. bridgeagent-0.16.0/agent/system_prompt.py +412 -0
  99. bridgeagent-0.16.0/agent/think_scrubber.py +386 -0
  100. bridgeagent-0.16.0/agent/title_generator.py +171 -0
  101. bridgeagent-0.16.0/agent/tool_dispatch_helpers.py +424 -0
  102. bridgeagent-0.16.0/agent/tool_executor.py +1422 -0
  103. bridgeagent-0.16.0/agent/tool_guardrails.py +475 -0
  104. bridgeagent-0.16.0/agent/tool_result_classification.py +26 -0
  105. bridgeagent-0.16.0/agent/trajectory.py +56 -0
  106. bridgeagent-0.16.0/agent/transcription_provider.py +193 -0
  107. bridgeagent-0.16.0/agent/transcription_registry.py +122 -0
  108. bridgeagent-0.16.0/agent/transports/__init__.py +68 -0
  109. bridgeagent-0.16.0/agent/transports/anthropic.py +189 -0
  110. bridgeagent-0.16.0/agent/transports/base.py +89 -0
  111. bridgeagent-0.16.0/agent/transports/bedrock.py +154 -0
  112. bridgeagent-0.16.0/agent/transports/chat_completions.py +704 -0
  113. bridgeagent-0.16.0/agent/transports/codex.py +359 -0
  114. bridgeagent-0.16.0/agent/transports/codex_app_server.py +399 -0
  115. bridgeagent-0.16.0/agent/transports/codex_app_server_session.py +849 -0
  116. bridgeagent-0.16.0/agent/transports/codex_event_projector.py +312 -0
  117. bridgeagent-0.16.0/agent/transports/hermes_tools_mcp_server.py +233 -0
  118. bridgeagent-0.16.0/agent/transports/types.py +162 -0
  119. bridgeagent-0.16.0/agent/tts_provider.py +274 -0
  120. bridgeagent-0.16.0/agent/tts_registry.py +133 -0
  121. bridgeagent-0.16.0/agent/usage_pricing.py +905 -0
  122. bridgeagent-0.16.0/agent/video_gen_provider.py +299 -0
  123. bridgeagent-0.16.0/agent/video_gen_registry.py +117 -0
  124. bridgeagent-0.16.0/agent/web_search_provider.py +185 -0
  125. bridgeagent-0.16.0/agent/web_search_registry.py +245 -0
  126. bridgeagent-0.16.0/batch_runner.py +1321 -0
  127. bridgeagent-0.16.0/bridge_bootstrap.py +129 -0
  128. bridgeagent-0.16.0/bridge_cli/__init__.py +47 -0
  129. bridgeagent-0.16.0/bridge_cli/_parser.py +397 -0
  130. bridgeagent-0.16.0/bridge_cli/_subprocess_compat.py +234 -0
  131. bridgeagent-0.16.0/bridge_cli/auth.py +7706 -0
  132. bridgeagent-0.16.0/bridge_cli/auth_commands.py +821 -0
  133. bridgeagent-0.16.0/bridge_cli/azure_detect.py +406 -0
  134. bridgeagent-0.16.0/bridge_cli/backup.py +1043 -0
  135. bridgeagent-0.16.0/bridge_cli/banner.py +797 -0
  136. bridgeagent-0.16.0/bridge_cli/browser_connect.py +217 -0
  137. bridgeagent-0.16.0/bridge_cli/build_info.py +51 -0
  138. bridgeagent-0.16.0/bridge_cli/bundles.py +229 -0
  139. bridgeagent-0.16.0/bridge_cli/callbacks.py +242 -0
  140. bridgeagent-0.16.0/bridge_cli/checkpoints.py +244 -0
  141. bridgeagent-0.16.0/bridge_cli/claw.py +809 -0
  142. bridgeagent-0.16.0/bridge_cli/cli_output.py +77 -0
  143. bridgeagent-0.16.0/bridge_cli/clipboard.py +494 -0
  144. bridgeagent-0.16.0/bridge_cli/codex_models.py +206 -0
  145. bridgeagent-0.16.0/bridge_cli/codex_runtime_plugin_migration.py +757 -0
  146. bridgeagent-0.16.0/bridge_cli/codex_runtime_switch.py +266 -0
  147. bridgeagent-0.16.0/bridge_cli/colors.py +38 -0
  148. bridgeagent-0.16.0/bridge_cli/commands.py +1743 -0
  149. bridgeagent-0.16.0/bridge_cli/completion.py +319 -0
  150. bridgeagent-0.16.0/bridge_cli/config.py +6478 -0
  151. bridgeagent-0.16.0/bridge_cli/container_boot.py +395 -0
  152. bridgeagent-0.16.0/bridge_cli/copilot_auth.py +392 -0
  153. bridgeagent-0.16.0/bridge_cli/cron.py +374 -0
  154. bridgeagent-0.16.0/bridge_cli/curator.py +598 -0
  155. bridgeagent-0.16.0/bridge_cli/curses_ui.py +872 -0
  156. bridgeagent-0.16.0/bridge_cli/dashboard_auth/__init__.py +42 -0
  157. bridgeagent-0.16.0/bridge_cli/dashboard_auth/audit.py +87 -0
  158. bridgeagent-0.16.0/bridge_cli/dashboard_auth/base.py +220 -0
  159. bridgeagent-0.16.0/bridge_cli/dashboard_auth/cookies.py +247 -0
  160. bridgeagent-0.16.0/bridge_cli/dashboard_auth/login_page.py +534 -0
  161. bridgeagent-0.16.0/bridge_cli/dashboard_auth/middleware.py +367 -0
  162. bridgeagent-0.16.0/bridge_cli/dashboard_auth/prefix.py +157 -0
  163. bridgeagent-0.16.0/bridge_cli/dashboard_auth/public_paths.py +49 -0
  164. bridgeagent-0.16.0/bridge_cli/dashboard_auth/registry.py +58 -0
  165. bridgeagent-0.16.0/bridge_cli/dashboard_auth/routes.py +621 -0
  166. bridgeagent-0.16.0/bridge_cli/dashboard_auth/ws_tickets.py +161 -0
  167. bridgeagent-0.16.0/bridge_cli/dashboard_register.py +300 -0
  168. bridgeagent-0.16.0/bridge_cli/debug.py +829 -0
  169. bridgeagent-0.16.0/bridge_cli/default_soul.py +11 -0
  170. bridgeagent-0.16.0/bridge_cli/dep_ensure.py +159 -0
  171. bridgeagent-0.16.0/bridge_cli/dingtalk_auth.py +293 -0
  172. bridgeagent-0.16.0/bridge_cli/doctor.py +2183 -0
  173. bridgeagent-0.16.0/bridge_cli/dump.py +349 -0
  174. bridgeagent-0.16.0/bridge_cli/env_loader.py +344 -0
  175. bridgeagent-0.16.0/bridge_cli/fallback_cmd.py +354 -0
  176. bridgeagent-0.16.0/bridge_cli/fallback_config.py +72 -0
  177. bridgeagent-0.16.0/bridge_cli/gateway.py +6755 -0
  178. bridgeagent-0.16.0/bridge_cli/gateway_windows.py +1311 -0
  179. bridgeagent-0.16.0/bridge_cli/goals.py +912 -0
  180. bridgeagent-0.16.0/bridge_cli/gui_uninstall.py +290 -0
  181. bridgeagent-0.16.0/bridge_cli/hooks.py +385 -0
  182. bridgeagent-0.16.0/bridge_cli/inventory.py +410 -0
  183. bridgeagent-0.16.0/bridge_cli/kanban.py +2830 -0
  184. bridgeagent-0.16.0/bridge_cli/kanban_db.py +7659 -0
  185. bridgeagent-0.16.0/bridge_cli/kanban_decompose.py +477 -0
  186. bridgeagent-0.16.0/bridge_cli/kanban_diagnostics.py +1107 -0
  187. bridgeagent-0.16.0/bridge_cli/kanban_specify.py +271 -0
  188. bridgeagent-0.16.0/bridge_cli/kanban_swarm.py +279 -0
  189. bridgeagent-0.16.0/bridge_cli/logs.py +394 -0
  190. bridgeagent-0.16.0/bridge_cli/loop.py +367 -0
  191. bridgeagent-0.16.0/bridge_cli/main.py +16632 -0
  192. bridgeagent-0.16.0/bridge_cli/managed_uv.py +254 -0
  193. bridgeagent-0.16.0/bridge_cli/mcp_catalog.py +775 -0
  194. bridgeagent-0.16.0/bridge_cli/mcp_config.py +1217 -0
  195. bridgeagent-0.16.0/bridge_cli/mcp_picker.py +322 -0
  196. bridgeagent-0.16.0/bridge_cli/mcp_startup.py +59 -0
  197. bridgeagent-0.16.0/bridge_cli/memory_setup.py +472 -0
  198. bridgeagent-0.16.0/bridge_cli/middleware.py +313 -0
  199. bridgeagent-0.16.0/bridge_cli/migrate.py +115 -0
  200. bridgeagent-0.16.0/bridge_cli/model_catalog.py +363 -0
  201. bridgeagent-0.16.0/bridge_cli/model_normalize.py +472 -0
  202. bridgeagent-0.16.0/bridge_cli/model_switch.py +2023 -0
  203. bridgeagent-0.16.0/bridge_cli/models.py +4092 -0
  204. bridgeagent-0.16.0/bridge_cli/nous_account.py +764 -0
  205. bridgeagent-0.16.0/bridge_cli/nous_subscription.py +1121 -0
  206. bridgeagent-0.16.0/bridge_cli/oneshot.py +381 -0
  207. bridgeagent-0.16.0/bridge_cli/pairing.py +115 -0
  208. bridgeagent-0.16.0/bridge_cli/partial_compress.py +235 -0
  209. bridgeagent-0.16.0/bridge_cli/platforms.py +83 -0
  210. bridgeagent-0.16.0/bridge_cli/plugins.py +1946 -0
  211. bridgeagent-0.16.0/bridge_cli/plugins_cmd.py +1691 -0
  212. bridgeagent-0.16.0/bridge_cli/portal_cli.py +245 -0
  213. bridgeagent-0.16.0/bridge_cli/profile_describer.py +298 -0
  214. bridgeagent-0.16.0/bridge_cli/profile_distribution.py +721 -0
  215. bridgeagent-0.16.0/bridge_cli/profiles.py +1664 -0
  216. bridgeagent-0.16.0/bridge_cli/prompt_size.py +153 -0
  217. bridgeagent-0.16.0/bridge_cli/providers.py +731 -0
  218. bridgeagent-0.16.0/bridge_cli/proxy/__init__.py +20 -0
  219. bridgeagent-0.16.0/bridge_cli/proxy/adapters/__init__.py +37 -0
  220. bridgeagent-0.16.0/bridge_cli/proxy/adapters/base.py +108 -0
  221. bridgeagent-0.16.0/bridge_cli/proxy/adapters/nous_portal.py +189 -0
  222. bridgeagent-0.16.0/bridge_cli/proxy/adapters/xai.py +145 -0
  223. bridgeagent-0.16.0/bridge_cli/proxy/cli.py +142 -0
  224. bridgeagent-0.16.0/bridge_cli/proxy/server.py +296 -0
  225. bridgeagent-0.16.0/bridge_cli/psutil_android.py +108 -0
  226. bridgeagent-0.16.0/bridge_cli/pt_input_extras.py +120 -0
  227. bridgeagent-0.16.0/bridge_cli/pty_bridge.py +276 -0
  228. bridgeagent-0.16.0/bridge_cli/relaunch.py +206 -0
  229. bridgeagent-0.16.0/bridge_cli/runtime_provider.py +1694 -0
  230. bridgeagent-0.16.0/bridge_cli/scripts/install.ps1 +3231 -0
  231. bridgeagent-0.16.0/bridge_cli/scripts/install.sh +2913 -0
  232. bridgeagent-0.16.0/bridge_cli/secret_prompt.py +126 -0
  233. bridgeagent-0.16.0/bridge_cli/secrets_cli.py +600 -0
  234. bridgeagent-0.16.0/bridge_cli/security_advisories.py +453 -0
  235. bridgeagent-0.16.0/bridge_cli/security_audit.py +576 -0
  236. bridgeagent-0.16.0/bridge_cli/send_cmd.py +445 -0
  237. bridgeagent-0.16.0/bridge_cli/service_manager.py +937 -0
  238. bridgeagent-0.16.0/bridge_cli/session_recap.py +316 -0
  239. bridgeagent-0.16.0/bridge_cli/setup.py +3361 -0
  240. bridgeagent-0.16.0/bridge_cli/skills_config.py +199 -0
  241. bridgeagent-0.16.0/bridge_cli/skills_hub.py +1913 -0
  242. bridgeagent-0.16.0/bridge_cli/skin_engine.py +926 -0
  243. bridgeagent-0.16.0/bridge_cli/slack_cli.py +159 -0
  244. bridgeagent-0.16.0/bridge_cli/status.py +586 -0
  245. bridgeagent-0.16.0/bridge_cli/stdio.py +256 -0
  246. bridgeagent-0.16.0/bridge_cli/telegram_managed_bot.py +358 -0
  247. bridgeagent-0.16.0/bridge_cli/timeouts.py +82 -0
  248. bridgeagent-0.16.0/bridge_cli/tips.py +486 -0
  249. bridgeagent-0.16.0/bridge_cli/tools_config.py +3933 -0
  250. bridgeagent-0.16.0/bridge_cli/tui_dist/entry.js +74917 -0
  251. bridgeagent-0.16.0/bridge_cli/uninstall.py +934 -0
  252. bridgeagent-0.16.0/bridge_cli/voice.py +846 -0
  253. bridgeagent-0.16.0/bridge_cli/web_dist/assets/Collapse-Bold-mgICk9-_.woff2 +0 -0
  254. bridgeagent-0.16.0/bridge_cli/web_dist/assets/Collapse-Regular-DysayoTY.woff2 +0 -0
  255. bridgeagent-0.16.0/bridge_cli/web_dist/assets/Mondwest-Regular-CWscgue7.woff2 +0 -0
  256. bridgeagent-0.16.0/bridge_cli/web_dist/assets/RulesCompressed-Medium-CA76_CrB.woff2 +0 -0
  257. bridgeagent-0.16.0/bridge_cli/web_dist/assets/RulesCompressed-Regular-BSXFyF4x.woff2 +0 -0
  258. bridgeagent-0.16.0/bridge_cli/web_dist/assets/RulesExpanded-Bold-DZA7s8Pa.woff2 +0 -0
  259. bridgeagent-0.16.0/bridge_cli/web_dist/assets/RulesExpanded-Regular-l8uVympt.woff2 +0 -0
  260. bridgeagent-0.16.0/bridge_cli/web_dist/assets/filler-bg0-DxMaWJpb.webp +0 -0
  261. bridgeagent-0.16.0/bridge_cli/web_dist/assets/index-DHRxol4O.js +170 -0
  262. bridgeagent-0.16.0/bridge_cli/web_dist/assets/index-Drzx8NO1.css +1 -0
  263. bridgeagent-0.16.0/bridge_cli/web_dist/favicon.ico +0 -0
  264. bridgeagent-0.16.0/bridge_cli/web_dist/fonts/Collapse-Bold.woff2 +0 -0
  265. bridgeagent-0.16.0/bridge_cli/web_dist/fonts/Collapse-Regular.woff2 +0 -0
  266. bridgeagent-0.16.0/bridge_cli/web_dist/fonts/Mondwest-Regular.woff2 +0 -0
  267. bridgeagent-0.16.0/bridge_cli/web_dist/fonts/RulesCompressed-Medium.woff2 +0 -0
  268. bridgeagent-0.16.0/bridge_cli/web_dist/fonts/RulesCompressed-Regular.woff2 +0 -0
  269. bridgeagent-0.16.0/bridge_cli/web_dist/fonts/RulesExpanded-Bold.woff2 +0 -0
  270. bridgeagent-0.16.0/bridge_cli/web_dist/fonts/RulesExpanded-Regular.woff2 +0 -0
  271. bridgeagent-0.16.0/bridge_cli/web_dist/fonts-terminal/JetBrainsMono-Bold.woff2 +0 -0
  272. bridgeagent-0.16.0/bridge_cli/web_dist/fonts-terminal/JetBrainsMono-Italic.woff2 +0 -0
  273. bridgeagent-0.16.0/bridge_cli/web_dist/fonts-terminal/JetBrainsMono-Regular.woff2 +0 -0
  274. bridgeagent-0.16.0/bridge_cli/web_dist/index.html +17 -0
  275. bridgeagent-0.16.0/bridge_cli/web_server.py +10028 -0
  276. bridgeagent-0.16.0/bridge_cli/webhook.py +298 -0
  277. bridgeagent-0.16.0/bridge_cli/xai_retirement.py +253 -0
  278. bridgeagent-0.16.0/bridge_constants.py +482 -0
  279. bridgeagent-0.16.0/bridge_logging.py +536 -0
  280. bridgeagent-0.16.0/bridge_state.py +4491 -0
  281. bridgeagent-0.16.0/bridge_time.py +104 -0
  282. bridgeagent-0.16.0/bridgeagent.egg-info/PKG-INFO +374 -0
  283. bridgeagent-0.16.0/bridgeagent.egg-info/SOURCES.txt +944 -0
  284. bridgeagent-0.16.0/bridgeagent.egg-info/dependency_links.txt +1 -0
  285. bridgeagent-0.16.0/bridgeagent.egg-info/entry_points.txt +7 -0
  286. bridgeagent-0.16.0/bridgeagent.egg-info/requires.txt +187 -0
  287. bridgeagent-0.16.0/bridgeagent.egg-info/top_level.txt +23 -0
  288. bridgeagent-0.16.0/cli.py +16290 -0
  289. bridgeagent-0.16.0/cron/__init__.py +42 -0
  290. bridgeagent-0.16.0/cron/jobs.py +1306 -0
  291. bridgeagent-0.16.0/cron/scheduler.py +2339 -0
  292. bridgeagent-0.16.0/gateway/__init__.py +35 -0
  293. bridgeagent-0.16.0/gateway/assets/telegram-botfather-threads-settings.jpg +0 -0
  294. bridgeagent-0.16.0/gateway/builtin_hooks/__init__.py +1 -0
  295. bridgeagent-0.16.0/gateway/channel_directory.py +357 -0
  296. bridgeagent-0.16.0/gateway/config.py +2004 -0
  297. bridgeagent-0.16.0/gateway/delivery.py +433 -0
  298. bridgeagent-0.16.0/gateway/display_config.py +240 -0
  299. bridgeagent-0.16.0/gateway/hooks.py +210 -0
  300. bridgeagent-0.16.0/gateway/memory_monitor.py +230 -0
  301. bridgeagent-0.16.0/gateway/mirror.py +168 -0
  302. bridgeagent-0.16.0/gateway/pairing.py +450 -0
  303. bridgeagent-0.16.0/gateway/platform_registry.py +260 -0
  304. bridgeagent-0.16.0/gateway/platforms/__init__.py +45 -0
  305. bridgeagent-0.16.0/gateway/platforms/_http_client_limits.py +84 -0
  306. bridgeagent-0.16.0/gateway/platforms/api_server.py +4359 -0
  307. bridgeagent-0.16.0/gateway/platforms/base.py +4818 -0
  308. bridgeagent-0.16.0/gateway/platforms/bluebubbles.py +1038 -0
  309. bridgeagent-0.16.0/gateway/platforms/dingtalk.py +1503 -0
  310. bridgeagent-0.16.0/gateway/platforms/email.py +773 -0
  311. bridgeagent-0.16.0/gateway/platforms/feishu.py +5163 -0
  312. bridgeagent-0.16.0/gateway/platforms/feishu_comment.py +1382 -0
  313. bridgeagent-0.16.0/gateway/platforms/feishu_comment_rules.py +429 -0
  314. bridgeagent-0.16.0/gateway/platforms/feishu_meeting_invite.py +212 -0
  315. bridgeagent-0.16.0/gateway/platforms/helpers.py +278 -0
  316. bridgeagent-0.16.0/gateway/platforms/matrix.py +2983 -0
  317. bridgeagent-0.16.0/gateway/platforms/msgraph_webhook.py +421 -0
  318. bridgeagent-0.16.0/gateway/platforms/qqbot/__init__.py +91 -0
  319. bridgeagent-0.16.0/gateway/platforms/qqbot/adapter.py +3196 -0
  320. bridgeagent-0.16.0/gateway/platforms/qqbot/chunked_upload.py +602 -0
  321. bridgeagent-0.16.0/gateway/platforms/qqbot/constants.py +74 -0
  322. bridgeagent-0.16.0/gateway/platforms/qqbot/crypto.py +45 -0
  323. bridgeagent-0.16.0/gateway/platforms/qqbot/keyboards.py +473 -0
  324. bridgeagent-0.16.0/gateway/platforms/qqbot/onboard.py +220 -0
  325. bridgeagent-0.16.0/gateway/platforms/qqbot/utils.py +74 -0
  326. bridgeagent-0.16.0/gateway/platforms/signal.py +1543 -0
  327. bridgeagent-0.16.0/gateway/platforms/signal_rate_limit.py +369 -0
  328. bridgeagent-0.16.0/gateway/platforms/slack.py +3519 -0
  329. bridgeagent-0.16.0/gateway/platforms/sms.py +379 -0
  330. bridgeagent-0.16.0/gateway/platforms/telegram.py +6081 -0
  331. bridgeagent-0.16.0/gateway/platforms/telegram_network.py +259 -0
  332. bridgeagent-0.16.0/gateway/platforms/webhook.py +934 -0
  333. bridgeagent-0.16.0/gateway/platforms/wecom.py +1635 -0
  334. bridgeagent-0.16.0/gateway/platforms/wecom_callback.py +425 -0
  335. bridgeagent-0.16.0/gateway/platforms/wecom_crypto.py +142 -0
  336. bridgeagent-0.16.0/gateway/platforms/weixin.py +2247 -0
  337. bridgeagent-0.16.0/gateway/platforms/whatsapp.py +1387 -0
  338. bridgeagent-0.16.0/gateway/platforms/yuanbao.py +4941 -0
  339. bridgeagent-0.16.0/gateway/platforms/yuanbao_media.py +645 -0
  340. bridgeagent-0.16.0/gateway/platforms/yuanbao_proto.py +1209 -0
  341. bridgeagent-0.16.0/gateway/platforms/yuanbao_sticker.py +558 -0
  342. bridgeagent-0.16.0/gateway/restart.py +20 -0
  343. bridgeagent-0.16.0/gateway/run.py +20137 -0
  344. bridgeagent-0.16.0/gateway/runtime_footer.py +149 -0
  345. bridgeagent-0.16.0/gateway/session.py +1400 -0
  346. bridgeagent-0.16.0/gateway/session_context.py +194 -0
  347. bridgeagent-0.16.0/gateway/shutdown_forensics.py +462 -0
  348. bridgeagent-0.16.0/gateway/slash_access.py +229 -0
  349. bridgeagent-0.16.0/gateway/status.py +1115 -0
  350. bridgeagent-0.16.0/gateway/sticker_cache.py +124 -0
  351. bridgeagent-0.16.0/gateway/stream_consumer.py +1358 -0
  352. bridgeagent-0.16.0/gateway/stream_dispatch.py +132 -0
  353. bridgeagent-0.16.0/gateway/stream_events.py +171 -0
  354. bridgeagent-0.16.0/gateway/whatsapp_identity.py +155 -0
  355. bridgeagent-0.16.0/locales/af.yaml +357 -0
  356. bridgeagent-0.16.0/locales/de.yaml +357 -0
  357. bridgeagent-0.16.0/locales/en.yaml +372 -0
  358. bridgeagent-0.16.0/locales/es.yaml +357 -0
  359. bridgeagent-0.16.0/locales/fr.yaml +357 -0
  360. bridgeagent-0.16.0/locales/ga.yaml +361 -0
  361. bridgeagent-0.16.0/locales/hu.yaml +357 -0
  362. bridgeagent-0.16.0/locales/it.yaml +357 -0
  363. bridgeagent-0.16.0/locales/ja.yaml +357 -0
  364. bridgeagent-0.16.0/locales/ko.yaml +357 -0
  365. bridgeagent-0.16.0/locales/pt.yaml +357 -0
  366. bridgeagent-0.16.0/locales/ru.yaml +357 -0
  367. bridgeagent-0.16.0/locales/tr.yaml +357 -0
  368. bridgeagent-0.16.0/locales/uk.yaml +357 -0
  369. bridgeagent-0.16.0/locales/zh-hant.yaml +357 -0
  370. bridgeagent-0.16.0/locales/zh.yaml +357 -0
  371. bridgeagent-0.16.0/mcp_serve.py +897 -0
  372. bridgeagent-0.16.0/model_tools.py +1217 -0
  373. bridgeagent-0.16.0/optional-skills/DESCRIPTION.md +24 -0
  374. bridgeagent-0.16.0/optional-skills/autonomous-ai-agents/DESCRIPTION.md +2 -0
  375. bridgeagent-0.16.0/optional-skills/autonomous-ai-agents/antigravity-cli/SKILL.md +180 -0
  376. bridgeagent-0.16.0/optional-skills/autonomous-ai-agents/antigravity-cli/references/cli-docs.md +64 -0
  377. bridgeagent-0.16.0/optional-skills/autonomous-ai-agents/blackbox/SKILL.md +147 -0
  378. bridgeagent-0.16.0/optional-skills/autonomous-ai-agents/claude-code/SKILL.md +748 -0
  379. bridgeagent-0.16.0/optional-skills/autonomous-ai-agents/codex/SKILL.md +133 -0
  380. bridgeagent-0.16.0/optional-skills/autonomous-ai-agents/grok/SKILL.md +304 -0
  381. bridgeagent-0.16.0/optional-skills/autonomous-ai-agents/honcho/SKILL.md +435 -0
  382. bridgeagent-0.16.0/optional-skills/autonomous-ai-agents/opencode/SKILL.md +222 -0
  383. bridgeagent-0.16.0/optional-skills/autonomous-ai-agents/openhands/SKILL.md +152 -0
  384. bridgeagent-0.16.0/optional-skills/devops/bridgeagent-s6-container-supervision/SKILL.md +178 -0
  385. bridgeagent-0.16.0/optional-skills/devops/docker-management/SKILL.md +285 -0
  386. bridgeagent-0.16.0/optional-skills/devops/pinggy-tunnel/SKILL.md +312 -0
  387. bridgeagent-0.16.0/optional-skills/devops/watchers/SKILL.md +116 -0
  388. bridgeagent-0.16.0/optional-skills/devops/watchers/scripts/_watermark.py +148 -0
  389. bridgeagent-0.16.0/optional-skills/devops/watchers/scripts/watch_github.py +168 -0
  390. bridgeagent-0.16.0/optional-skills/devops/watchers/scripts/watch_http_json.py +131 -0
  391. bridgeagent-0.16.0/optional-skills/devops/watchers/scripts/watch_rss.py +121 -0
  392. bridgeagent-0.16.0/optional-skills/dogfood/DESCRIPTION.md +3 -0
  393. bridgeagent-0.16.0/optional-skills/dogfood/adversarial-ux-test/SKILL.md +194 -0
  394. bridgeagent-0.16.0/optional-skills/mcp/DESCRIPTION.md +3 -0
  395. bridgeagent-0.16.0/optional-skills/mcp/fastmcp/SKILL.md +304 -0
  396. bridgeagent-0.16.0/optional-skills/mcp/fastmcp/references/fastmcp-cli.md +110 -0
  397. bridgeagent-0.16.0/optional-skills/mcp/fastmcp/scripts/scaffold_fastmcp.py +56 -0
  398. bridgeagent-0.16.0/optional-skills/mcp/fastmcp/templates/api_wrapper.py +54 -0
  399. bridgeagent-0.16.0/optional-skills/mcp/fastmcp/templates/database_server.py +77 -0
  400. bridgeagent-0.16.0/optional-skills/mcp/fastmcp/templates/file_processor.py +55 -0
  401. bridgeagent-0.16.0/optional-skills/mcp/mcporter/SKILL.md +126 -0
  402. bridgeagent-0.16.0/optional-skills/migration/DESCRIPTION.md +2 -0
  403. bridgeagent-0.16.0/optional-skills/migration/openclaw-migration/SKILL.md +301 -0
  404. bridgeagent-0.16.0/optional-skills/migration/openclaw-migration/scripts/openclaw_to_hermes.py +3136 -0
  405. bridgeagent-0.16.0/optional-skills/productivity/telephony/SKILL.md +418 -0
  406. bridgeagent-0.16.0/optional-skills/productivity/telephony/scripts/telephony.py +1343 -0
  407. bridgeagent-0.16.0/optional-skills/research/darwinian-evolver/SKILL.md +202 -0
  408. bridgeagent-0.16.0/optional-skills/research/darwinian-evolver/scripts/parrot_openrouter.py +218 -0
  409. bridgeagent-0.16.0/optional-skills/research/darwinian-evolver/scripts/show_snapshot.py +92 -0
  410. bridgeagent-0.16.0/optional-skills/research/darwinian-evolver/templates/custom_problem_template.py +240 -0
  411. bridgeagent-0.16.0/optional-skills/research/duckduckgo-search/SKILL.md +242 -0
  412. bridgeagent-0.16.0/optional-skills/research/duckduckgo-search/scripts/duckduckgo.sh +28 -0
  413. bridgeagent-0.16.0/optional-skills/research/gitnexus-explorer/SKILL.md +217 -0
  414. bridgeagent-0.16.0/optional-skills/research/gitnexus-explorer/scripts/proxy.mjs +92 -0
  415. bridgeagent-0.16.0/optional-skills/research/parallel-cli/SKILL.md +394 -0
  416. bridgeagent-0.16.0/optional-skills/research/qmd/SKILL.md +444 -0
  417. bridgeagent-0.16.0/optional-skills/research/scrapling/SKILL.md +340 -0
  418. bridgeagent-0.16.0/optional-skills/research/searxng-search/SKILL.md +216 -0
  419. bridgeagent-0.16.0/optional-skills/research/searxng-search/scripts/searxng.sh +22 -0
  420. bridgeagent-0.16.0/optional-skills/security/1password/SKILL.md +166 -0
  421. bridgeagent-0.16.0/optional-skills/security/1password/references/cli-examples.md +31 -0
  422. bridgeagent-0.16.0/optional-skills/security/1password/references/get-started.md +21 -0
  423. bridgeagent-0.16.0/optional-skills/security/DESCRIPTION.md +3 -0
  424. bridgeagent-0.16.0/optional-skills/security/oss-forensics/SKILL.md +423 -0
  425. bridgeagent-0.16.0/optional-skills/security/oss-forensics/references/evidence-types.md +89 -0
  426. bridgeagent-0.16.0/optional-skills/security/oss-forensics/references/github-archive-guide.md +184 -0
  427. bridgeagent-0.16.0/optional-skills/security/oss-forensics/references/investigation-templates.md +131 -0
  428. bridgeagent-0.16.0/optional-skills/security/oss-forensics/references/recovery-techniques.md +164 -0
  429. bridgeagent-0.16.0/optional-skills/security/oss-forensics/scripts/evidence-store.py +313 -0
  430. bridgeagent-0.16.0/optional-skills/security/oss-forensics/templates/forensic-report.md +151 -0
  431. bridgeagent-0.16.0/optional-skills/security/oss-forensics/templates/malicious-package-report.md +43 -0
  432. bridgeagent-0.16.0/optional-skills/software-development/code-wiki/SKILL.md +448 -0
  433. bridgeagent-0.16.0/optional-skills/software-development/code-wiki/templates/README.md +31 -0
  434. bridgeagent-0.16.0/optional-skills/software-development/code-wiki/templates/architecture.md +30 -0
  435. bridgeagent-0.16.0/optional-skills/software-development/code-wiki/templates/getting-started.md +47 -0
  436. bridgeagent-0.16.0/optional-skills/software-development/code-wiki/templates/module.md +38 -0
  437. bridgeagent-0.16.0/optional-skills/software-development/rest-graphql-debug/SKILL.md +518 -0
  438. bridgeagent-0.16.0/optional-skills/software-development/subagent-driven-development/SKILL.md +355 -0
  439. bridgeagent-0.16.0/optional-skills/software-development/subagent-driven-development/references/context-budget-discipline.md +53 -0
  440. bridgeagent-0.16.0/optional-skills/software-development/subagent-driven-development/references/gates-taxonomy.md +93 -0
  441. bridgeagent-0.16.0/optional-skills/web-development/DESCRIPTION.md +5 -0
  442. bridgeagent-0.16.0/optional-skills/web-development/page-agent/SKILL.md +193 -0
  443. bridgeagent-0.16.0/plugins/__init__.py +1 -0
  444. bridgeagent-0.16.0/plugins/browser/browser_use/__init__.py +14 -0
  445. bridgeagent-0.16.0/plugins/browser/browser_use/plugin.yaml +7 -0
  446. bridgeagent-0.16.0/plugins/browser/browser_use/provider.py +317 -0
  447. bridgeagent-0.16.0/plugins/browser/browserbase/__init__.py +15 -0
  448. bridgeagent-0.16.0/plugins/browser/browserbase/plugin.yaml +7 -0
  449. bridgeagent-0.16.0/plugins/browser/browserbase/provider.py +297 -0
  450. bridgeagent-0.16.0/plugins/browser/firecrawl/__init__.py +16 -0
  451. bridgeagent-0.16.0/plugins/browser/firecrawl/plugin.yaml +7 -0
  452. bridgeagent-0.16.0/plugins/browser/firecrawl/provider.py +168 -0
  453. bridgeagent-0.16.0/plugins/context_engine/__init__.py +285 -0
  454. bridgeagent-0.16.0/plugins/dashboard_auth/basic/__init__.py +491 -0
  455. bridgeagent-0.16.0/plugins/dashboard_auth/basic/plugin.yaml +7 -0
  456. bridgeagent-0.16.0/plugins/dashboard_auth/nous/__init__.py +667 -0
  457. bridgeagent-0.16.0/plugins/dashboard_auth/nous/plugin.yaml +7 -0
  458. bridgeagent-0.16.0/plugins/dashboard_auth/self_hosted/__init__.py +736 -0
  459. bridgeagent-0.16.0/plugins/dashboard_auth/self_hosted/plugin.yaml +8 -0
  460. bridgeagent-0.16.0/plugins/disk-cleanup/README.md +51 -0
  461. bridgeagent-0.16.0/plugins/disk-cleanup/__init__.py +316 -0
  462. bridgeagent-0.16.0/plugins/disk-cleanup/disk_cleanup.py +560 -0
  463. bridgeagent-0.16.0/plugins/disk-cleanup/plugin.yaml +7 -0
  464. bridgeagent-0.16.0/plugins/google_meet/README.md +131 -0
  465. bridgeagent-0.16.0/plugins/google_meet/__init__.py +103 -0
  466. bridgeagent-0.16.0/plugins/google_meet/audio_bridge.py +244 -0
  467. bridgeagent-0.16.0/plugins/google_meet/cli.py +477 -0
  468. bridgeagent-0.16.0/plugins/google_meet/meet_bot.py +852 -0
  469. bridgeagent-0.16.0/plugins/google_meet/node/__init__.py +54 -0
  470. bridgeagent-0.16.0/plugins/google_meet/node/cli.py +125 -0
  471. bridgeagent-0.16.0/plugins/google_meet/node/client.py +107 -0
  472. bridgeagent-0.16.0/plugins/google_meet/node/protocol.py +124 -0
  473. bridgeagent-0.16.0/plugins/google_meet/node/registry.py +112 -0
  474. bridgeagent-0.16.0/plugins/google_meet/node/server.py +200 -0
  475. bridgeagent-0.16.0/plugins/google_meet/plugin.yaml +16 -0
  476. bridgeagent-0.16.0/plugins/google_meet/process_manager.py +323 -0
  477. bridgeagent-0.16.0/plugins/google_meet/realtime/__init__.py +10 -0
  478. bridgeagent-0.16.0/plugins/google_meet/realtime/openai_client.py +332 -0
  479. bridgeagent-0.16.0/plugins/google_meet/tools.py +348 -0
  480. bridgeagent-0.16.0/plugins/hermes-achievements/README.md +150 -0
  481. bridgeagent-0.16.0/plugins/hermes-achievements/dashboard/dist/index.js +726 -0
  482. bridgeagent-0.16.0/plugins/hermes-achievements/dashboard/dist/style.css +146 -0
  483. bridgeagent-0.16.0/plugins/hermes-achievements/dashboard/manifest.json +11 -0
  484. bridgeagent-0.16.0/plugins/hermes-achievements/dashboard/plugin_api.py +1061 -0
  485. bridgeagent-0.16.0/plugins/hermes-achievements/tests/test_achievement_engine.py +156 -0
  486. bridgeagent-0.16.0/plugins/image_gen/fal/__init__.py +182 -0
  487. bridgeagent-0.16.0/plugins/image_gen/fal/plugin.yaml +7 -0
  488. bridgeagent-0.16.0/plugins/image_gen/krea/__init__.py +548 -0
  489. bridgeagent-0.16.0/plugins/image_gen/krea/plugin.yaml +7 -0
  490. bridgeagent-0.16.0/plugins/image_gen/openai/__init__.py +316 -0
  491. bridgeagent-0.16.0/plugins/image_gen/openai/plugin.yaml +7 -0
  492. bridgeagent-0.16.0/plugins/image_gen/openai-codex/__init__.py +442 -0
  493. bridgeagent-0.16.0/plugins/image_gen/openai-codex/plugin.yaml +5 -0
  494. bridgeagent-0.16.0/plugins/image_gen/xai/__init__.py +334 -0
  495. bridgeagent-0.16.0/plugins/image_gen/xai/plugin.yaml +7 -0
  496. bridgeagent-0.16.0/plugins/kanban/dashboard/dist/index.js +3875 -0
  497. bridgeagent-0.16.0/plugins/kanban/dashboard/dist/style.css +1583 -0
  498. bridgeagent-0.16.0/plugins/kanban/dashboard/manifest.json +14 -0
  499. bridgeagent-0.16.0/plugins/kanban/dashboard/plugin_api.py +2454 -0
  500. bridgeagent-0.16.0/plugins/memory/__init__.py +450 -0
  501. bridgeagent-0.16.0/plugins/memory/byterover/README.md +41 -0
  502. bridgeagent-0.16.0/plugins/memory/byterover/__init__.py +383 -0
  503. bridgeagent-0.16.0/plugins/memory/byterover/plugin.yaml +9 -0
  504. bridgeagent-0.16.0/plugins/memory/hindsight/README.md +147 -0
  505. bridgeagent-0.16.0/plugins/memory/hindsight/__init__.py +1777 -0
  506. bridgeagent-0.16.0/plugins/memory/hindsight/plugin.yaml +8 -0
  507. bridgeagent-0.16.0/plugins/memory/holographic/README.md +36 -0
  508. bridgeagent-0.16.0/plugins/memory/holographic/__init__.py +408 -0
  509. bridgeagent-0.16.0/plugins/memory/holographic/holographic.py +203 -0
  510. bridgeagent-0.16.0/plugins/memory/holographic/plugin.yaml +5 -0
  511. bridgeagent-0.16.0/plugins/memory/holographic/retrieval.py +593 -0
  512. bridgeagent-0.16.0/plugins/memory/holographic/store.py +578 -0
  513. bridgeagent-0.16.0/plugins/memory/honcho/README.md +368 -0
  514. bridgeagent-0.16.0/plugins/memory/honcho/__init__.py +1419 -0
  515. bridgeagent-0.16.0/plugins/memory/honcho/cli.py +1685 -0
  516. bridgeagent-0.16.0/plugins/memory/honcho/client.py +872 -0
  517. bridgeagent-0.16.0/plugins/memory/honcho/plugin.yaml +7 -0
  518. bridgeagent-0.16.0/plugins/memory/honcho/session.py +1341 -0
  519. bridgeagent-0.16.0/plugins/memory/mem0/README.md +38 -0
  520. bridgeagent-0.16.0/plugins/memory/mem0/__init__.py +374 -0
  521. bridgeagent-0.16.0/plugins/memory/mem0/plugin.yaml +5 -0
  522. bridgeagent-0.16.0/plugins/memory/openviking/README.md +40 -0
  523. bridgeagent-0.16.0/plugins/memory/openviking/__init__.py +978 -0
  524. bridgeagent-0.16.0/plugins/memory/openviking/plugin.yaml +9 -0
  525. bridgeagent-0.16.0/plugins/memory/retaindb/README.md +40 -0
  526. bridgeagent-0.16.0/plugins/memory/retaindb/__init__.py +766 -0
  527. bridgeagent-0.16.0/plugins/memory/retaindb/plugin.yaml +7 -0
  528. bridgeagent-0.16.0/plugins/memory/supermemory/README.md +111 -0
  529. bridgeagent-0.16.0/plugins/memory/supermemory/__init__.py +897 -0
  530. bridgeagent-0.16.0/plugins/memory/supermemory/plugin.yaml +5 -0
  531. bridgeagent-0.16.0/plugins/model-providers/README.md +70 -0
  532. bridgeagent-0.16.0/plugins/model-providers/alibaba/__init__.py +13 -0
  533. bridgeagent-0.16.0/plugins/model-providers/alibaba/plugin.yaml +5 -0
  534. bridgeagent-0.16.0/plugins/model-providers/alibaba-coding-plan/__init__.py +21 -0
  535. bridgeagent-0.16.0/plugins/model-providers/alibaba-coding-plan/plugin.yaml +5 -0
  536. bridgeagent-0.16.0/plugins/model-providers/anthropic/__init__.py +52 -0
  537. bridgeagent-0.16.0/plugins/model-providers/anthropic/plugin.yaml +5 -0
  538. bridgeagent-0.16.0/plugins/model-providers/arcee/__init__.py +13 -0
  539. bridgeagent-0.16.0/plugins/model-providers/arcee/plugin.yaml +5 -0
  540. bridgeagent-0.16.0/plugins/model-providers/azure-foundry/__init__.py +21 -0
  541. bridgeagent-0.16.0/plugins/model-providers/azure-foundry/plugin.yaml +5 -0
  542. bridgeagent-0.16.0/plugins/model-providers/bedrock/__init__.py +29 -0
  543. bridgeagent-0.16.0/plugins/model-providers/bedrock/plugin.yaml +5 -0
  544. bridgeagent-0.16.0/plugins/model-providers/copilot/__init__.py +58 -0
  545. bridgeagent-0.16.0/plugins/model-providers/copilot/plugin.yaml +5 -0
  546. bridgeagent-0.16.0/plugins/model-providers/copilot-acp/__init__.py +34 -0
  547. bridgeagent-0.16.0/plugins/model-providers/copilot-acp/plugin.yaml +5 -0
  548. bridgeagent-0.16.0/plugins/model-providers/custom/__init__.py +68 -0
  549. bridgeagent-0.16.0/plugins/model-providers/custom/plugin.yaml +5 -0
  550. bridgeagent-0.16.0/plugins/model-providers/deepseek/__init__.py +100 -0
  551. bridgeagent-0.16.0/plugins/model-providers/deepseek/plugin.yaml +5 -0
  552. bridgeagent-0.16.0/plugins/model-providers/gemini/__init__.py +72 -0
  553. bridgeagent-0.16.0/plugins/model-providers/gemini/plugin.yaml +5 -0
  554. bridgeagent-0.16.0/plugins/model-providers/gmi/__init__.py +31 -0
  555. bridgeagent-0.16.0/plugins/model-providers/gmi/plugin.yaml +5 -0
  556. bridgeagent-0.16.0/plugins/model-providers/huggingface/__init__.py +20 -0
  557. bridgeagent-0.16.0/plugins/model-providers/huggingface/plugin.yaml +5 -0
  558. bridgeagent-0.16.0/plugins/model-providers/kilocode/__init__.py +14 -0
  559. bridgeagent-0.16.0/plugins/model-providers/kilocode/plugin.yaml +5 -0
  560. bridgeagent-0.16.0/plugins/model-providers/kimi-coding/__init__.py +80 -0
  561. bridgeagent-0.16.0/plugins/model-providers/kimi-coding/plugin.yaml +5 -0
  562. bridgeagent-0.16.0/plugins/model-providers/minimax/__init__.py +45 -0
  563. bridgeagent-0.16.0/plugins/model-providers/minimax/plugin.yaml +5 -0
  564. bridgeagent-0.16.0/plugins/model-providers/nous/__init__.py +54 -0
  565. bridgeagent-0.16.0/plugins/model-providers/nous/plugin.yaml +5 -0
  566. bridgeagent-0.16.0/plugins/model-providers/novita/__init__.py +27 -0
  567. bridgeagent-0.16.0/plugins/model-providers/novita/plugin.yaml +5 -0
  568. bridgeagent-0.16.0/plugins/model-providers/nvidia/__init__.py +21 -0
  569. bridgeagent-0.16.0/plugins/model-providers/nvidia/plugin.yaml +5 -0
  570. bridgeagent-0.16.0/plugins/model-providers/ollama-cloud/__init__.py +14 -0
  571. bridgeagent-0.16.0/plugins/model-providers/ollama-cloud/plugin.yaml +5 -0
  572. bridgeagent-0.16.0/plugins/model-providers/openai-codex/__init__.py +15 -0
  573. bridgeagent-0.16.0/plugins/model-providers/openai-codex/plugin.yaml +5 -0
  574. bridgeagent-0.16.0/plugins/model-providers/opencode-zen/__init__.py +126 -0
  575. bridgeagent-0.16.0/plugins/model-providers/opencode-zen/plugin.yaml +5 -0
  576. bridgeagent-0.16.0/plugins/model-providers/openrouter/__init__.py +117 -0
  577. bridgeagent-0.16.0/plugins/model-providers/openrouter/plugin.yaml +5 -0
  578. bridgeagent-0.16.0/plugins/model-providers/qwen-oauth/__init__.py +82 -0
  579. bridgeagent-0.16.0/plugins/model-providers/qwen-oauth/plugin.yaml +5 -0
  580. bridgeagent-0.16.0/plugins/model-providers/stepfun/__init__.py +14 -0
  581. bridgeagent-0.16.0/plugins/model-providers/stepfun/plugin.yaml +5 -0
  582. bridgeagent-0.16.0/plugins/model-providers/xai/__init__.py +15 -0
  583. bridgeagent-0.16.0/plugins/model-providers/xai/plugin.yaml +5 -0
  584. bridgeagent-0.16.0/plugins/model-providers/xiaomi/__init__.py +15 -0
  585. bridgeagent-0.16.0/plugins/model-providers/xiaomi/plugin.yaml +5 -0
  586. bridgeagent-0.16.0/plugins/model-providers/zai/__init__.py +21 -0
  587. bridgeagent-0.16.0/plugins/model-providers/zai/plugin.yaml +5 -0
  588. bridgeagent-0.16.0/plugins/observability/langfuse/README.md +53 -0
  589. bridgeagent-0.16.0/plugins/observability/langfuse/__init__.py +1004 -0
  590. bridgeagent-0.16.0/plugins/observability/langfuse/plugin.yaml +14 -0
  591. bridgeagent-0.16.0/plugins/observability/nemo_relay/README.md +553 -0
  592. bridgeagent-0.16.0/plugins/observability/nemo_relay/__init__.py +836 -0
  593. bridgeagent-0.16.0/plugins/observability/nemo_relay/plugin.yaml +20 -0
  594. bridgeagent-0.16.0/plugins/platforms/discord/__init__.py +3 -0
  595. bridgeagent-0.16.0/plugins/platforms/discord/adapter.py +6520 -0
  596. bridgeagent-0.16.0/plugins/platforms/discord/plugin.yaml +34 -0
  597. bridgeagent-0.16.0/plugins/platforms/discord/voice_mixer.py +378 -0
  598. bridgeagent-0.16.0/plugins/platforms/google_chat/__init__.py +3 -0
  599. bridgeagent-0.16.0/plugins/platforms/google_chat/adapter.py +3342 -0
  600. bridgeagent-0.16.0/plugins/platforms/google_chat/oauth.py +667 -0
  601. bridgeagent-0.16.0/plugins/platforms/google_chat/plugin.yaml +39 -0
  602. bridgeagent-0.16.0/plugins/platforms/homeassistant/__init__.py +3 -0
  603. bridgeagent-0.16.0/plugins/platforms/homeassistant/adapter.py +577 -0
  604. bridgeagent-0.16.0/plugins/platforms/homeassistant/plugin.yaml +22 -0
  605. bridgeagent-0.16.0/plugins/platforms/irc/__init__.py +3 -0
  606. bridgeagent-0.16.0/plugins/platforms/irc/adapter.py +968 -0
  607. bridgeagent-0.16.0/plugins/platforms/irc/plugin.yaml +54 -0
  608. bridgeagent-0.16.0/plugins/platforms/line/__init__.py +3 -0
  609. bridgeagent-0.16.0/plugins/platforms/line/adapter.py +1652 -0
  610. bridgeagent-0.16.0/plugins/platforms/line/plugin.yaml +65 -0
  611. bridgeagent-0.16.0/plugins/platforms/mattermost/__init__.py +3 -0
  612. bridgeagent-0.16.0/plugins/platforms/mattermost/adapter.py +1192 -0
  613. bridgeagent-0.16.0/plugins/platforms/mattermost/plugin.yaml +49 -0
  614. bridgeagent-0.16.0/plugins/platforms/ntfy/__init__.py +3 -0
  615. bridgeagent-0.16.0/plugins/platforms/ntfy/adapter.py +593 -0
  616. bridgeagent-0.16.0/plugins/platforms/ntfy/plugin.yaml +56 -0
  617. bridgeagent-0.16.0/plugins/platforms/simplex/__init__.py +3 -0
  618. bridgeagent-0.16.0/plugins/platforms/simplex/adapter.py +760 -0
  619. bridgeagent-0.16.0/plugins/platforms/simplex/plugin.yaml +37 -0
  620. bridgeagent-0.16.0/plugins/platforms/teams/__init__.py +3 -0
  621. bridgeagent-0.16.0/plugins/platforms/teams/adapter.py +1197 -0
  622. bridgeagent-0.16.0/plugins/platforms/teams/plugin.yaml +48 -0
  623. bridgeagent-0.16.0/plugins/security-guidance/README.md +88 -0
  624. bridgeagent-0.16.0/plugins/security-guidance/__init__.py +259 -0
  625. bridgeagent-0.16.0/plugins/security-guidance/patterns.py +368 -0
  626. bridgeagent-0.16.0/plugins/security-guidance/plugin.yaml +7 -0
  627. bridgeagent-0.16.0/plugins/spotify/__init__.py +66 -0
  628. bridgeagent-0.16.0/plugins/spotify/client.py +435 -0
  629. bridgeagent-0.16.0/plugins/spotify/plugin.yaml +13 -0
  630. bridgeagent-0.16.0/plugins/spotify/tools.py +454 -0
  631. bridgeagent-0.16.0/plugins/teams_pipeline/__init__.py +23 -0
  632. bridgeagent-0.16.0/plugins/teams_pipeline/cli.py +461 -0
  633. bridgeagent-0.16.0/plugins/teams_pipeline/meetings.py +333 -0
  634. bridgeagent-0.16.0/plugins/teams_pipeline/models.py +350 -0
  635. bridgeagent-0.16.0/plugins/teams_pipeline/pipeline.py +689 -0
  636. bridgeagent-0.16.0/plugins/teams_pipeline/plugin.yaml +9 -0
  637. bridgeagent-0.16.0/plugins/teams_pipeline/runtime.py +135 -0
  638. bridgeagent-0.16.0/plugins/teams_pipeline/store.py +193 -0
  639. bridgeagent-0.16.0/plugins/teams_pipeline/subscriptions.py +249 -0
  640. bridgeagent-0.16.0/plugins/video_gen/fal/__init__.py +613 -0
  641. bridgeagent-0.16.0/plugins/video_gen/fal/plugin.yaml +7 -0
  642. bridgeagent-0.16.0/plugins/video_gen/xai/__init__.py +504 -0
  643. bridgeagent-0.16.0/plugins/video_gen/xai/plugin.yaml +7 -0
  644. bridgeagent-0.16.0/plugins/web/__init__.py +7 -0
  645. bridgeagent-0.16.0/plugins/web/brave_free/__init__.py +14 -0
  646. bridgeagent-0.16.0/plugins/web/brave_free/plugin.yaml +7 -0
  647. bridgeagent-0.16.0/plugins/web/brave_free/provider.py +137 -0
  648. bridgeagent-0.16.0/plugins/web/ddgs/__init__.py +15 -0
  649. bridgeagent-0.16.0/plugins/web/ddgs/plugin.yaml +7 -0
  650. bridgeagent-0.16.0/plugins/web/ddgs/provider.py +104 -0
  651. bridgeagent-0.16.0/plugins/web/exa/__init__.py +15 -0
  652. bridgeagent-0.16.0/plugins/web/exa/plugin.yaml +7 -0
  653. bridgeagent-0.16.0/plugins/web/exa/provider.py +212 -0
  654. bridgeagent-0.16.0/plugins/web/firecrawl/__init__.py +28 -0
  655. bridgeagent-0.16.0/plugins/web/firecrawl/plugin.yaml +7 -0
  656. bridgeagent-0.16.0/plugins/web/firecrawl/provider.py +594 -0
  657. bridgeagent-0.16.0/plugins/web/parallel/__init__.py +16 -0
  658. bridgeagent-0.16.0/plugins/web/parallel/plugin.yaml +7 -0
  659. bridgeagent-0.16.0/plugins/web/parallel/provider.py +291 -0
  660. bridgeagent-0.16.0/plugins/web/searxng/__init__.py +15 -0
  661. bridgeagent-0.16.0/plugins/web/searxng/plugin.yaml +7 -0
  662. bridgeagent-0.16.0/plugins/web/searxng/provider.py +140 -0
  663. bridgeagent-0.16.0/plugins/web/tavily/__init__.py +10 -0
  664. bridgeagent-0.16.0/plugins/web/tavily/plugin.yaml +7 -0
  665. bridgeagent-0.16.0/plugins/web/tavily/provider.py +220 -0
  666. bridgeagent-0.16.0/plugins/web/xai/__init__.py +14 -0
  667. bridgeagent-0.16.0/plugins/web/xai/plugin.yaml +7 -0
  668. bridgeagent-0.16.0/plugins/web/xai/provider.py +557 -0
  669. bridgeagent-0.16.0/providers/__init__.py +191 -0
  670. bridgeagent-0.16.0/providers/base.py +208 -0
  671. bridgeagent-0.16.0/pyproject.toml +342 -0
  672. bridgeagent-0.16.0/run_agent.py +5307 -0
  673. bridgeagent-0.16.0/setup.cfg +4 -0
  674. bridgeagent-0.16.0/setup.py +28 -0
  675. bridgeagent-0.16.0/skills/apple/imessage/SKILL.md +104 -0
  676. bridgeagent-0.16.0/skills/autonomous-ai-agents/DESCRIPTION.md +3 -0
  677. bridgeagent-0.16.0/skills/autonomous-ai-agents/bridgeagent/SKILL.md +1032 -0
  678. bridgeagent-0.16.0/skills/autonomous-ai-agents/bridgeagent/references/native-mcp.md +344 -0
  679. bridgeagent-0.16.0/skills/autonomous-ai-agents/bridgeagent/references/webhooks.md +194 -0
  680. bridgeagent-0.16.0/skills/aws/DESCRIPTION.md +3 -0
  681. bridgeagent-0.16.0/skills/aws/aws-auth/SKILL.md +292 -0
  682. bridgeagent-0.16.0/skills/aws/aws-auth/scripts/aws-env.sh +72 -0
  683. bridgeagent-0.16.0/skills/aws/aws-cost-watch/SKILL.md +292 -0
  684. bridgeagent-0.16.0/skills/aws/aws-deploy/SKILL.md +306 -0
  685. bridgeagent-0.16.0/skills/aws/aws-security-audit/SKILL.md +353 -0
  686. bridgeagent-0.16.0/skills/azure/DESCRIPTION.md +3 -0
  687. bridgeagent-0.16.0/skills/azure/azure-auth/SKILL.md +248 -0
  688. bridgeagent-0.16.0/skills/azure/azure-auth/scripts/azure-env.sh +64 -0
  689. bridgeagent-0.16.0/skills/azure/azure-deploy/SKILL.md +264 -0
  690. bridgeagent-0.16.0/skills/azure/azure-operations/SKILL.md +349 -0
  691. bridgeagent-0.16.0/skills/cloudflare/DESCRIPTION.md +3 -0
  692. bridgeagent-0.16.0/skills/cloudflare/cloudflare-auth/SKILL.md +219 -0
  693. bridgeagent-0.16.0/skills/cloudflare/cloudflare-auth/scripts/cloudflare-env.sh +95 -0
  694. bridgeagent-0.16.0/skills/cloudflare/cloudflare-security-patrol/SKILL.md +498 -0
  695. bridgeagent-0.16.0/skills/cloudflare/cloudflare-workers-pages/SKILL.md +255 -0
  696. bridgeagent-0.16.0/skills/creative/DESCRIPTION.md +3 -0
  697. bridgeagent-0.16.0/skills/creative/architecture-diagram/SKILL.md +151 -0
  698. bridgeagent-0.16.0/skills/creative/architecture-diagram/templates/template.html +319 -0
  699. bridgeagent-0.16.0/skills/creative/humanizer/LICENSE +21 -0
  700. bridgeagent-0.16.0/skills/creative/humanizer/SKILL.md +583 -0
  701. bridgeagent-0.16.0/skills/creative/sketch/SKILL.md +221 -0
  702. bridgeagent-0.16.0/skills/data-science/DESCRIPTION.md +3 -0
  703. bridgeagent-0.16.0/skills/data-science/jupyter-live-kernel/SKILL.md +170 -0
  704. bridgeagent-0.16.0/skills/devops/kanban-board/SKILL.md +144 -0
  705. bridgeagent-0.16.0/skills/devops/kanban-orchestrator/SKILL.md +219 -0
  706. bridgeagent-0.16.0/skills/devops/kanban-worker/SKILL.md +198 -0
  707. bridgeagent-0.16.0/skills/dogfood/SKILL.md +167 -0
  708. bridgeagent-0.16.0/skills/dogfood/references/issue-taxonomy.md +109 -0
  709. bridgeagent-0.16.0/skills/dogfood/templates/dogfood-report-template.md +86 -0
  710. bridgeagent-0.16.0/skills/github/DESCRIPTION.md +3 -0
  711. bridgeagent-0.16.0/skills/github/codebase-inspection/SKILL.md +119 -0
  712. bridgeagent-0.16.0/skills/github/github-auth/SKILL.md +250 -0
  713. bridgeagent-0.16.0/skills/github/github-auth/scripts/gh-env.sh +66 -0
  714. bridgeagent-0.16.0/skills/github/github-code-review/SKILL.md +484 -0
  715. bridgeagent-0.16.0/skills/github/github-code-review/references/review-output-template.md +74 -0
  716. bridgeagent-0.16.0/skills/github/github-issues/SKILL.md +373 -0
  717. bridgeagent-0.16.0/skills/github/github-issues/templates/bug-report.md +35 -0
  718. bridgeagent-0.16.0/skills/github/github-issues/templates/feature-request.md +31 -0
  719. bridgeagent-0.16.0/skills/github/github-pr-workflow/SKILL.md +370 -0
  720. bridgeagent-0.16.0/skills/github/github-pr-workflow/references/ci-troubleshooting.md +183 -0
  721. bridgeagent-0.16.0/skills/github/github-pr-workflow/references/conventional-commits.md +71 -0
  722. bridgeagent-0.16.0/skills/github/github-pr-workflow/templates/pr-body-bugfix.md +35 -0
  723. bridgeagent-0.16.0/skills/github/github-pr-workflow/templates/pr-body-feature.md +33 -0
  724. bridgeagent-0.16.0/skills/github/github-repo-management/SKILL.md +519 -0
  725. bridgeagent-0.16.0/skills/github/github-repo-management/references/github-api-cheatsheet.md +161 -0
  726. bridgeagent-0.16.0/skills/googlecloud/DESCRIPTION.md +3 -0
  727. bridgeagent-0.16.0/skills/googlecloud/gcloud-auth/SKILL.md +242 -0
  728. bridgeagent-0.16.0/skills/googlecloud/gcloud-auth/scripts/gcloud-env.sh +65 -0
  729. bridgeagent-0.16.0/skills/googlecloud/gcloud-deploy/SKILL.md +240 -0
  730. bridgeagent-0.16.0/skills/googlecloud/gcloud-operations/SKILL.md +334 -0
  731. bridgeagent-0.16.0/skills/posthog/DESCRIPTION.md +3 -0
  732. bridgeagent-0.16.0/skills/posthog/posthog-auth/SKILL.md +199 -0
  733. bridgeagent-0.16.0/skills/posthog/posthog-auth/scripts/posthog-env.sh +69 -0
  734. bridgeagent-0.16.0/skills/posthog/posthog-feature-flags/SKILL.md +307 -0
  735. bridgeagent-0.16.0/skills/posthog/posthog-product-analytics/SKILL.md +338 -0
  736. bridgeagent-0.16.0/skills/semrush/DESCRIPTION.md +3 -0
  737. bridgeagent-0.16.0/skills/semrush/semrush-auth/SKILL.md +137 -0
  738. bridgeagent-0.16.0/skills/semrush/semrush-auth/scripts/semrush-env.sh +45 -0
  739. bridgeagent-0.16.0/skills/semrush/semrush-domain-analytics/SKILL.md +169 -0
  740. bridgeagent-0.16.0/skills/semrush/semrush-keyword-research/SKILL.md +127 -0
  741. bridgeagent-0.16.0/skills/sentry/DESCRIPTION.md +3 -0
  742. bridgeagent-0.16.0/skills/sentry/sentry-auth/SKILL.md +221 -0
  743. bridgeagent-0.16.0/skills/sentry/sentry-auth/scripts/sentry-env.sh +101 -0
  744. bridgeagent-0.16.0/skills/sentry/sentry-issues/SKILL.md +255 -0
  745. bridgeagent-0.16.0/skills/sentry/sentry-releases/SKILL.md +193 -0
  746. bridgeagent-0.16.0/skills/software-development/DESCRIPTION.md +3 -0
  747. bridgeagent-0.16.0/skills/software-development/bridgeagent-skill-authoring/SKILL.md +168 -0
  748. bridgeagent-0.16.0/skills/software-development/node-inspect-debugger/SKILL.md +322 -0
  749. bridgeagent-0.16.0/skills/software-development/plan/SKILL.md +341 -0
  750. bridgeagent-0.16.0/skills/software-development/python-debugpy/SKILL.md +378 -0
  751. bridgeagent-0.16.0/skills/software-development/requesting-code-review/SKILL.md +283 -0
  752. bridgeagent-0.16.0/skills/software-development/ship-and-verify/SKILL.md +231 -0
  753. bridgeagent-0.16.0/skills/software-development/simplify-code/SKILL.md +179 -0
  754. bridgeagent-0.16.0/skills/software-development/spike/SKILL.md +200 -0
  755. bridgeagent-0.16.0/skills/software-development/systematic-debugging/SKILL.md +370 -0
  756. bridgeagent-0.16.0/skills/software-development/test-driven-development/SKILL.md +346 -0
  757. bridgeagent-0.16.0/skills/stripe/DESCRIPTION.md +3 -0
  758. bridgeagent-0.16.0/skills/stripe/stripe-auth/SKILL.md +109 -0
  759. bridgeagent-0.16.0/skills/stripe/stripe-auth/scripts/stripe-env.sh +75 -0
  760. bridgeagent-0.16.0/skills/stripe/stripe-billing/SKILL.md +99 -0
  761. bridgeagent-0.16.0/skills/stripe/stripe-payments/SKILL.md +103 -0
  762. bridgeagent-0.16.0/tests/test_account_usage.py +203 -0
  763. bridgeagent-0.16.0/tests/test_atomic_replace_symlinks.py +160 -0
  764. bridgeagent-0.16.0/tests/test_base_url_hostname.py +160 -0
  765. bridgeagent-0.16.0/tests/test_batch_runner_checkpoint.py +250 -0
  766. bridgeagent-0.16.0/tests/test_bitwarden_secrets.py +882 -0
  767. bridgeagent-0.16.0/tests/test_bridge_bootstrap.py +313 -0
  768. bridgeagent-0.16.0/tests/test_bridge_constants.py +300 -0
  769. bridgeagent-0.16.0/tests/test_bridge_home_profile_warning.py +116 -0
  770. bridgeagent-0.16.0/tests/test_bridge_logging.py +1071 -0
  771. bridgeagent-0.16.0/tests/test_bridge_state.py +4008 -0
  772. bridgeagent-0.16.0/tests/test_bridge_state_compression_locks.py +149 -0
  773. bridgeagent-0.16.0/tests/test_bridge_state_wal_fallback.py +369 -0
  774. bridgeagent-0.16.0/tests/test_cli_file_drop.py +194 -0
  775. bridgeagent-0.16.0/tests/test_cli_manual_compress.py +58 -0
  776. bridgeagent-0.16.0/tests/test_cli_skin_integration.py +143 -0
  777. bridgeagent-0.16.0/tests/test_ctx_halving_fix.py +362 -0
  778. bridgeagent-0.16.0/tests/test_desktop_mac_entitlements.py +76 -0
  779. bridgeagent-0.16.0/tests/test_docker_home_override_scripts.py +79 -0
  780. bridgeagent-0.16.0/tests/test_docker_stage2_browser_discovery.py +19 -0
  781. bridgeagent-0.16.0/tests/test_dockerfile_tini_compat_shim.py +49 -0
  782. bridgeagent-0.16.0/tests/test_empty_model_fallback.py +159 -0
  783. bridgeagent-0.16.0/tests/test_env_loader_secret_sources.py +175 -0
  784. bridgeagent-0.16.0/tests/test_evidence_store.py +184 -0
  785. bridgeagent-0.16.0/tests/test_gateway_streaming_nested_config.py +43 -0
  786. bridgeagent-0.16.0/tests/test_get_tool_definitions_cache_isolation.py +94 -0
  787. bridgeagent-0.16.0/tests/test_honcho_client_config.py +127 -0
  788. bridgeagent-0.16.0/tests/test_honcho_session_context.py +95 -0
  789. bridgeagent-0.16.0/tests/test_honcho_startup_fail_open.py +357 -0
  790. bridgeagent-0.16.0/tests/test_install_sh_browser_install.py +60 -0
  791. bridgeagent-0.16.0/tests/test_install_sh_pythonpath_sanitization.py +33 -0
  792. bridgeagent-0.16.0/tests/test_install_sh_root_fhs_uv_python_path.py +59 -0
  793. bridgeagent-0.16.0/tests/test_install_sh_setup_wizard_tty_probe.py +91 -0
  794. bridgeagent-0.16.0/tests/test_install_sh_symlink_stomp.py +130 -0
  795. bridgeagent-0.16.0/tests/test_install_sh_termux_network_prereqs.py +22 -0
  796. bridgeagent-0.16.0/tests/test_ipv4_preference.py +112 -0
  797. bridgeagent-0.16.0/tests/test_lazy_session_regressions.py +606 -0
  798. bridgeagent-0.16.0/tests/test_lint_config.py +114 -0
  799. bridgeagent-0.16.0/tests/test_live_system_guard_self_test.py +295 -0
  800. bridgeagent-0.16.0/tests/test_mcp_serve.py +1238 -0
  801. bridgeagent-0.16.0/tests/test_mini_swe_runner.py +60 -0
  802. bridgeagent-0.16.0/tests/test_minimax_model_validation.py +130 -0
  803. bridgeagent-0.16.0/tests/test_minimax_oauth.py +839 -0
  804. bridgeagent-0.16.0/tests/test_minisweagent_path.py +2 -0
  805. bridgeagent-0.16.0/tests/test_model_picker_scroll.py +117 -0
  806. bridgeagent-0.16.0/tests/test_model_tools.py +459 -0
  807. bridgeagent-0.16.0/tests/test_model_tools_async_bridge.py +447 -0
  808. bridgeagent-0.16.0/tests/test_ollama_num_ctx.py +134 -0
  809. bridgeagent-0.16.0/tests/test_output_cap_parsing.py +27 -0
  810. bridgeagent-0.16.0/tests/test_package_json_lazy_deps.py +85 -0
  811. bridgeagent-0.16.0/tests/test_packaging_metadata.py +228 -0
  812. bridgeagent-0.16.0/tests/test_plugin_skills.py +387 -0
  813. bridgeagent-0.16.0/tests/test_process_loop_event_loop_warning.py +130 -0
  814. bridgeagent-0.16.0/tests/test_project_metadata.py +156 -0
  815. bridgeagent-0.16.0/tests/test_retry_utils.py +117 -0
  816. bridgeagent-0.16.0/tests/test_run_tests_parallel.py +187 -0
  817. bridgeagent-0.16.0/tests/test_sanitize_tool_error.py +137 -0
  818. bridgeagent-0.16.0/tests/test_sql_injection.py +43 -0
  819. bridgeagent-0.16.0/tests/test_subprocess_home_isolation.py +280 -0
  820. bridgeagent-0.16.0/tests/test_termux_all_extra_compat.py +23 -0
  821. bridgeagent-0.16.0/tests/test_timezone.py +385 -0
  822. bridgeagent-0.16.0/tests/test_toolset_distributions.py +102 -0
  823. bridgeagent-0.16.0/tests/test_toolsets.py +261 -0
  824. bridgeagent-0.16.0/tests/test_trajectory_compressor.py +630 -0
  825. bridgeagent-0.16.0/tests/test_trajectory_compressor_async.py +201 -0
  826. bridgeagent-0.16.0/tests/test_transform_llm_output_hook.py +159 -0
  827. bridgeagent-0.16.0/tests/test_transform_tool_result_hook.py +195 -0
  828. bridgeagent-0.16.0/tests/test_tui_gateway_server.py +5776 -0
  829. bridgeagent-0.16.0/tests/test_utils_truthy_values.py +29 -0
  830. bridgeagent-0.16.0/tests/test_wheel_locales_e2e.py +137 -0
  831. bridgeagent-0.16.0/tests/test_yuanbao_integration.py +413 -0
  832. bridgeagent-0.16.0/tests/test_yuanbao_markdown.py +324 -0
  833. bridgeagent-0.16.0/tests/test_yuanbao_pipeline.py +1028 -0
  834. bridgeagent-0.16.0/tests/test_yuanbao_proto.py +649 -0
  835. bridgeagent-0.16.0/tools/__init__.py +25 -0
  836. bridgeagent-0.16.0/tools/ansi_strip.py +44 -0
  837. bridgeagent-0.16.0/tools/approval.py +1793 -0
  838. bridgeagent-0.16.0/tools/binary_extensions.py +42 -0
  839. bridgeagent-0.16.0/tools/browser_camofox.py +794 -0
  840. bridgeagent-0.16.0/tools/browser_camofox_state.py +49 -0
  841. bridgeagent-0.16.0/tools/browser_cdp_tool.py +569 -0
  842. bridgeagent-0.16.0/tools/browser_dialog_tool.py +148 -0
  843. bridgeagent-0.16.0/tools/browser_supervisor.py +1475 -0
  844. bridgeagent-0.16.0/tools/browser_tool.py +3863 -0
  845. bridgeagent-0.16.0/tools/budget_config.py +51 -0
  846. bridgeagent-0.16.0/tools/checkpoint_manager.py +1669 -0
  847. bridgeagent-0.16.0/tools/clarify_gateway.py +278 -0
  848. bridgeagent-0.16.0/tools/clarify_tool.py +141 -0
  849. bridgeagent-0.16.0/tools/code_execution_tool.py +1831 -0
  850. bridgeagent-0.16.0/tools/computer_use/__init__.py +43 -0
  851. bridgeagent-0.16.0/tools/computer_use/backend.py +158 -0
  852. bridgeagent-0.16.0/tools/computer_use/cua_backend.py +779 -0
  853. bridgeagent-0.16.0/tools/computer_use/schema.py +213 -0
  854. bridgeagent-0.16.0/tools/computer_use/tool.py +750 -0
  855. bridgeagent-0.16.0/tools/computer_use/vision_routing.py +204 -0
  856. bridgeagent-0.16.0/tools/computer_use_tool.py +39 -0
  857. bridgeagent-0.16.0/tools/credential_files.py +454 -0
  858. bridgeagent-0.16.0/tools/cronjob_tools.py +919 -0
  859. bridgeagent-0.16.0/tools/debug_helpers.py +105 -0
  860. bridgeagent-0.16.0/tools/delegate_tool.py +2860 -0
  861. bridgeagent-0.16.0/tools/discord_tool.py +959 -0
  862. bridgeagent-0.16.0/tools/env_passthrough.py +163 -0
  863. bridgeagent-0.16.0/tools/env_probe.py +247 -0
  864. bridgeagent-0.16.0/tools/environments/__init__.py +14 -0
  865. bridgeagent-0.16.0/tools/environments/base.py +895 -0
  866. bridgeagent-0.16.0/tools/environments/daytona.py +270 -0
  867. bridgeagent-0.16.0/tools/environments/docker.py +1326 -0
  868. bridgeagent-0.16.0/tools/environments/file_sync.py +403 -0
  869. bridgeagent-0.16.0/tools/environments/local.py +697 -0
  870. bridgeagent-0.16.0/tools/environments/managed_modal.py +282 -0
  871. bridgeagent-0.16.0/tools/environments/modal.py +478 -0
  872. bridgeagent-0.16.0/tools/environments/modal_utils.py +204 -0
  873. bridgeagent-0.16.0/tools/environments/singularity.py +262 -0
  874. bridgeagent-0.16.0/tools/environments/ssh.py +375 -0
  875. bridgeagent-0.16.0/tools/fal_common.py +163 -0
  876. bridgeagent-0.16.0/tools/feishu_doc_tool.py +138 -0
  877. bridgeagent-0.16.0/tools/feishu_drive_tool.py +431 -0
  878. bridgeagent-0.16.0/tools/file_operations.py +2292 -0
  879. bridgeagent-0.16.0/tools/file_state.py +332 -0
  880. bridgeagent-0.16.0/tools/file_tools.py +1533 -0
  881. bridgeagent-0.16.0/tools/fuzzy_match.py +860 -0
  882. bridgeagent-0.16.0/tools/homeassistant_tool.py +513 -0
  883. bridgeagent-0.16.0/tools/image_generation_tool.py +1180 -0
  884. bridgeagent-0.16.0/tools/interrupt.py +98 -0
  885. bridgeagent-0.16.0/tools/kanban_tools.py +1431 -0
  886. bridgeagent-0.16.0/tools/lazy_deps.py +639 -0
  887. bridgeagent-0.16.0/tools/loop_tools.py +302 -0
  888. bridgeagent-0.16.0/tools/managed_tool_gateway.py +192 -0
  889. bridgeagent-0.16.0/tools/mcp_oauth.py +776 -0
  890. bridgeagent-0.16.0/tools/mcp_oauth_manager.py +607 -0
  891. bridgeagent-0.16.0/tools/mcp_tool.py +3915 -0
  892. bridgeagent-0.16.0/tools/memory_tool.py +723 -0
  893. bridgeagent-0.16.0/tools/microsoft_graph_auth.py +245 -0
  894. bridgeagent-0.16.0/tools/microsoft_graph_client.py +408 -0
  895. bridgeagent-0.16.0/tools/mixture_of_agents_tool.py +542 -0
  896. bridgeagent-0.16.0/tools/neutts_synth.py +104 -0
  897. bridgeagent-0.16.0/tools/openrouter_client.py +33 -0
  898. bridgeagent-0.16.0/tools/osv_check.py +169 -0
  899. bridgeagent-0.16.0/tools/patch_parser.py +622 -0
  900. bridgeagent-0.16.0/tools/path_security.py +43 -0
  901. bridgeagent-0.16.0/tools/process_registry.py +1616 -0
  902. bridgeagent-0.16.0/tools/registry.py +589 -0
  903. bridgeagent-0.16.0/tools/schema_sanitizer.py +445 -0
  904. bridgeagent-0.16.0/tools/send_message_tool.py +1787 -0
  905. bridgeagent-0.16.0/tools/session_search_tool.py +783 -0
  906. bridgeagent-0.16.0/tools/skill_manager_tool.py +1043 -0
  907. bridgeagent-0.16.0/tools/skill_provenance.py +78 -0
  908. bridgeagent-0.16.0/tools/skill_usage.py +852 -0
  909. bridgeagent-0.16.0/tools/skills_ast_audit.py +133 -0
  910. bridgeagent-0.16.0/tools/skills_guard.py +1086 -0
  911. bridgeagent-0.16.0/tools/skills_hub.py +3756 -0
  912. bridgeagent-0.16.0/tools/skills_sync.py +897 -0
  913. bridgeagent-0.16.0/tools/skills_tool.py +1604 -0
  914. bridgeagent-0.16.0/tools/slash_confirm.py +167 -0
  915. bridgeagent-0.16.0/tools/terminal_tool.py +2612 -0
  916. bridgeagent-0.16.0/tools/thread_context.py +120 -0
  917. bridgeagent-0.16.0/tools/threat_patterns.py +252 -0
  918. bridgeagent-0.16.0/tools/tirith_security.py +820 -0
  919. bridgeagent-0.16.0/tools/todo_tool.py +277 -0
  920. bridgeagent-0.16.0/tools/tool_backend_helpers.py +182 -0
  921. bridgeagent-0.16.0/tools/tool_output_limits.py +110 -0
  922. bridgeagent-0.16.0/tools/tool_result_storage.py +232 -0
  923. bridgeagent-0.16.0/tools/tool_search.py +735 -0
  924. bridgeagent-0.16.0/tools/transcription_tools.py +1797 -0
  925. bridgeagent-0.16.0/tools/tts_tool.py +2551 -0
  926. bridgeagent-0.16.0/tools/url_safety.py +361 -0
  927. bridgeagent-0.16.0/tools/video_generation_tool.py +562 -0
  928. bridgeagent-0.16.0/tools/vision_tools.py +1591 -0
  929. bridgeagent-0.16.0/tools/voice_mode.py +1217 -0
  930. bridgeagent-0.16.0/tools/web_tools.py +1347 -0
  931. bridgeagent-0.16.0/tools/website_policy.py +282 -0
  932. bridgeagent-0.16.0/tools/x_search_tool.py +525 -0
  933. bridgeagent-0.16.0/tools/xai_http.py +128 -0
  934. bridgeagent-0.16.0/tools/yuanbao_tools.py +737 -0
  935. bridgeagent-0.16.0/toolset_distributions.py +364 -0
  936. bridgeagent-0.16.0/toolsets.py +916 -0
  937. bridgeagent-0.16.0/trajectory_compressor.py +1579 -0
  938. bridgeagent-0.16.0/tui_gateway/__init__.py +0 -0
  939. bridgeagent-0.16.0/tui_gateway/entry.py +298 -0
  940. bridgeagent-0.16.0/tui_gateway/event_publisher.py +126 -0
  941. bridgeagent-0.16.0/tui_gateway/render.py +49 -0
  942. bridgeagent-0.16.0/tui_gateway/server.py +8522 -0
  943. bridgeagent-0.16.0/tui_gateway/slash_worker.py +76 -0
  944. bridgeagent-0.16.0/tui_gateway/transport.py +219 -0
  945. bridgeagent-0.16.0/tui_gateway/ws.py +327 -0
  946. bridgeagent-0.16.0/utils.py +376 -0
@@ -0,0 +1,25 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Nous Research
4
+ Copyright (c) 2026 BridgeMind (BridgeAgent fork)
5
+
6
+ BridgeAgent is a fork of Nous Research's hermes-agent. The original copyright
7
+ notice above is retained as required by the MIT License.
8
+
9
+ Permission is hereby granted, free of charge, to any person obtaining a copy
10
+ of this software and associated documentation files (the "Software"), to deal
11
+ in the Software without restriction, including without limitation the rights
12
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13
+ copies of the Software, and to permit persons to whom the Software is
14
+ furnished to do so, subject to the following conditions:
15
+
16
+ The above copyright notice and this permission notice shall be included in all
17
+ copies or substantial portions of the Software.
18
+
19
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25
+ SOFTWARE.
@@ -0,0 +1,10 @@
1
+ graft skills
2
+ graft optional-skills
3
+ graft locales
4
+ # Bundled plugin manifests (plugin.yaml / plugin.yml). Without these the
5
+ # PluginManager scan (bridge_cli/plugins.py) finds zero plugins on installs
6
+ # built from the sdist (e.g. Homebrew, downstream packagers). package-data
7
+ # below covers the wheel; this covers the sdist. See #34034 / #28149.
8
+ recursive-include plugins plugin.yaml plugin.yml
9
+ global-exclude __pycache__
10
+ global-exclude *.py[cod]
@@ -0,0 +1,374 @@
1
+ Metadata-Version: 2.4
2
+ Name: bridgeagent
3
+ Version: 0.16.0
4
+ Summary: The self-improving AI agent — creates skills from experience, improves them during use, and runs anywhere
5
+ Author: BridgeMind
6
+ License-Expression: MIT
7
+ Requires-Python: <3.14,>=3.11
8
+ Description-Content-Type: text/markdown
9
+ License-File: LICENSE
10
+ Requires-Dist: openai==2.24.0
11
+ Requires-Dist: python-dotenv==1.2.2
12
+ Requires-Dist: fire==0.7.1
13
+ Requires-Dist: httpx[socks]==0.28.1
14
+ Requires-Dist: rich==14.3.3
15
+ Requires-Dist: tenacity==9.1.4
16
+ Requires-Dist: pyyaml==6.0.3
17
+ Requires-Dist: ruamel.yaml==0.18.17
18
+ Requires-Dist: requests==2.33.0
19
+ Requires-Dist: jinja2==3.1.6
20
+ Requires-Dist: pydantic==2.13.4
21
+ Requires-Dist: prompt_toolkit==3.0.52
22
+ Requires-Dist: croniter==6.0.0
23
+ Requires-Dist: Markdown==3.10.2
24
+ Requires-Dist: PyJWT[crypto]==2.12.1
25
+ Requires-Dist: tzdata==2025.3; sys_platform == "win32"
26
+ Requires-Dist: psutil==7.2.2
27
+ Requires-Dist: pathspec==1.1.1
28
+ Requires-Dist: fastapi<1,>=0.104.0
29
+ Requires-Dist: uvicorn[standard]<1,>=0.24.0
30
+ Requires-Dist: ptyprocess<1,>=0.7.0; sys_platform != "win32"
31
+ Requires-Dist: pywinpty<3,>=2.0.0; sys_platform == "win32"
32
+ Requires-Dist: Pillow==12.2.0
33
+ Provides-Extra: anthropic
34
+ Requires-Dist: anthropic==0.86.0; extra == "anthropic"
35
+ Provides-Extra: exa
36
+ Requires-Dist: exa-py==2.10.2; extra == "exa"
37
+ Provides-Extra: firecrawl
38
+ Requires-Dist: firecrawl-py==4.17.0; extra == "firecrawl"
39
+ Provides-Extra: parallel-web
40
+ Requires-Dist: parallel-web==0.4.2; extra == "parallel-web"
41
+ Provides-Extra: fal
42
+ Requires-Dist: fal-client==0.13.1; extra == "fal"
43
+ Provides-Extra: edge-tts
44
+ Requires-Dist: edge-tts==7.2.7; extra == "edge-tts"
45
+ Provides-Extra: modal
46
+ Requires-Dist: modal==1.3.4; extra == "modal"
47
+ Provides-Extra: daytona
48
+ Requires-Dist: daytona==0.155.0; extra == "daytona"
49
+ Provides-Extra: hindsight
50
+ Requires-Dist: hindsight-client==0.6.1; extra == "hindsight"
51
+ Provides-Extra: dev
52
+ Requires-Dist: debugpy==1.8.20; extra == "dev"
53
+ Requires-Dist: pytest==9.0.2; extra == "dev"
54
+ Requires-Dist: pytest-asyncio==1.3.0; extra == "dev"
55
+ Requires-Dist: pytest-timeout==2.4.0; extra == "dev"
56
+ Requires-Dist: mcp==1.26.0; extra == "dev"
57
+ Requires-Dist: starlette==1.0.1; extra == "dev"
58
+ Requires-Dist: ty==0.0.21; extra == "dev"
59
+ Requires-Dist: ruff==0.15.10; extra == "dev"
60
+ Requires-Dist: setuptools==82.0.1; extra == "dev"
61
+ Provides-Extra: messaging
62
+ Requires-Dist: python-telegram-bot[webhooks]==22.6; extra == "messaging"
63
+ Requires-Dist: discord.py[voice]==2.7.1; extra == "messaging"
64
+ Requires-Dist: aiohttp==3.13.3; extra == "messaging"
65
+ Requires-Dist: brotlicffi==1.2.0.1; extra == "messaging"
66
+ Requires-Dist: slack-bolt==1.27.0; extra == "messaging"
67
+ Requires-Dist: slack-sdk==3.40.1; extra == "messaging"
68
+ Requires-Dist: qrcode==7.4.2; extra == "messaging"
69
+ Provides-Extra: cron
70
+ Provides-Extra: slack
71
+ Requires-Dist: slack-bolt==1.27.0; extra == "slack"
72
+ Requires-Dist: slack-sdk==3.40.1; extra == "slack"
73
+ Requires-Dist: aiohttp==3.13.3; extra == "slack"
74
+ Provides-Extra: matrix
75
+ Requires-Dist: mautrix[encryption]==0.21.0; extra == "matrix"
76
+ Requires-Dist: aiosqlite==0.22.1; extra == "matrix"
77
+ Requires-Dist: asyncpg==0.31.0; extra == "matrix"
78
+ Requires-Dist: aiohttp-socks==0.11.0; extra == "matrix"
79
+ Provides-Extra: wecom
80
+ Requires-Dist: defusedxml==0.7.1; extra == "wecom"
81
+ Provides-Extra: cli
82
+ Requires-Dist: simple-term-menu==1.6.6; extra == "cli"
83
+ Provides-Extra: tts-premium
84
+ Requires-Dist: elevenlabs==1.59.0; extra == "tts-premium"
85
+ Provides-Extra: voice
86
+ Requires-Dist: faster-whisper==1.2.1; extra == "voice"
87
+ Requires-Dist: sounddevice==0.5.5; extra == "voice"
88
+ Requires-Dist: numpy==2.4.3; extra == "voice"
89
+ Provides-Extra: pty
90
+ Provides-Extra: honcho
91
+ Requires-Dist: honcho-ai==2.0.1; extra == "honcho"
92
+ Provides-Extra: vision
93
+ Provides-Extra: mcp
94
+ Requires-Dist: mcp==1.26.0; extra == "mcp"
95
+ Requires-Dist: starlette==1.0.1; extra == "mcp"
96
+ Provides-Extra: nemo-relay
97
+ Requires-Dist: nemo-relay==0.3; extra == "nemo-relay"
98
+ Provides-Extra: homeassistant
99
+ Requires-Dist: aiohttp==3.13.3; extra == "homeassistant"
100
+ Provides-Extra: sms
101
+ Requires-Dist: aiohttp==3.13.3; extra == "sms"
102
+ Provides-Extra: computer-use
103
+ Requires-Dist: mcp==1.26.0; extra == "computer-use"
104
+ Requires-Dist: starlette==1.0.1; extra == "computer-use"
105
+ Provides-Extra: acp
106
+ Requires-Dist: agent-client-protocol==0.9.0; extra == "acp"
107
+ Provides-Extra: mistral
108
+ Requires-Dist: mistralai==2.4.8; extra == "mistral"
109
+ Provides-Extra: bedrock
110
+ Requires-Dist: boto3==1.42.89; extra == "bedrock"
111
+ Provides-Extra: azure-identity
112
+ Requires-Dist: azure-identity==1.25.3; extra == "azure-identity"
113
+ Provides-Extra: termux
114
+ Requires-Dist: python-telegram-bot[webhooks]==22.6; extra == "termux"
115
+ Requires-Dist: bridgeagent[cron]; extra == "termux"
116
+ Requires-Dist: bridgeagent[cli]; extra == "termux"
117
+ Requires-Dist: bridgeagent[pty]; extra == "termux"
118
+ Requires-Dist: bridgeagent[mcp]; extra == "termux"
119
+ Requires-Dist: bridgeagent[honcho]; extra == "termux"
120
+ Requires-Dist: bridgeagent[acp]; extra == "termux"
121
+ Provides-Extra: termux-all
122
+ Requires-Dist: bridgeagent[termux]; extra == "termux-all"
123
+ Requires-Dist: bridgeagent[google]; extra == "termux-all"
124
+ Requires-Dist: bridgeagent[homeassistant]; extra == "termux-all"
125
+ Requires-Dist: bridgeagent[sms]; extra == "termux-all"
126
+ Requires-Dist: bridgeagent[web]; extra == "termux-all"
127
+ Provides-Extra: dingtalk
128
+ Requires-Dist: dingtalk-stream==0.24.3; extra == "dingtalk"
129
+ Requires-Dist: alibabacloud-dingtalk==2.2.42; extra == "dingtalk"
130
+ Requires-Dist: qrcode==7.4.2; extra == "dingtalk"
131
+ Provides-Extra: feishu
132
+ Requires-Dist: lark-oapi==1.5.3; extra == "feishu"
133
+ Requires-Dist: qrcode==7.4.2; extra == "feishu"
134
+ Provides-Extra: google
135
+ Requires-Dist: google-api-python-client==2.194.0; extra == "google"
136
+ Requires-Dist: google-auth-oauthlib==1.3.1; extra == "google"
137
+ Requires-Dist: google-auth-httplib2==0.3.1; extra == "google"
138
+ Provides-Extra: youtube
139
+ Requires-Dist: youtube-transcript-api==1.2.4; extra == "youtube"
140
+ Provides-Extra: web
141
+ Requires-Dist: fastapi==0.133.1; extra == "web"
142
+ Requires-Dist: uvicorn[standard]==0.41.0; extra == "web"
143
+ Requires-Dist: starlette==1.0.1; extra == "web"
144
+ Provides-Extra: all
145
+ Requires-Dist: bridgeagent[cron]; extra == "all"
146
+ Requires-Dist: bridgeagent[cli]; extra == "all"
147
+ Requires-Dist: bridgeagent[pty]; extra == "all"
148
+ Requires-Dist: bridgeagent[mcp]; extra == "all"
149
+ Requires-Dist: bridgeagent[homeassistant]; extra == "all"
150
+ Requires-Dist: bridgeagent[sms]; extra == "all"
151
+ Requires-Dist: bridgeagent[acp]; extra == "all"
152
+ Requires-Dist: bridgeagent[google]; extra == "all"
153
+ Requires-Dist: bridgeagent[web]; extra == "all"
154
+ Requires-Dist: bridgeagent[youtube]; extra == "all"
155
+ Dynamic: license-file
156
+
157
+ <p align="center">
158
+ <img src="assets/banner.png" alt="BridgeAgent" width="100%">
159
+ </p>
160
+
161
+ # BridgeAgent ☤
162
+
163
+ > **BridgeAgent** is a BridgeMind fork of [Nous Research's hermes-agent](https://github.com/NousResearch/hermes-agent) (MIT). It still uses Nous Research's inference backend by default. Branding, package name, CLI commands (`bridge` / `bridgeagent` / `bridge-acp`), env vars (`BRIDGE_*`), and the config dir (`~/.bridgeagent/`) have been rebranded; model identifiers and backend endpoints are unchanged.
164
+
165
+ <p align="center">
166
+ <a href="https://bridgeagent.ai/docs/"><img src="https://img.shields.io/badge/Docs-bridgeagent.ai-3B82F6?style=for-the-badge" alt="Documentation"></a>
167
+ <a href="https://bridgeagent.ai"><img src="https://img.shields.io/badge/Community-bridgeagent.ai-3B82F6?style=for-the-badge" alt="Community"></a>
168
+ <a href="https://github.com/BridgeMind/BridgeAgent/blob/main/LICENSE"><img src="https://img.shields.io/badge/License-MIT-green?style=for-the-badge" alt="License: MIT"></a>
169
+ <a href="https://bridgemind.dev"><img src="https://img.shields.io/badge/Built%20by-BridgeMind-blueviolet?style=for-the-badge" alt="Built by BridgeMind"></a>
170
+ <a href="README.zh-CN.md"><img src="https://img.shields.io/badge/Lang-中文-red?style=for-the-badge" alt="中文"></a>
171
+ </p>
172
+
173
+ **The self-improving AI agent built by [BridgeMind](https://bridgemind.dev).** It's the only agent with a built-in learning loop — it creates skills from experience, improves them during use, nudges itself to persist knowledge, searches its own past conversations, and builds a deepening model of who you are across sessions. Run it on a $5 VPS, a GPU cluster, or serverless infrastructure that costs nearly nothing when idle. It's not tied to your laptop — talk to it from Telegram while it works on a cloud VM.
174
+
175
+ Use any model you want — [Nous Portal](https://portal.nousresearch.com), [OpenRouter](https://openrouter.ai) (200+ models), [NovitaAI](https://novita.ai) (AI-native cloud for Model API, Agent Sandbox, and GPU Cloud), [NVIDIA NIM](https://build.nvidia.com) (Nemotron), [Xiaomi MiMo](https://platform.xiaomimimo.com), [z.ai/GLM](https://z.ai), [Kimi/Moonshot](https://platform.moonshot.ai), [MiniMax](https://www.minimax.io), [Hugging Face](https://huggingface.co), OpenAI, or your own endpoint. Switch with `bridge model` — no code changes, no lock-in.
176
+
177
+ <table>
178
+ <tr><td><b>A real terminal interface</b></td><td>Full TUI with multiline editing, slash-command autocomplete, conversation history, interrupt-and-redirect, and streaming tool output.</td></tr>
179
+ <tr><td><b>Lives where you do</b></td><td>Telegram, Discord, Slack, WhatsApp, Signal, and CLI — all from a single gateway process. Voice memo transcription, cross-platform conversation continuity.</td></tr>
180
+ <tr><td><b>A closed learning loop</b></td><td>Agent-curated memory with periodic nudges. Autonomous skill creation after complex tasks. Skills self-improve during use. FTS5 session search with LLM summarization for cross-session recall. <a href="https://github.com/plastic-labs/honcho">Honcho</a> dialectic user modeling. Compatible with the <a href="https://agentskills.io">agentskills.io</a> open standard.</td></tr>
181
+ <tr><td><b>Scheduled automations</b></td><td>Built-in cron scheduler with delivery to any platform. Daily reports, nightly backups, weekly audits — all in natural language, running unattended.</td></tr>
182
+ <tr><td><b>Delegates and parallelizes</b></td><td>Spawn isolated subagents for parallel workstreams. Write Python scripts that call tools via RPC, collapsing multi-step pipelines into zero-context-cost turns.</td></tr>
183
+ <tr><td><b>Runs anywhere, not just your laptop</b></td><td>Six terminal backends — local, Docker, SSH, Singularity, Modal, and Daytona. Daytona and Modal offer serverless persistence — your agent's environment hibernates when idle and wakes on demand, costing nearly nothing between sessions. Run it on a $5 VPS or a GPU cluster.</td></tr>
184
+ <tr><td><b>Research-ready</b></td><td>Batch trajectory generation, trajectory compression for training the next generation of tool-calling models.</td></tr>
185
+ </table>
186
+
187
+ ---
188
+
189
+ ## Quick Install
190
+
191
+ ### Linux, macOS, WSL2, Termux
192
+
193
+ ```bash
194
+ curl -fsSL https://bridgeagent.ai/install.sh | bash
195
+ ```
196
+
197
+ ### Windows (native, PowerShell)
198
+
199
+ > **Heads up:** Native Windows runs BridgeAgent without WSL — CLI, gateway, TUI, and tools all work natively. If you'd rather use WSL2, the Linux/macOS one-liner above works there too. Found a bug? Please [file issues](https://github.com/BridgeMind/BridgeAgent/issues).
200
+
201
+ Run this in PowerShell:
202
+
203
+ ```powershell
204
+ iex (irm https://bridgeagent.ai/install.ps1)
205
+ ```
206
+
207
+ The installer handles everything: uv, Python 3.11, Node.js, ripgrep, ffmpeg, **and a portable Git Bash** (MinGit, unpacked to `%LOCALAPPDATA%\bridgeagent\git` — no admin required, completely isolated from any system Git install). BridgeAgent uses this bundled Git Bash to run shell commands.
208
+
209
+ If you already have Git installed, the installer detects it and uses that instead. Otherwise a ~45MB MinGit download is all you need — it won't touch or interfere with any system Git.
210
+
211
+ > **Android / Termux:** The tested manual path is documented in the [Termux guide](https://bridgeagent.ai/docs/getting-started/termux). On Termux, BridgeAgent installs a curated `.[termux]` extra because the full `.[all]` extra currently pulls Android-incompatible voice dependencies.
212
+ >
213
+ > **Windows:** Native Windows is fully supported — the PowerShell one-liner above installs everything. If you'd rather use WSL2, the Linux command works there too. Native Windows install lives under `%LOCALAPPDATA%\bridgeagent`; WSL2 installs under `~/.bridgeagent` as on Linux. The only BridgeAgent feature that currently needs WSL2 specifically is the browser-based dashboard chat pane (it uses a POSIX PTY — classic CLI and gateway both run natively).
214
+
215
+ After installation:
216
+
217
+ ```bash
218
+ source ~/.bashrc # reload shell (or: source ~/.zshrc)
219
+ bridge # start chatting!
220
+ ```
221
+
222
+ ---
223
+
224
+ ## Getting Started
225
+
226
+ ```bash
227
+ bridge # Interactive CLI — start a conversation
228
+ bridge model # Choose your LLM provider and model
229
+ bridge tools # Configure which tools are enabled
230
+ bridge config set # Set individual config values
231
+ bridge gateway # Start the messaging gateway (Telegram, Discord, etc.)
232
+ bridge setup # Run the full setup wizard (configures everything at once)
233
+ bridge claw migrate # Migrate from OpenClaw (if coming from OpenClaw)
234
+ bridge update # Update to the latest version
235
+ bridge doctor # Diagnose any issues
236
+ ```
237
+
238
+ 📖 **[Full documentation →](https://bridgeagent.ai/docs/)**
239
+
240
+ ---
241
+
242
+ ## Skip the API-key collection — Nous Portal
243
+
244
+ BridgeAgent works with whatever provider you want — that's not changing. But if you'd rather not collect five separate API keys for the model, web search, image generation, TTS, and a cloud browser, **[Nous Portal](https://portal.nousresearch.com)** covers all of them under one subscription:
245
+
246
+ - **300+ models** — pick any of them with `/model <name>`
247
+ - **Tool Gateway** — web search (Firecrawl), image generation (FAL), text-to-speech (OpenAI), cloud browser (Browser Use), all routed through your sub. No extra accounts.
248
+
249
+ One command from a fresh install:
250
+
251
+ ```bash
252
+ bridge setup --portal
253
+ ```
254
+
255
+ That logs you in via OAuth, sets Nous as your provider, and turns on the Tool Gateway. Check what's wired up any time with `bridge portal info`. Full details on the [Tool Gateway docs page](https://bridgeagent.ai/docs/user-guide/features/tool-gateway).
256
+
257
+ You can still bring your own keys per-tool whenever you want — the gateway is per-backend, not all-or-nothing.
258
+
259
+ ---
260
+
261
+ ## CLI vs Messaging Quick Reference
262
+
263
+ BridgeAgent has two entry points: start the terminal UI with `bridge`, or run the gateway and talk to it from Telegram, Discord, Slack, WhatsApp, Signal, or Email. Once you're in a conversation, many slash commands are shared across both interfaces.
264
+
265
+ | Action | CLI | Messaging platforms |
266
+ | ------------------------------ | --------------------------------------------- | -------------------------------------------------------------------------------- |
267
+ | Start chatting | `bridge` | Run `bridge gateway setup` + `bridge gateway start`, then send the bot a message |
268
+ | Start fresh conversation | `/new` or `/reset` | `/new` or `/reset` |
269
+ | Change model | `/model [provider:model]` | `/model [provider:model]` |
270
+ | Set a personality | `/personality [name]` | `/personality [name]` |
271
+ | Retry or undo the last turn | `/retry`, `/undo` | `/retry`, `/undo` |
272
+ | Compress context / check usage | `/compress`, `/usage`, `/insights [--days N]` | `/compress`, `/usage`, `/insights [days]` |
273
+ | Browse skills | `/skills` or `/<skill-name>` | `/<skill-name>` |
274
+ | Interrupt current work | `Ctrl+C` or send a new message | `/stop` or send a new message |
275
+ | Platform-specific status | `/platforms` | `/status`, `/sethome` |
276
+
277
+ For the full command lists, see the [CLI guide](https://bridgeagent.ai/docs/user-guide/cli) and the [Messaging Gateway guide](https://bridgeagent.ai/docs/user-guide/messaging).
278
+
279
+ ---
280
+
281
+ ## Documentation
282
+
283
+ All documentation lives at **[bridgeagent.ai/docs](https://bridgeagent.ai/docs/)**:
284
+
285
+ | Section | What's Covered |
286
+ | --------------------------------------------------------------------------------------------------- | ---------------------------------------------------------- |
287
+ | [Quickstart](https://bridgeagent.ai/docs/getting-started/quickstart) | Install → setup → first conversation in 2 minutes |
288
+ | [CLI Usage](https://bridgeagent.ai/docs/user-guide/cli) | Commands, keybindings, personalities, sessions |
289
+ | [Configuration](https://bridgeagent.ai/docs/user-guide/configuration) | Config file, providers, models, all options |
290
+ | [Messaging Gateway](https://bridgeagent.ai/docs/user-guide/messaging) | Telegram, Discord, Slack, WhatsApp, Signal, Home Assistant |
291
+ | [Security](https://bridgeagent.ai/docs/user-guide/security) | Command approval, DM pairing, container isolation |
292
+ | [Tools & Toolsets](https://bridgeagent.ai/docs/user-guide/features/tools) | 40+ tools, toolset system, terminal backends |
293
+ | [Skills System](https://bridgeagent.ai/docs/user-guide/features/skills) | Procedural memory, Skills Hub, creating skills |
294
+ | [Memory](https://bridgeagent.ai/docs/user-guide/features/memory) | Persistent memory, user profiles, best practices |
295
+ | [MCP Integration](https://bridgeagent.ai/docs/user-guide/features/mcp) | Connect any MCP server for extended capabilities |
296
+ | [Cron Scheduling](https://bridgeagent.ai/docs/user-guide/features/cron) | Scheduled tasks with platform delivery |
297
+ | [Context Files](https://bridgeagent.ai/docs/user-guide/features/context-files) | Project context that shapes every conversation |
298
+ | [Architecture](https://bridgeagent.ai/docs/developer-guide/architecture) | Project structure, agent loop, key classes |
299
+ | [Contributing](https://bridgeagent.ai/docs/developer-guide/contributing) | Development setup, PR process, code style |
300
+ | [CLI Reference](https://bridgeagent.ai/docs/reference/cli-commands) | All commands and flags |
301
+ | [Environment Variables](https://bridgeagent.ai/docs/reference/environment-variables) | Complete env var reference |
302
+
303
+ ---
304
+
305
+ ## Migrating from OpenClaw
306
+
307
+ If you're coming from OpenClaw, BridgeAgent can automatically import your settings, memories, skills, and API keys.
308
+
309
+ **During first-time setup:** The setup wizard (`bridge setup`) automatically detects `~/.openclaw` and offers to migrate before configuration begins.
310
+
311
+ **Anytime after install:**
312
+
313
+ ```bash
314
+ bridge claw migrate # Interactive migration (full preset)
315
+ bridge claw migrate --dry-run # Preview what would be migrated
316
+ bridge claw migrate --preset user-data # Migrate without secrets
317
+ bridge claw migrate --overwrite # Overwrite existing conflicts
318
+ ```
319
+
320
+ What gets imported:
321
+
322
+ - **SOUL.md** — persona file
323
+ - **Memories** — MEMORY.md and USER.md entries
324
+ - **Skills** — user-created skills → `~/.bridgeagent/skills/openclaw-imports/`
325
+ - **Command allowlist** — approval patterns
326
+ - **Messaging settings** — platform configs, allowed users, working directory
327
+ - **API keys** — allowlisted secrets (Telegram, OpenRouter, OpenAI, Anthropic, ElevenLabs)
328
+ - **TTS assets** — workspace audio files
329
+ - **Workspace instructions** — AGENTS.md (with `--workspace-target`)
330
+
331
+ See `bridge claw migrate --help` for all options, or use the `openclaw-migration` skill for an interactive agent-guided migration with dry-run previews.
332
+
333
+ ---
334
+
335
+ ## Contributing
336
+
337
+ We welcome contributions! See the [Contributing Guide](https://bridgeagent.ai/docs/developer-guide/contributing) for development setup, code style, and PR process.
338
+
339
+ Quick start for contributors — clone and go with the compatibility setup helper:
340
+
341
+ ```bash
342
+ git clone https://github.com/BridgeMind/BridgeAgent.git bridgeagent
343
+ cd bridgeagent
344
+ ./setup-bridge.sh # installs uv, creates venv, installs .[all], sets up the local CLI
345
+ bridge # uses the installed BridgeAgent CLI
346
+ ```
347
+
348
+ Manual path (equivalent to the above):
349
+
350
+ ```bash
351
+ curl -LsSf https://astral.sh/uv/install.sh | sh
352
+ uv venv .venv --python 3.11
353
+ source .venv/bin/activate
354
+ uv pip install -e ".[all,dev]"
355
+ scripts/run_tests.sh
356
+ ```
357
+
358
+ ---
359
+
360
+ ## Community
361
+
362
+ - 💬 [Community](https://bridgeagent.ai)
363
+ - 📚 [Skills Hub](https://agentskills.io)
364
+ - 🐛 [Issues](https://github.com/BridgeMind/BridgeAgent/issues)
365
+ - 🔌 [computer-use-linux](https://github.com/avifenesh/computer-use-linux) — Linux desktop-control MCP server for BridgeAgent and other MCP hosts, with AT-SPI accessibility trees, Wayland/X11 input, screenshots, and compositor window targeting.
366
+ - 🔌 [BridgeClaw](https://github.com/AaronWong1999/hermesclaw) — Community WeChat bridge: Run BridgeAgent and OpenClaw on the same WeChat account.
367
+
368
+ ---
369
+
370
+ ## License
371
+
372
+ MIT — see [LICENSE](LICENSE).
373
+
374
+ Built by [BridgeMind](https://bridgemind.dev).
@@ -0,0 +1,218 @@
1
+ <p align="center">
2
+ <img src="assets/banner.png" alt="BridgeAgent" width="100%">
3
+ </p>
4
+
5
+ # BridgeAgent ☤
6
+
7
+ > **BridgeAgent** is a BridgeMind fork of [Nous Research's hermes-agent](https://github.com/NousResearch/hermes-agent) (MIT). It still uses Nous Research's inference backend by default. Branding, package name, CLI commands (`bridge` / `bridgeagent` / `bridge-acp`), env vars (`BRIDGE_*`), and the config dir (`~/.bridgeagent/`) have been rebranded; model identifiers and backend endpoints are unchanged.
8
+
9
+ <p align="center">
10
+ <a href="https://bridgeagent.ai/docs/"><img src="https://img.shields.io/badge/Docs-bridgeagent.ai-3B82F6?style=for-the-badge" alt="Documentation"></a>
11
+ <a href="https://bridgeagent.ai"><img src="https://img.shields.io/badge/Community-bridgeagent.ai-3B82F6?style=for-the-badge" alt="Community"></a>
12
+ <a href="https://github.com/BridgeMind/BridgeAgent/blob/main/LICENSE"><img src="https://img.shields.io/badge/License-MIT-green?style=for-the-badge" alt="License: MIT"></a>
13
+ <a href="https://bridgemind.dev"><img src="https://img.shields.io/badge/Built%20by-BridgeMind-blueviolet?style=for-the-badge" alt="Built by BridgeMind"></a>
14
+ <a href="README.zh-CN.md"><img src="https://img.shields.io/badge/Lang-中文-red?style=for-the-badge" alt="中文"></a>
15
+ </p>
16
+
17
+ **The self-improving AI agent built by [BridgeMind](https://bridgemind.dev).** It's the only agent with a built-in learning loop — it creates skills from experience, improves them during use, nudges itself to persist knowledge, searches its own past conversations, and builds a deepening model of who you are across sessions. Run it on a $5 VPS, a GPU cluster, or serverless infrastructure that costs nearly nothing when idle. It's not tied to your laptop — talk to it from Telegram while it works on a cloud VM.
18
+
19
+ Use any model you want — [Nous Portal](https://portal.nousresearch.com), [OpenRouter](https://openrouter.ai) (200+ models), [NovitaAI](https://novita.ai) (AI-native cloud for Model API, Agent Sandbox, and GPU Cloud), [NVIDIA NIM](https://build.nvidia.com) (Nemotron), [Xiaomi MiMo](https://platform.xiaomimimo.com), [z.ai/GLM](https://z.ai), [Kimi/Moonshot](https://platform.moonshot.ai), [MiniMax](https://www.minimax.io), [Hugging Face](https://huggingface.co), OpenAI, or your own endpoint. Switch with `bridge model` — no code changes, no lock-in.
20
+
21
+ <table>
22
+ <tr><td><b>A real terminal interface</b></td><td>Full TUI with multiline editing, slash-command autocomplete, conversation history, interrupt-and-redirect, and streaming tool output.</td></tr>
23
+ <tr><td><b>Lives where you do</b></td><td>Telegram, Discord, Slack, WhatsApp, Signal, and CLI — all from a single gateway process. Voice memo transcription, cross-platform conversation continuity.</td></tr>
24
+ <tr><td><b>A closed learning loop</b></td><td>Agent-curated memory with periodic nudges. Autonomous skill creation after complex tasks. Skills self-improve during use. FTS5 session search with LLM summarization for cross-session recall. <a href="https://github.com/plastic-labs/honcho">Honcho</a> dialectic user modeling. Compatible with the <a href="https://agentskills.io">agentskills.io</a> open standard.</td></tr>
25
+ <tr><td><b>Scheduled automations</b></td><td>Built-in cron scheduler with delivery to any platform. Daily reports, nightly backups, weekly audits — all in natural language, running unattended.</td></tr>
26
+ <tr><td><b>Delegates and parallelizes</b></td><td>Spawn isolated subagents for parallel workstreams. Write Python scripts that call tools via RPC, collapsing multi-step pipelines into zero-context-cost turns.</td></tr>
27
+ <tr><td><b>Runs anywhere, not just your laptop</b></td><td>Six terminal backends — local, Docker, SSH, Singularity, Modal, and Daytona. Daytona and Modal offer serverless persistence — your agent's environment hibernates when idle and wakes on demand, costing nearly nothing between sessions. Run it on a $5 VPS or a GPU cluster.</td></tr>
28
+ <tr><td><b>Research-ready</b></td><td>Batch trajectory generation, trajectory compression for training the next generation of tool-calling models.</td></tr>
29
+ </table>
30
+
31
+ ---
32
+
33
+ ## Quick Install
34
+
35
+ ### Linux, macOS, WSL2, Termux
36
+
37
+ ```bash
38
+ curl -fsSL https://bridgeagent.ai/install.sh | bash
39
+ ```
40
+
41
+ ### Windows (native, PowerShell)
42
+
43
+ > **Heads up:** Native Windows runs BridgeAgent without WSL — CLI, gateway, TUI, and tools all work natively. If you'd rather use WSL2, the Linux/macOS one-liner above works there too. Found a bug? Please [file issues](https://github.com/BridgeMind/BridgeAgent/issues).
44
+
45
+ Run this in PowerShell:
46
+
47
+ ```powershell
48
+ iex (irm https://bridgeagent.ai/install.ps1)
49
+ ```
50
+
51
+ The installer handles everything: uv, Python 3.11, Node.js, ripgrep, ffmpeg, **and a portable Git Bash** (MinGit, unpacked to `%LOCALAPPDATA%\bridgeagent\git` — no admin required, completely isolated from any system Git install). BridgeAgent uses this bundled Git Bash to run shell commands.
52
+
53
+ If you already have Git installed, the installer detects it and uses that instead. Otherwise a ~45MB MinGit download is all you need — it won't touch or interfere with any system Git.
54
+
55
+ > **Android / Termux:** The tested manual path is documented in the [Termux guide](https://bridgeagent.ai/docs/getting-started/termux). On Termux, BridgeAgent installs a curated `.[termux]` extra because the full `.[all]` extra currently pulls Android-incompatible voice dependencies.
56
+ >
57
+ > **Windows:** Native Windows is fully supported — the PowerShell one-liner above installs everything. If you'd rather use WSL2, the Linux command works there too. Native Windows install lives under `%LOCALAPPDATA%\bridgeagent`; WSL2 installs under `~/.bridgeagent` as on Linux. The only BridgeAgent feature that currently needs WSL2 specifically is the browser-based dashboard chat pane (it uses a POSIX PTY — classic CLI and gateway both run natively).
58
+
59
+ After installation:
60
+
61
+ ```bash
62
+ source ~/.bashrc # reload shell (or: source ~/.zshrc)
63
+ bridge # start chatting!
64
+ ```
65
+
66
+ ---
67
+
68
+ ## Getting Started
69
+
70
+ ```bash
71
+ bridge # Interactive CLI — start a conversation
72
+ bridge model # Choose your LLM provider and model
73
+ bridge tools # Configure which tools are enabled
74
+ bridge config set # Set individual config values
75
+ bridge gateway # Start the messaging gateway (Telegram, Discord, etc.)
76
+ bridge setup # Run the full setup wizard (configures everything at once)
77
+ bridge claw migrate # Migrate from OpenClaw (if coming from OpenClaw)
78
+ bridge update # Update to the latest version
79
+ bridge doctor # Diagnose any issues
80
+ ```
81
+
82
+ 📖 **[Full documentation →](https://bridgeagent.ai/docs/)**
83
+
84
+ ---
85
+
86
+ ## Skip the API-key collection — Nous Portal
87
+
88
+ BridgeAgent works with whatever provider you want — that's not changing. But if you'd rather not collect five separate API keys for the model, web search, image generation, TTS, and a cloud browser, **[Nous Portal](https://portal.nousresearch.com)** covers all of them under one subscription:
89
+
90
+ - **300+ models** — pick any of them with `/model <name>`
91
+ - **Tool Gateway** — web search (Firecrawl), image generation (FAL), text-to-speech (OpenAI), cloud browser (Browser Use), all routed through your sub. No extra accounts.
92
+
93
+ One command from a fresh install:
94
+
95
+ ```bash
96
+ bridge setup --portal
97
+ ```
98
+
99
+ That logs you in via OAuth, sets Nous as your provider, and turns on the Tool Gateway. Check what's wired up any time with `bridge portal info`. Full details on the [Tool Gateway docs page](https://bridgeagent.ai/docs/user-guide/features/tool-gateway).
100
+
101
+ You can still bring your own keys per-tool whenever you want — the gateway is per-backend, not all-or-nothing.
102
+
103
+ ---
104
+
105
+ ## CLI vs Messaging Quick Reference
106
+
107
+ BridgeAgent has two entry points: start the terminal UI with `bridge`, or run the gateway and talk to it from Telegram, Discord, Slack, WhatsApp, Signal, or Email. Once you're in a conversation, many slash commands are shared across both interfaces.
108
+
109
+ | Action | CLI | Messaging platforms |
110
+ | ------------------------------ | --------------------------------------------- | -------------------------------------------------------------------------------- |
111
+ | Start chatting | `bridge` | Run `bridge gateway setup` + `bridge gateway start`, then send the bot a message |
112
+ | Start fresh conversation | `/new` or `/reset` | `/new` or `/reset` |
113
+ | Change model | `/model [provider:model]` | `/model [provider:model]` |
114
+ | Set a personality | `/personality [name]` | `/personality [name]` |
115
+ | Retry or undo the last turn | `/retry`, `/undo` | `/retry`, `/undo` |
116
+ | Compress context / check usage | `/compress`, `/usage`, `/insights [--days N]` | `/compress`, `/usage`, `/insights [days]` |
117
+ | Browse skills | `/skills` or `/<skill-name>` | `/<skill-name>` |
118
+ | Interrupt current work | `Ctrl+C` or send a new message | `/stop` or send a new message |
119
+ | Platform-specific status | `/platforms` | `/status`, `/sethome` |
120
+
121
+ For the full command lists, see the [CLI guide](https://bridgeagent.ai/docs/user-guide/cli) and the [Messaging Gateway guide](https://bridgeagent.ai/docs/user-guide/messaging).
122
+
123
+ ---
124
+
125
+ ## Documentation
126
+
127
+ All documentation lives at **[bridgeagent.ai/docs](https://bridgeagent.ai/docs/)**:
128
+
129
+ | Section | What's Covered |
130
+ | --------------------------------------------------------------------------------------------------- | ---------------------------------------------------------- |
131
+ | [Quickstart](https://bridgeagent.ai/docs/getting-started/quickstart) | Install → setup → first conversation in 2 minutes |
132
+ | [CLI Usage](https://bridgeagent.ai/docs/user-guide/cli) | Commands, keybindings, personalities, sessions |
133
+ | [Configuration](https://bridgeagent.ai/docs/user-guide/configuration) | Config file, providers, models, all options |
134
+ | [Messaging Gateway](https://bridgeagent.ai/docs/user-guide/messaging) | Telegram, Discord, Slack, WhatsApp, Signal, Home Assistant |
135
+ | [Security](https://bridgeagent.ai/docs/user-guide/security) | Command approval, DM pairing, container isolation |
136
+ | [Tools & Toolsets](https://bridgeagent.ai/docs/user-guide/features/tools) | 40+ tools, toolset system, terminal backends |
137
+ | [Skills System](https://bridgeagent.ai/docs/user-guide/features/skills) | Procedural memory, Skills Hub, creating skills |
138
+ | [Memory](https://bridgeagent.ai/docs/user-guide/features/memory) | Persistent memory, user profiles, best practices |
139
+ | [MCP Integration](https://bridgeagent.ai/docs/user-guide/features/mcp) | Connect any MCP server for extended capabilities |
140
+ | [Cron Scheduling](https://bridgeagent.ai/docs/user-guide/features/cron) | Scheduled tasks with platform delivery |
141
+ | [Context Files](https://bridgeagent.ai/docs/user-guide/features/context-files) | Project context that shapes every conversation |
142
+ | [Architecture](https://bridgeagent.ai/docs/developer-guide/architecture) | Project structure, agent loop, key classes |
143
+ | [Contributing](https://bridgeagent.ai/docs/developer-guide/contributing) | Development setup, PR process, code style |
144
+ | [CLI Reference](https://bridgeagent.ai/docs/reference/cli-commands) | All commands and flags |
145
+ | [Environment Variables](https://bridgeagent.ai/docs/reference/environment-variables) | Complete env var reference |
146
+
147
+ ---
148
+
149
+ ## Migrating from OpenClaw
150
+
151
+ If you're coming from OpenClaw, BridgeAgent can automatically import your settings, memories, skills, and API keys.
152
+
153
+ **During first-time setup:** The setup wizard (`bridge setup`) automatically detects `~/.openclaw` and offers to migrate before configuration begins.
154
+
155
+ **Anytime after install:**
156
+
157
+ ```bash
158
+ bridge claw migrate # Interactive migration (full preset)
159
+ bridge claw migrate --dry-run # Preview what would be migrated
160
+ bridge claw migrate --preset user-data # Migrate without secrets
161
+ bridge claw migrate --overwrite # Overwrite existing conflicts
162
+ ```
163
+
164
+ What gets imported:
165
+
166
+ - **SOUL.md** — persona file
167
+ - **Memories** — MEMORY.md and USER.md entries
168
+ - **Skills** — user-created skills → `~/.bridgeagent/skills/openclaw-imports/`
169
+ - **Command allowlist** — approval patterns
170
+ - **Messaging settings** — platform configs, allowed users, working directory
171
+ - **API keys** — allowlisted secrets (Telegram, OpenRouter, OpenAI, Anthropic, ElevenLabs)
172
+ - **TTS assets** — workspace audio files
173
+ - **Workspace instructions** — AGENTS.md (with `--workspace-target`)
174
+
175
+ See `bridge claw migrate --help` for all options, or use the `openclaw-migration` skill for an interactive agent-guided migration with dry-run previews.
176
+
177
+ ---
178
+
179
+ ## Contributing
180
+
181
+ We welcome contributions! See the [Contributing Guide](https://bridgeagent.ai/docs/developer-guide/contributing) for development setup, code style, and PR process.
182
+
183
+ Quick start for contributors — clone and go with the compatibility setup helper:
184
+
185
+ ```bash
186
+ git clone https://github.com/BridgeMind/BridgeAgent.git bridgeagent
187
+ cd bridgeagent
188
+ ./setup-bridge.sh # installs uv, creates venv, installs .[all], sets up the local CLI
189
+ bridge # uses the installed BridgeAgent CLI
190
+ ```
191
+
192
+ Manual path (equivalent to the above):
193
+
194
+ ```bash
195
+ curl -LsSf https://astral.sh/uv/install.sh | sh
196
+ uv venv .venv --python 3.11
197
+ source .venv/bin/activate
198
+ uv pip install -e ".[all,dev]"
199
+ scripts/run_tests.sh
200
+ ```
201
+
202
+ ---
203
+
204
+ ## Community
205
+
206
+ - 💬 [Community](https://bridgeagent.ai)
207
+ - 📚 [Skills Hub](https://agentskills.io)
208
+ - 🐛 [Issues](https://github.com/BridgeMind/BridgeAgent/issues)
209
+ - 🔌 [computer-use-linux](https://github.com/avifenesh/computer-use-linux) — Linux desktop-control MCP server for BridgeAgent and other MCP hosts, with AT-SPI accessibility trees, Wayland/X11 input, screenshots, and compositor window targeting.
210
+ - 🔌 [BridgeClaw](https://github.com/AaronWong1999/hermesclaw) — Community WeChat bridge: Run BridgeAgent and OpenClaw on the same WeChat account.
211
+
212
+ ---
213
+
214
+ ## License
215
+
216
+ MIT — see [LICENSE](LICENSE).
217
+
218
+ Built by [BridgeMind](https://bridgemind.dev).
@@ -0,0 +1 @@
1
+ """ACP (Agent Communication Protocol) adapter for BridgeAgent."""
@@ -0,0 +1,5 @@
1
+ """Allow running the ACP adapter as ``python -m acp_adapter``."""
2
+
3
+ from .entry import main
4
+
5
+ main()