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.
- bridgeagent-0.16.0/LICENSE +25 -0
- bridgeagent-0.16.0/MANIFEST.in +10 -0
- bridgeagent-0.16.0/PKG-INFO +374 -0
- bridgeagent-0.16.0/README.md +218 -0
- bridgeagent-0.16.0/acp_adapter/__init__.py +1 -0
- bridgeagent-0.16.0/acp_adapter/__main__.py +5 -0
- bridgeagent-0.16.0/acp_adapter/auth.py +85 -0
- bridgeagent-0.16.0/acp_adapter/edit_approval.py +286 -0
- bridgeagent-0.16.0/acp_adapter/entry.py +266 -0
- bridgeagent-0.16.0/acp_adapter/events.py +279 -0
- bridgeagent-0.16.0/acp_adapter/permissions.py +168 -0
- bridgeagent-0.16.0/acp_adapter/server.py +1952 -0
- bridgeagent-0.16.0/acp_adapter/session.py +623 -0
- bridgeagent-0.16.0/acp_adapter/tools.py +1291 -0
- bridgeagent-0.16.0/agent/__init__.py +8 -0
- bridgeagent-0.16.0/agent/account_usage.py +550 -0
- bridgeagent-0.16.0/agent/agent_init.py +1739 -0
- bridgeagent-0.16.0/agent/agent_runtime_helpers.py +2482 -0
- bridgeagent-0.16.0/agent/anthropic_adapter.py +2303 -0
- bridgeagent-0.16.0/agent/async_utils.py +68 -0
- bridgeagent-0.16.0/agent/auxiliary_client.py +5928 -0
- bridgeagent-0.16.0/agent/azure_identity_adapter.py +555 -0
- bridgeagent-0.16.0/agent/background_review.py +597 -0
- bridgeagent-0.16.0/agent/bedrock_adapter.py +1277 -0
- bridgeagent-0.16.0/agent/browser_provider.py +175 -0
- bridgeagent-0.16.0/agent/browser_registry.py +192 -0
- bridgeagent-0.16.0/agent/chat_completion_helpers.py +2472 -0
- bridgeagent-0.16.0/agent/codex_responses_adapter.py +1260 -0
- bridgeagent-0.16.0/agent/codex_runtime.py +535 -0
- bridgeagent-0.16.0/agent/context_compressor.py +2078 -0
- bridgeagent-0.16.0/agent/context_engine.py +226 -0
- bridgeagent-0.16.0/agent/context_references.py +518 -0
- bridgeagent-0.16.0/agent/conversation_compression.py +785 -0
- bridgeagent-0.16.0/agent/conversation_loop.py +4965 -0
- bridgeagent-0.16.0/agent/copilot_acp_client.py +686 -0
- bridgeagent-0.16.0/agent/credential_persistence.py +174 -0
- bridgeagent-0.16.0/agent/credential_pool.py +2183 -0
- bridgeagent-0.16.0/agent/credential_sources.py +448 -0
- bridgeagent-0.16.0/agent/credits_tracker.py +723 -0
- bridgeagent-0.16.0/agent/curator.py +1843 -0
- bridgeagent-0.16.0/agent/curator_backup.py +695 -0
- bridgeagent-0.16.0/agent/display.py +1033 -0
- bridgeagent-0.16.0/agent/error_classifier.py +1319 -0
- bridgeagent-0.16.0/agent/file_safety.py +640 -0
- bridgeagent-0.16.0/agent/gemini_cloudcode_adapter.py +909 -0
- bridgeagent-0.16.0/agent/gemini_native_adapter.py +990 -0
- bridgeagent-0.16.0/agent/gemini_schema.py +99 -0
- bridgeagent-0.16.0/agent/google_code_assist.py +451 -0
- bridgeagent-0.16.0/agent/google_oauth.py +1067 -0
- bridgeagent-0.16.0/agent/i18n.py +302 -0
- bridgeagent-0.16.0/agent/image_gen_provider.py +324 -0
- bridgeagent-0.16.0/agent/image_gen_registry.py +145 -0
- bridgeagent-0.16.0/agent/image_routing.py +511 -0
- bridgeagent-0.16.0/agent/insights.py +930 -0
- bridgeagent-0.16.0/agent/iteration_budget.py +62 -0
- bridgeagent-0.16.0/agent/jiter_preload.py +39 -0
- bridgeagent-0.16.0/agent/lmstudio_reasoning.py +48 -0
- bridgeagent-0.16.0/agent/lsp/__init__.py +106 -0
- bridgeagent-0.16.0/agent/lsp/cli.py +299 -0
- bridgeagent-0.16.0/agent/lsp/client.py +943 -0
- bridgeagent-0.16.0/agent/lsp/eventlog.py +213 -0
- bridgeagent-0.16.0/agent/lsp/install.py +400 -0
- bridgeagent-0.16.0/agent/lsp/manager.py +639 -0
- bridgeagent-0.16.0/agent/lsp/protocol.py +196 -0
- bridgeagent-0.16.0/agent/lsp/range_shift.py +149 -0
- bridgeagent-0.16.0/agent/lsp/reporter.py +78 -0
- bridgeagent-0.16.0/agent/lsp/servers.py +1040 -0
- bridgeagent-0.16.0/agent/lsp/workspace.py +223 -0
- bridgeagent-0.16.0/agent/manual_compression_feedback.py +49 -0
- bridgeagent-0.16.0/agent/markdown_tables.py +309 -0
- bridgeagent-0.16.0/agent/memory_manager.py +683 -0
- bridgeagent-0.16.0/agent/memory_provider.py +296 -0
- bridgeagent-0.16.0/agent/message_sanitization.py +444 -0
- bridgeagent-0.16.0/agent/model_metadata.py +1925 -0
- bridgeagent-0.16.0/agent/models_dev.py +725 -0
- bridgeagent-0.16.0/agent/moonshot_schema.py +231 -0
- bridgeagent-0.16.0/agent/nous_rate_guard.py +325 -0
- bridgeagent-0.16.0/agent/onboarding.py +193 -0
- bridgeagent-0.16.0/agent/plugin_llm.py +1046 -0
- bridgeagent-0.16.0/agent/portal_tags.py +64 -0
- bridgeagent-0.16.0/agent/process_bootstrap.py +167 -0
- bridgeagent-0.16.0/agent/prompt_builder.py +1660 -0
- bridgeagent-0.16.0/agent/prompt_caching.py +79 -0
- bridgeagent-0.16.0/agent/rate_limit_tracker.py +246 -0
- bridgeagent-0.16.0/agent/redact.py +497 -0
- bridgeagent-0.16.0/agent/retry_utils.py +57 -0
- bridgeagent-0.16.0/agent/runtime_cwd.py +62 -0
- bridgeagent-0.16.0/agent/secret_registry.py +223 -0
- bridgeagent-0.16.0/agent/secret_sources/__init__.py +13 -0
- bridgeagent-0.16.0/agent/secret_sources/bitwarden.py +690 -0
- bridgeagent-0.16.0/agent/shell_hooks.py +847 -0
- bridgeagent-0.16.0/agent/skill_bundles.py +410 -0
- bridgeagent-0.16.0/agent/skill_commands.py +527 -0
- bridgeagent-0.16.0/agent/skill_preprocessing.py +139 -0
- bridgeagent-0.16.0/agent/skill_utils.py +677 -0
- bridgeagent-0.16.0/agent/stream_diag.py +280 -0
- bridgeagent-0.16.0/agent/subdirectory_hints.py +270 -0
- bridgeagent-0.16.0/agent/system_prompt.py +412 -0
- bridgeagent-0.16.0/agent/think_scrubber.py +386 -0
- bridgeagent-0.16.0/agent/title_generator.py +171 -0
- bridgeagent-0.16.0/agent/tool_dispatch_helpers.py +424 -0
- bridgeagent-0.16.0/agent/tool_executor.py +1422 -0
- bridgeagent-0.16.0/agent/tool_guardrails.py +475 -0
- bridgeagent-0.16.0/agent/tool_result_classification.py +26 -0
- bridgeagent-0.16.0/agent/trajectory.py +56 -0
- bridgeagent-0.16.0/agent/transcription_provider.py +193 -0
- bridgeagent-0.16.0/agent/transcription_registry.py +122 -0
- bridgeagent-0.16.0/agent/transports/__init__.py +68 -0
- bridgeagent-0.16.0/agent/transports/anthropic.py +189 -0
- bridgeagent-0.16.0/agent/transports/base.py +89 -0
- bridgeagent-0.16.0/agent/transports/bedrock.py +154 -0
- bridgeagent-0.16.0/agent/transports/chat_completions.py +704 -0
- bridgeagent-0.16.0/agent/transports/codex.py +359 -0
- bridgeagent-0.16.0/agent/transports/codex_app_server.py +399 -0
- bridgeagent-0.16.0/agent/transports/codex_app_server_session.py +849 -0
- bridgeagent-0.16.0/agent/transports/codex_event_projector.py +312 -0
- bridgeagent-0.16.0/agent/transports/hermes_tools_mcp_server.py +233 -0
- bridgeagent-0.16.0/agent/transports/types.py +162 -0
- bridgeagent-0.16.0/agent/tts_provider.py +274 -0
- bridgeagent-0.16.0/agent/tts_registry.py +133 -0
- bridgeagent-0.16.0/agent/usage_pricing.py +905 -0
- bridgeagent-0.16.0/agent/video_gen_provider.py +299 -0
- bridgeagent-0.16.0/agent/video_gen_registry.py +117 -0
- bridgeagent-0.16.0/agent/web_search_provider.py +185 -0
- bridgeagent-0.16.0/agent/web_search_registry.py +245 -0
- bridgeagent-0.16.0/batch_runner.py +1321 -0
- bridgeagent-0.16.0/bridge_bootstrap.py +129 -0
- bridgeagent-0.16.0/bridge_cli/__init__.py +47 -0
- bridgeagent-0.16.0/bridge_cli/_parser.py +397 -0
- bridgeagent-0.16.0/bridge_cli/_subprocess_compat.py +234 -0
- bridgeagent-0.16.0/bridge_cli/auth.py +7706 -0
- bridgeagent-0.16.0/bridge_cli/auth_commands.py +821 -0
- bridgeagent-0.16.0/bridge_cli/azure_detect.py +406 -0
- bridgeagent-0.16.0/bridge_cli/backup.py +1043 -0
- bridgeagent-0.16.0/bridge_cli/banner.py +797 -0
- bridgeagent-0.16.0/bridge_cli/browser_connect.py +217 -0
- bridgeagent-0.16.0/bridge_cli/build_info.py +51 -0
- bridgeagent-0.16.0/bridge_cli/bundles.py +229 -0
- bridgeagent-0.16.0/bridge_cli/callbacks.py +242 -0
- bridgeagent-0.16.0/bridge_cli/checkpoints.py +244 -0
- bridgeagent-0.16.0/bridge_cli/claw.py +809 -0
- bridgeagent-0.16.0/bridge_cli/cli_output.py +77 -0
- bridgeagent-0.16.0/bridge_cli/clipboard.py +494 -0
- bridgeagent-0.16.0/bridge_cli/codex_models.py +206 -0
- bridgeagent-0.16.0/bridge_cli/codex_runtime_plugin_migration.py +757 -0
- bridgeagent-0.16.0/bridge_cli/codex_runtime_switch.py +266 -0
- bridgeagent-0.16.0/bridge_cli/colors.py +38 -0
- bridgeagent-0.16.0/bridge_cli/commands.py +1743 -0
- bridgeagent-0.16.0/bridge_cli/completion.py +319 -0
- bridgeagent-0.16.0/bridge_cli/config.py +6478 -0
- bridgeagent-0.16.0/bridge_cli/container_boot.py +395 -0
- bridgeagent-0.16.0/bridge_cli/copilot_auth.py +392 -0
- bridgeagent-0.16.0/bridge_cli/cron.py +374 -0
- bridgeagent-0.16.0/bridge_cli/curator.py +598 -0
- bridgeagent-0.16.0/bridge_cli/curses_ui.py +872 -0
- bridgeagent-0.16.0/bridge_cli/dashboard_auth/__init__.py +42 -0
- bridgeagent-0.16.0/bridge_cli/dashboard_auth/audit.py +87 -0
- bridgeagent-0.16.0/bridge_cli/dashboard_auth/base.py +220 -0
- bridgeagent-0.16.0/bridge_cli/dashboard_auth/cookies.py +247 -0
- bridgeagent-0.16.0/bridge_cli/dashboard_auth/login_page.py +534 -0
- bridgeagent-0.16.0/bridge_cli/dashboard_auth/middleware.py +367 -0
- bridgeagent-0.16.0/bridge_cli/dashboard_auth/prefix.py +157 -0
- bridgeagent-0.16.0/bridge_cli/dashboard_auth/public_paths.py +49 -0
- bridgeagent-0.16.0/bridge_cli/dashboard_auth/registry.py +58 -0
- bridgeagent-0.16.0/bridge_cli/dashboard_auth/routes.py +621 -0
- bridgeagent-0.16.0/bridge_cli/dashboard_auth/ws_tickets.py +161 -0
- bridgeagent-0.16.0/bridge_cli/dashboard_register.py +300 -0
- bridgeagent-0.16.0/bridge_cli/debug.py +829 -0
- bridgeagent-0.16.0/bridge_cli/default_soul.py +11 -0
- bridgeagent-0.16.0/bridge_cli/dep_ensure.py +159 -0
- bridgeagent-0.16.0/bridge_cli/dingtalk_auth.py +293 -0
- bridgeagent-0.16.0/bridge_cli/doctor.py +2183 -0
- bridgeagent-0.16.0/bridge_cli/dump.py +349 -0
- bridgeagent-0.16.0/bridge_cli/env_loader.py +344 -0
- bridgeagent-0.16.0/bridge_cli/fallback_cmd.py +354 -0
- bridgeagent-0.16.0/bridge_cli/fallback_config.py +72 -0
- bridgeagent-0.16.0/bridge_cli/gateway.py +6755 -0
- bridgeagent-0.16.0/bridge_cli/gateway_windows.py +1311 -0
- bridgeagent-0.16.0/bridge_cli/goals.py +912 -0
- bridgeagent-0.16.0/bridge_cli/gui_uninstall.py +290 -0
- bridgeagent-0.16.0/bridge_cli/hooks.py +385 -0
- bridgeagent-0.16.0/bridge_cli/inventory.py +410 -0
- bridgeagent-0.16.0/bridge_cli/kanban.py +2830 -0
- bridgeagent-0.16.0/bridge_cli/kanban_db.py +7659 -0
- bridgeagent-0.16.0/bridge_cli/kanban_decompose.py +477 -0
- bridgeagent-0.16.0/bridge_cli/kanban_diagnostics.py +1107 -0
- bridgeagent-0.16.0/bridge_cli/kanban_specify.py +271 -0
- bridgeagent-0.16.0/bridge_cli/kanban_swarm.py +279 -0
- bridgeagent-0.16.0/bridge_cli/logs.py +394 -0
- bridgeagent-0.16.0/bridge_cli/loop.py +367 -0
- bridgeagent-0.16.0/bridge_cli/main.py +16632 -0
- bridgeagent-0.16.0/bridge_cli/managed_uv.py +254 -0
- bridgeagent-0.16.0/bridge_cli/mcp_catalog.py +775 -0
- bridgeagent-0.16.0/bridge_cli/mcp_config.py +1217 -0
- bridgeagent-0.16.0/bridge_cli/mcp_picker.py +322 -0
- bridgeagent-0.16.0/bridge_cli/mcp_startup.py +59 -0
- bridgeagent-0.16.0/bridge_cli/memory_setup.py +472 -0
- bridgeagent-0.16.0/bridge_cli/middleware.py +313 -0
- bridgeagent-0.16.0/bridge_cli/migrate.py +115 -0
- bridgeagent-0.16.0/bridge_cli/model_catalog.py +363 -0
- bridgeagent-0.16.0/bridge_cli/model_normalize.py +472 -0
- bridgeagent-0.16.0/bridge_cli/model_switch.py +2023 -0
- bridgeagent-0.16.0/bridge_cli/models.py +4092 -0
- bridgeagent-0.16.0/bridge_cli/nous_account.py +764 -0
- bridgeagent-0.16.0/bridge_cli/nous_subscription.py +1121 -0
- bridgeagent-0.16.0/bridge_cli/oneshot.py +381 -0
- bridgeagent-0.16.0/bridge_cli/pairing.py +115 -0
- bridgeagent-0.16.0/bridge_cli/partial_compress.py +235 -0
- bridgeagent-0.16.0/bridge_cli/platforms.py +83 -0
- bridgeagent-0.16.0/bridge_cli/plugins.py +1946 -0
- bridgeagent-0.16.0/bridge_cli/plugins_cmd.py +1691 -0
- bridgeagent-0.16.0/bridge_cli/portal_cli.py +245 -0
- bridgeagent-0.16.0/bridge_cli/profile_describer.py +298 -0
- bridgeagent-0.16.0/bridge_cli/profile_distribution.py +721 -0
- bridgeagent-0.16.0/bridge_cli/profiles.py +1664 -0
- bridgeagent-0.16.0/bridge_cli/prompt_size.py +153 -0
- bridgeagent-0.16.0/bridge_cli/providers.py +731 -0
- bridgeagent-0.16.0/bridge_cli/proxy/__init__.py +20 -0
- bridgeagent-0.16.0/bridge_cli/proxy/adapters/__init__.py +37 -0
- bridgeagent-0.16.0/bridge_cli/proxy/adapters/base.py +108 -0
- bridgeagent-0.16.0/bridge_cli/proxy/adapters/nous_portal.py +189 -0
- bridgeagent-0.16.0/bridge_cli/proxy/adapters/xai.py +145 -0
- bridgeagent-0.16.0/bridge_cli/proxy/cli.py +142 -0
- bridgeagent-0.16.0/bridge_cli/proxy/server.py +296 -0
- bridgeagent-0.16.0/bridge_cli/psutil_android.py +108 -0
- bridgeagent-0.16.0/bridge_cli/pt_input_extras.py +120 -0
- bridgeagent-0.16.0/bridge_cli/pty_bridge.py +276 -0
- bridgeagent-0.16.0/bridge_cli/relaunch.py +206 -0
- bridgeagent-0.16.0/bridge_cli/runtime_provider.py +1694 -0
- bridgeagent-0.16.0/bridge_cli/scripts/install.ps1 +3231 -0
- bridgeagent-0.16.0/bridge_cli/scripts/install.sh +2913 -0
- bridgeagent-0.16.0/bridge_cli/secret_prompt.py +126 -0
- bridgeagent-0.16.0/bridge_cli/secrets_cli.py +600 -0
- bridgeagent-0.16.0/bridge_cli/security_advisories.py +453 -0
- bridgeagent-0.16.0/bridge_cli/security_audit.py +576 -0
- bridgeagent-0.16.0/bridge_cli/send_cmd.py +445 -0
- bridgeagent-0.16.0/bridge_cli/service_manager.py +937 -0
- bridgeagent-0.16.0/bridge_cli/session_recap.py +316 -0
- bridgeagent-0.16.0/bridge_cli/setup.py +3361 -0
- bridgeagent-0.16.0/bridge_cli/skills_config.py +199 -0
- bridgeagent-0.16.0/bridge_cli/skills_hub.py +1913 -0
- bridgeagent-0.16.0/bridge_cli/skin_engine.py +926 -0
- bridgeagent-0.16.0/bridge_cli/slack_cli.py +159 -0
- bridgeagent-0.16.0/bridge_cli/status.py +586 -0
- bridgeagent-0.16.0/bridge_cli/stdio.py +256 -0
- bridgeagent-0.16.0/bridge_cli/telegram_managed_bot.py +358 -0
- bridgeagent-0.16.0/bridge_cli/timeouts.py +82 -0
- bridgeagent-0.16.0/bridge_cli/tips.py +486 -0
- bridgeagent-0.16.0/bridge_cli/tools_config.py +3933 -0
- bridgeagent-0.16.0/bridge_cli/tui_dist/entry.js +74917 -0
- bridgeagent-0.16.0/bridge_cli/uninstall.py +934 -0
- bridgeagent-0.16.0/bridge_cli/voice.py +846 -0
- bridgeagent-0.16.0/bridge_cli/web_dist/assets/Collapse-Bold-mgICk9-_.woff2 +0 -0
- bridgeagent-0.16.0/bridge_cli/web_dist/assets/Collapse-Regular-DysayoTY.woff2 +0 -0
- bridgeagent-0.16.0/bridge_cli/web_dist/assets/Mondwest-Regular-CWscgue7.woff2 +0 -0
- bridgeagent-0.16.0/bridge_cli/web_dist/assets/RulesCompressed-Medium-CA76_CrB.woff2 +0 -0
- bridgeagent-0.16.0/bridge_cli/web_dist/assets/RulesCompressed-Regular-BSXFyF4x.woff2 +0 -0
- bridgeagent-0.16.0/bridge_cli/web_dist/assets/RulesExpanded-Bold-DZA7s8Pa.woff2 +0 -0
- bridgeagent-0.16.0/bridge_cli/web_dist/assets/RulesExpanded-Regular-l8uVympt.woff2 +0 -0
- bridgeagent-0.16.0/bridge_cli/web_dist/assets/filler-bg0-DxMaWJpb.webp +0 -0
- bridgeagent-0.16.0/bridge_cli/web_dist/assets/index-DHRxol4O.js +170 -0
- bridgeagent-0.16.0/bridge_cli/web_dist/assets/index-Drzx8NO1.css +1 -0
- bridgeagent-0.16.0/bridge_cli/web_dist/favicon.ico +0 -0
- bridgeagent-0.16.0/bridge_cli/web_dist/fonts/Collapse-Bold.woff2 +0 -0
- bridgeagent-0.16.0/bridge_cli/web_dist/fonts/Collapse-Regular.woff2 +0 -0
- bridgeagent-0.16.0/bridge_cli/web_dist/fonts/Mondwest-Regular.woff2 +0 -0
- bridgeagent-0.16.0/bridge_cli/web_dist/fonts/RulesCompressed-Medium.woff2 +0 -0
- bridgeagent-0.16.0/bridge_cli/web_dist/fonts/RulesCompressed-Regular.woff2 +0 -0
- bridgeagent-0.16.0/bridge_cli/web_dist/fonts/RulesExpanded-Bold.woff2 +0 -0
- bridgeagent-0.16.0/bridge_cli/web_dist/fonts/RulesExpanded-Regular.woff2 +0 -0
- bridgeagent-0.16.0/bridge_cli/web_dist/fonts-terminal/JetBrainsMono-Bold.woff2 +0 -0
- bridgeagent-0.16.0/bridge_cli/web_dist/fonts-terminal/JetBrainsMono-Italic.woff2 +0 -0
- bridgeagent-0.16.0/bridge_cli/web_dist/fonts-terminal/JetBrainsMono-Regular.woff2 +0 -0
- bridgeagent-0.16.0/bridge_cli/web_dist/index.html +17 -0
- bridgeagent-0.16.0/bridge_cli/web_server.py +10028 -0
- bridgeagent-0.16.0/bridge_cli/webhook.py +298 -0
- bridgeagent-0.16.0/bridge_cli/xai_retirement.py +253 -0
- bridgeagent-0.16.0/bridge_constants.py +482 -0
- bridgeagent-0.16.0/bridge_logging.py +536 -0
- bridgeagent-0.16.0/bridge_state.py +4491 -0
- bridgeagent-0.16.0/bridge_time.py +104 -0
- bridgeagent-0.16.0/bridgeagent.egg-info/PKG-INFO +374 -0
- bridgeagent-0.16.0/bridgeagent.egg-info/SOURCES.txt +944 -0
- bridgeagent-0.16.0/bridgeagent.egg-info/dependency_links.txt +1 -0
- bridgeagent-0.16.0/bridgeagent.egg-info/entry_points.txt +7 -0
- bridgeagent-0.16.0/bridgeagent.egg-info/requires.txt +187 -0
- bridgeagent-0.16.0/bridgeagent.egg-info/top_level.txt +23 -0
- bridgeagent-0.16.0/cli.py +16290 -0
- bridgeagent-0.16.0/cron/__init__.py +42 -0
- bridgeagent-0.16.0/cron/jobs.py +1306 -0
- bridgeagent-0.16.0/cron/scheduler.py +2339 -0
- bridgeagent-0.16.0/gateway/__init__.py +35 -0
- bridgeagent-0.16.0/gateway/assets/telegram-botfather-threads-settings.jpg +0 -0
- bridgeagent-0.16.0/gateway/builtin_hooks/__init__.py +1 -0
- bridgeagent-0.16.0/gateway/channel_directory.py +357 -0
- bridgeagent-0.16.0/gateway/config.py +2004 -0
- bridgeagent-0.16.0/gateway/delivery.py +433 -0
- bridgeagent-0.16.0/gateway/display_config.py +240 -0
- bridgeagent-0.16.0/gateway/hooks.py +210 -0
- bridgeagent-0.16.0/gateway/memory_monitor.py +230 -0
- bridgeagent-0.16.0/gateway/mirror.py +168 -0
- bridgeagent-0.16.0/gateway/pairing.py +450 -0
- bridgeagent-0.16.0/gateway/platform_registry.py +260 -0
- bridgeagent-0.16.0/gateway/platforms/__init__.py +45 -0
- bridgeagent-0.16.0/gateway/platforms/_http_client_limits.py +84 -0
- bridgeagent-0.16.0/gateway/platforms/api_server.py +4359 -0
- bridgeagent-0.16.0/gateway/platforms/base.py +4818 -0
- bridgeagent-0.16.0/gateway/platforms/bluebubbles.py +1038 -0
- bridgeagent-0.16.0/gateway/platforms/dingtalk.py +1503 -0
- bridgeagent-0.16.0/gateway/platforms/email.py +773 -0
- bridgeagent-0.16.0/gateway/platforms/feishu.py +5163 -0
- bridgeagent-0.16.0/gateway/platforms/feishu_comment.py +1382 -0
- bridgeagent-0.16.0/gateway/platforms/feishu_comment_rules.py +429 -0
- bridgeagent-0.16.0/gateway/platforms/feishu_meeting_invite.py +212 -0
- bridgeagent-0.16.0/gateway/platforms/helpers.py +278 -0
- bridgeagent-0.16.0/gateway/platforms/matrix.py +2983 -0
- bridgeagent-0.16.0/gateway/platforms/msgraph_webhook.py +421 -0
- bridgeagent-0.16.0/gateway/platforms/qqbot/__init__.py +91 -0
- bridgeagent-0.16.0/gateway/platforms/qqbot/adapter.py +3196 -0
- bridgeagent-0.16.0/gateway/platforms/qqbot/chunked_upload.py +602 -0
- bridgeagent-0.16.0/gateway/platforms/qqbot/constants.py +74 -0
- bridgeagent-0.16.0/gateway/platforms/qqbot/crypto.py +45 -0
- bridgeagent-0.16.0/gateway/platforms/qqbot/keyboards.py +473 -0
- bridgeagent-0.16.0/gateway/platforms/qqbot/onboard.py +220 -0
- bridgeagent-0.16.0/gateway/platforms/qqbot/utils.py +74 -0
- bridgeagent-0.16.0/gateway/platforms/signal.py +1543 -0
- bridgeagent-0.16.0/gateway/platforms/signal_rate_limit.py +369 -0
- bridgeagent-0.16.0/gateway/platforms/slack.py +3519 -0
- bridgeagent-0.16.0/gateway/platforms/sms.py +379 -0
- bridgeagent-0.16.0/gateway/platforms/telegram.py +6081 -0
- bridgeagent-0.16.0/gateway/platforms/telegram_network.py +259 -0
- bridgeagent-0.16.0/gateway/platforms/webhook.py +934 -0
- bridgeagent-0.16.0/gateway/platforms/wecom.py +1635 -0
- bridgeagent-0.16.0/gateway/platforms/wecom_callback.py +425 -0
- bridgeagent-0.16.0/gateway/platforms/wecom_crypto.py +142 -0
- bridgeagent-0.16.0/gateway/platforms/weixin.py +2247 -0
- bridgeagent-0.16.0/gateway/platforms/whatsapp.py +1387 -0
- bridgeagent-0.16.0/gateway/platforms/yuanbao.py +4941 -0
- bridgeagent-0.16.0/gateway/platforms/yuanbao_media.py +645 -0
- bridgeagent-0.16.0/gateway/platforms/yuanbao_proto.py +1209 -0
- bridgeagent-0.16.0/gateway/platforms/yuanbao_sticker.py +558 -0
- bridgeagent-0.16.0/gateway/restart.py +20 -0
- bridgeagent-0.16.0/gateway/run.py +20137 -0
- bridgeagent-0.16.0/gateway/runtime_footer.py +149 -0
- bridgeagent-0.16.0/gateway/session.py +1400 -0
- bridgeagent-0.16.0/gateway/session_context.py +194 -0
- bridgeagent-0.16.0/gateway/shutdown_forensics.py +462 -0
- bridgeagent-0.16.0/gateway/slash_access.py +229 -0
- bridgeagent-0.16.0/gateway/status.py +1115 -0
- bridgeagent-0.16.0/gateway/sticker_cache.py +124 -0
- bridgeagent-0.16.0/gateway/stream_consumer.py +1358 -0
- bridgeagent-0.16.0/gateway/stream_dispatch.py +132 -0
- bridgeagent-0.16.0/gateway/stream_events.py +171 -0
- bridgeagent-0.16.0/gateway/whatsapp_identity.py +155 -0
- bridgeagent-0.16.0/locales/af.yaml +357 -0
- bridgeagent-0.16.0/locales/de.yaml +357 -0
- bridgeagent-0.16.0/locales/en.yaml +372 -0
- bridgeagent-0.16.0/locales/es.yaml +357 -0
- bridgeagent-0.16.0/locales/fr.yaml +357 -0
- bridgeagent-0.16.0/locales/ga.yaml +361 -0
- bridgeagent-0.16.0/locales/hu.yaml +357 -0
- bridgeagent-0.16.0/locales/it.yaml +357 -0
- bridgeagent-0.16.0/locales/ja.yaml +357 -0
- bridgeagent-0.16.0/locales/ko.yaml +357 -0
- bridgeagent-0.16.0/locales/pt.yaml +357 -0
- bridgeagent-0.16.0/locales/ru.yaml +357 -0
- bridgeagent-0.16.0/locales/tr.yaml +357 -0
- bridgeagent-0.16.0/locales/uk.yaml +357 -0
- bridgeagent-0.16.0/locales/zh-hant.yaml +357 -0
- bridgeagent-0.16.0/locales/zh.yaml +357 -0
- bridgeagent-0.16.0/mcp_serve.py +897 -0
- bridgeagent-0.16.0/model_tools.py +1217 -0
- bridgeagent-0.16.0/optional-skills/DESCRIPTION.md +24 -0
- bridgeagent-0.16.0/optional-skills/autonomous-ai-agents/DESCRIPTION.md +2 -0
- bridgeagent-0.16.0/optional-skills/autonomous-ai-agents/antigravity-cli/SKILL.md +180 -0
- bridgeagent-0.16.0/optional-skills/autonomous-ai-agents/antigravity-cli/references/cli-docs.md +64 -0
- bridgeagent-0.16.0/optional-skills/autonomous-ai-agents/blackbox/SKILL.md +147 -0
- bridgeagent-0.16.0/optional-skills/autonomous-ai-agents/claude-code/SKILL.md +748 -0
- bridgeagent-0.16.0/optional-skills/autonomous-ai-agents/codex/SKILL.md +133 -0
- bridgeagent-0.16.0/optional-skills/autonomous-ai-agents/grok/SKILL.md +304 -0
- bridgeagent-0.16.0/optional-skills/autonomous-ai-agents/honcho/SKILL.md +435 -0
- bridgeagent-0.16.0/optional-skills/autonomous-ai-agents/opencode/SKILL.md +222 -0
- bridgeagent-0.16.0/optional-skills/autonomous-ai-agents/openhands/SKILL.md +152 -0
- bridgeagent-0.16.0/optional-skills/devops/bridgeagent-s6-container-supervision/SKILL.md +178 -0
- bridgeagent-0.16.0/optional-skills/devops/docker-management/SKILL.md +285 -0
- bridgeagent-0.16.0/optional-skills/devops/pinggy-tunnel/SKILL.md +312 -0
- bridgeagent-0.16.0/optional-skills/devops/watchers/SKILL.md +116 -0
- bridgeagent-0.16.0/optional-skills/devops/watchers/scripts/_watermark.py +148 -0
- bridgeagent-0.16.0/optional-skills/devops/watchers/scripts/watch_github.py +168 -0
- bridgeagent-0.16.0/optional-skills/devops/watchers/scripts/watch_http_json.py +131 -0
- bridgeagent-0.16.0/optional-skills/devops/watchers/scripts/watch_rss.py +121 -0
- bridgeagent-0.16.0/optional-skills/dogfood/DESCRIPTION.md +3 -0
- bridgeagent-0.16.0/optional-skills/dogfood/adversarial-ux-test/SKILL.md +194 -0
- bridgeagent-0.16.0/optional-skills/mcp/DESCRIPTION.md +3 -0
- bridgeagent-0.16.0/optional-skills/mcp/fastmcp/SKILL.md +304 -0
- bridgeagent-0.16.0/optional-skills/mcp/fastmcp/references/fastmcp-cli.md +110 -0
- bridgeagent-0.16.0/optional-skills/mcp/fastmcp/scripts/scaffold_fastmcp.py +56 -0
- bridgeagent-0.16.0/optional-skills/mcp/fastmcp/templates/api_wrapper.py +54 -0
- bridgeagent-0.16.0/optional-skills/mcp/fastmcp/templates/database_server.py +77 -0
- bridgeagent-0.16.0/optional-skills/mcp/fastmcp/templates/file_processor.py +55 -0
- bridgeagent-0.16.0/optional-skills/mcp/mcporter/SKILL.md +126 -0
- bridgeagent-0.16.0/optional-skills/migration/DESCRIPTION.md +2 -0
- bridgeagent-0.16.0/optional-skills/migration/openclaw-migration/SKILL.md +301 -0
- bridgeagent-0.16.0/optional-skills/migration/openclaw-migration/scripts/openclaw_to_hermes.py +3136 -0
- bridgeagent-0.16.0/optional-skills/productivity/telephony/SKILL.md +418 -0
- bridgeagent-0.16.0/optional-skills/productivity/telephony/scripts/telephony.py +1343 -0
- bridgeagent-0.16.0/optional-skills/research/darwinian-evolver/SKILL.md +202 -0
- bridgeagent-0.16.0/optional-skills/research/darwinian-evolver/scripts/parrot_openrouter.py +218 -0
- bridgeagent-0.16.0/optional-skills/research/darwinian-evolver/scripts/show_snapshot.py +92 -0
- bridgeagent-0.16.0/optional-skills/research/darwinian-evolver/templates/custom_problem_template.py +240 -0
- bridgeagent-0.16.0/optional-skills/research/duckduckgo-search/SKILL.md +242 -0
- bridgeagent-0.16.0/optional-skills/research/duckduckgo-search/scripts/duckduckgo.sh +28 -0
- bridgeagent-0.16.0/optional-skills/research/gitnexus-explorer/SKILL.md +217 -0
- bridgeagent-0.16.0/optional-skills/research/gitnexus-explorer/scripts/proxy.mjs +92 -0
- bridgeagent-0.16.0/optional-skills/research/parallel-cli/SKILL.md +394 -0
- bridgeagent-0.16.0/optional-skills/research/qmd/SKILL.md +444 -0
- bridgeagent-0.16.0/optional-skills/research/scrapling/SKILL.md +340 -0
- bridgeagent-0.16.0/optional-skills/research/searxng-search/SKILL.md +216 -0
- bridgeagent-0.16.0/optional-skills/research/searxng-search/scripts/searxng.sh +22 -0
- bridgeagent-0.16.0/optional-skills/security/1password/SKILL.md +166 -0
- bridgeagent-0.16.0/optional-skills/security/1password/references/cli-examples.md +31 -0
- bridgeagent-0.16.0/optional-skills/security/1password/references/get-started.md +21 -0
- bridgeagent-0.16.0/optional-skills/security/DESCRIPTION.md +3 -0
- bridgeagent-0.16.0/optional-skills/security/oss-forensics/SKILL.md +423 -0
- bridgeagent-0.16.0/optional-skills/security/oss-forensics/references/evidence-types.md +89 -0
- bridgeagent-0.16.0/optional-skills/security/oss-forensics/references/github-archive-guide.md +184 -0
- bridgeagent-0.16.0/optional-skills/security/oss-forensics/references/investigation-templates.md +131 -0
- bridgeagent-0.16.0/optional-skills/security/oss-forensics/references/recovery-techniques.md +164 -0
- bridgeagent-0.16.0/optional-skills/security/oss-forensics/scripts/evidence-store.py +313 -0
- bridgeagent-0.16.0/optional-skills/security/oss-forensics/templates/forensic-report.md +151 -0
- bridgeagent-0.16.0/optional-skills/security/oss-forensics/templates/malicious-package-report.md +43 -0
- bridgeagent-0.16.0/optional-skills/software-development/code-wiki/SKILL.md +448 -0
- bridgeagent-0.16.0/optional-skills/software-development/code-wiki/templates/README.md +31 -0
- bridgeagent-0.16.0/optional-skills/software-development/code-wiki/templates/architecture.md +30 -0
- bridgeagent-0.16.0/optional-skills/software-development/code-wiki/templates/getting-started.md +47 -0
- bridgeagent-0.16.0/optional-skills/software-development/code-wiki/templates/module.md +38 -0
- bridgeagent-0.16.0/optional-skills/software-development/rest-graphql-debug/SKILL.md +518 -0
- bridgeagent-0.16.0/optional-skills/software-development/subagent-driven-development/SKILL.md +355 -0
- bridgeagent-0.16.0/optional-skills/software-development/subagent-driven-development/references/context-budget-discipline.md +53 -0
- bridgeagent-0.16.0/optional-skills/software-development/subagent-driven-development/references/gates-taxonomy.md +93 -0
- bridgeagent-0.16.0/optional-skills/web-development/DESCRIPTION.md +5 -0
- bridgeagent-0.16.0/optional-skills/web-development/page-agent/SKILL.md +193 -0
- bridgeagent-0.16.0/plugins/__init__.py +1 -0
- bridgeagent-0.16.0/plugins/browser/browser_use/__init__.py +14 -0
- bridgeagent-0.16.0/plugins/browser/browser_use/plugin.yaml +7 -0
- bridgeagent-0.16.0/plugins/browser/browser_use/provider.py +317 -0
- bridgeagent-0.16.0/plugins/browser/browserbase/__init__.py +15 -0
- bridgeagent-0.16.0/plugins/browser/browserbase/plugin.yaml +7 -0
- bridgeagent-0.16.0/plugins/browser/browserbase/provider.py +297 -0
- bridgeagent-0.16.0/plugins/browser/firecrawl/__init__.py +16 -0
- bridgeagent-0.16.0/plugins/browser/firecrawl/plugin.yaml +7 -0
- bridgeagent-0.16.0/plugins/browser/firecrawl/provider.py +168 -0
- bridgeagent-0.16.0/plugins/context_engine/__init__.py +285 -0
- bridgeagent-0.16.0/plugins/dashboard_auth/basic/__init__.py +491 -0
- bridgeagent-0.16.0/plugins/dashboard_auth/basic/plugin.yaml +7 -0
- bridgeagent-0.16.0/plugins/dashboard_auth/nous/__init__.py +667 -0
- bridgeagent-0.16.0/plugins/dashboard_auth/nous/plugin.yaml +7 -0
- bridgeagent-0.16.0/plugins/dashboard_auth/self_hosted/__init__.py +736 -0
- bridgeagent-0.16.0/plugins/dashboard_auth/self_hosted/plugin.yaml +8 -0
- bridgeagent-0.16.0/plugins/disk-cleanup/README.md +51 -0
- bridgeagent-0.16.0/plugins/disk-cleanup/__init__.py +316 -0
- bridgeagent-0.16.0/plugins/disk-cleanup/disk_cleanup.py +560 -0
- bridgeagent-0.16.0/plugins/disk-cleanup/plugin.yaml +7 -0
- bridgeagent-0.16.0/plugins/google_meet/README.md +131 -0
- bridgeagent-0.16.0/plugins/google_meet/__init__.py +103 -0
- bridgeagent-0.16.0/plugins/google_meet/audio_bridge.py +244 -0
- bridgeagent-0.16.0/plugins/google_meet/cli.py +477 -0
- bridgeagent-0.16.0/plugins/google_meet/meet_bot.py +852 -0
- bridgeagent-0.16.0/plugins/google_meet/node/__init__.py +54 -0
- bridgeagent-0.16.0/plugins/google_meet/node/cli.py +125 -0
- bridgeagent-0.16.0/plugins/google_meet/node/client.py +107 -0
- bridgeagent-0.16.0/plugins/google_meet/node/protocol.py +124 -0
- bridgeagent-0.16.0/plugins/google_meet/node/registry.py +112 -0
- bridgeagent-0.16.0/plugins/google_meet/node/server.py +200 -0
- bridgeagent-0.16.0/plugins/google_meet/plugin.yaml +16 -0
- bridgeagent-0.16.0/plugins/google_meet/process_manager.py +323 -0
- bridgeagent-0.16.0/plugins/google_meet/realtime/__init__.py +10 -0
- bridgeagent-0.16.0/plugins/google_meet/realtime/openai_client.py +332 -0
- bridgeagent-0.16.0/plugins/google_meet/tools.py +348 -0
- bridgeagent-0.16.0/plugins/hermes-achievements/README.md +150 -0
- bridgeagent-0.16.0/plugins/hermes-achievements/dashboard/dist/index.js +726 -0
- bridgeagent-0.16.0/plugins/hermes-achievements/dashboard/dist/style.css +146 -0
- bridgeagent-0.16.0/plugins/hermes-achievements/dashboard/manifest.json +11 -0
- bridgeagent-0.16.0/plugins/hermes-achievements/dashboard/plugin_api.py +1061 -0
- bridgeagent-0.16.0/plugins/hermes-achievements/tests/test_achievement_engine.py +156 -0
- bridgeagent-0.16.0/plugins/image_gen/fal/__init__.py +182 -0
- bridgeagent-0.16.0/plugins/image_gen/fal/plugin.yaml +7 -0
- bridgeagent-0.16.0/plugins/image_gen/krea/__init__.py +548 -0
- bridgeagent-0.16.0/plugins/image_gen/krea/plugin.yaml +7 -0
- bridgeagent-0.16.0/plugins/image_gen/openai/__init__.py +316 -0
- bridgeagent-0.16.0/plugins/image_gen/openai/plugin.yaml +7 -0
- bridgeagent-0.16.0/plugins/image_gen/openai-codex/__init__.py +442 -0
- bridgeagent-0.16.0/plugins/image_gen/openai-codex/plugin.yaml +5 -0
- bridgeagent-0.16.0/plugins/image_gen/xai/__init__.py +334 -0
- bridgeagent-0.16.0/plugins/image_gen/xai/plugin.yaml +7 -0
- bridgeagent-0.16.0/plugins/kanban/dashboard/dist/index.js +3875 -0
- bridgeagent-0.16.0/plugins/kanban/dashboard/dist/style.css +1583 -0
- bridgeagent-0.16.0/plugins/kanban/dashboard/manifest.json +14 -0
- bridgeagent-0.16.0/plugins/kanban/dashboard/plugin_api.py +2454 -0
- bridgeagent-0.16.0/plugins/memory/__init__.py +450 -0
- bridgeagent-0.16.0/plugins/memory/byterover/README.md +41 -0
- bridgeagent-0.16.0/plugins/memory/byterover/__init__.py +383 -0
- bridgeagent-0.16.0/plugins/memory/byterover/plugin.yaml +9 -0
- bridgeagent-0.16.0/plugins/memory/hindsight/README.md +147 -0
- bridgeagent-0.16.0/plugins/memory/hindsight/__init__.py +1777 -0
- bridgeagent-0.16.0/plugins/memory/hindsight/plugin.yaml +8 -0
- bridgeagent-0.16.0/plugins/memory/holographic/README.md +36 -0
- bridgeagent-0.16.0/plugins/memory/holographic/__init__.py +408 -0
- bridgeagent-0.16.0/plugins/memory/holographic/holographic.py +203 -0
- bridgeagent-0.16.0/plugins/memory/holographic/plugin.yaml +5 -0
- bridgeagent-0.16.0/plugins/memory/holographic/retrieval.py +593 -0
- bridgeagent-0.16.0/plugins/memory/holographic/store.py +578 -0
- bridgeagent-0.16.0/plugins/memory/honcho/README.md +368 -0
- bridgeagent-0.16.0/plugins/memory/honcho/__init__.py +1419 -0
- bridgeagent-0.16.0/plugins/memory/honcho/cli.py +1685 -0
- bridgeagent-0.16.0/plugins/memory/honcho/client.py +872 -0
- bridgeagent-0.16.0/plugins/memory/honcho/plugin.yaml +7 -0
- bridgeagent-0.16.0/plugins/memory/honcho/session.py +1341 -0
- bridgeagent-0.16.0/plugins/memory/mem0/README.md +38 -0
- bridgeagent-0.16.0/plugins/memory/mem0/__init__.py +374 -0
- bridgeagent-0.16.0/plugins/memory/mem0/plugin.yaml +5 -0
- bridgeagent-0.16.0/plugins/memory/openviking/README.md +40 -0
- bridgeagent-0.16.0/plugins/memory/openviking/__init__.py +978 -0
- bridgeagent-0.16.0/plugins/memory/openviking/plugin.yaml +9 -0
- bridgeagent-0.16.0/plugins/memory/retaindb/README.md +40 -0
- bridgeagent-0.16.0/plugins/memory/retaindb/__init__.py +766 -0
- bridgeagent-0.16.0/plugins/memory/retaindb/plugin.yaml +7 -0
- bridgeagent-0.16.0/plugins/memory/supermemory/README.md +111 -0
- bridgeagent-0.16.0/plugins/memory/supermemory/__init__.py +897 -0
- bridgeagent-0.16.0/plugins/memory/supermemory/plugin.yaml +5 -0
- bridgeagent-0.16.0/plugins/model-providers/README.md +70 -0
- bridgeagent-0.16.0/plugins/model-providers/alibaba/__init__.py +13 -0
- bridgeagent-0.16.0/plugins/model-providers/alibaba/plugin.yaml +5 -0
- bridgeagent-0.16.0/plugins/model-providers/alibaba-coding-plan/__init__.py +21 -0
- bridgeagent-0.16.0/plugins/model-providers/alibaba-coding-plan/plugin.yaml +5 -0
- bridgeagent-0.16.0/plugins/model-providers/anthropic/__init__.py +52 -0
- bridgeagent-0.16.0/plugins/model-providers/anthropic/plugin.yaml +5 -0
- bridgeagent-0.16.0/plugins/model-providers/arcee/__init__.py +13 -0
- bridgeagent-0.16.0/plugins/model-providers/arcee/plugin.yaml +5 -0
- bridgeagent-0.16.0/plugins/model-providers/azure-foundry/__init__.py +21 -0
- bridgeagent-0.16.0/plugins/model-providers/azure-foundry/plugin.yaml +5 -0
- bridgeagent-0.16.0/plugins/model-providers/bedrock/__init__.py +29 -0
- bridgeagent-0.16.0/plugins/model-providers/bedrock/plugin.yaml +5 -0
- bridgeagent-0.16.0/plugins/model-providers/copilot/__init__.py +58 -0
- bridgeagent-0.16.0/plugins/model-providers/copilot/plugin.yaml +5 -0
- bridgeagent-0.16.0/plugins/model-providers/copilot-acp/__init__.py +34 -0
- bridgeagent-0.16.0/plugins/model-providers/copilot-acp/plugin.yaml +5 -0
- bridgeagent-0.16.0/plugins/model-providers/custom/__init__.py +68 -0
- bridgeagent-0.16.0/plugins/model-providers/custom/plugin.yaml +5 -0
- bridgeagent-0.16.0/plugins/model-providers/deepseek/__init__.py +100 -0
- bridgeagent-0.16.0/plugins/model-providers/deepseek/plugin.yaml +5 -0
- bridgeagent-0.16.0/plugins/model-providers/gemini/__init__.py +72 -0
- bridgeagent-0.16.0/plugins/model-providers/gemini/plugin.yaml +5 -0
- bridgeagent-0.16.0/plugins/model-providers/gmi/__init__.py +31 -0
- bridgeagent-0.16.0/plugins/model-providers/gmi/plugin.yaml +5 -0
- bridgeagent-0.16.0/plugins/model-providers/huggingface/__init__.py +20 -0
- bridgeagent-0.16.0/plugins/model-providers/huggingface/plugin.yaml +5 -0
- bridgeagent-0.16.0/plugins/model-providers/kilocode/__init__.py +14 -0
- bridgeagent-0.16.0/plugins/model-providers/kilocode/plugin.yaml +5 -0
- bridgeagent-0.16.0/plugins/model-providers/kimi-coding/__init__.py +80 -0
- bridgeagent-0.16.0/plugins/model-providers/kimi-coding/plugin.yaml +5 -0
- bridgeagent-0.16.0/plugins/model-providers/minimax/__init__.py +45 -0
- bridgeagent-0.16.0/plugins/model-providers/minimax/plugin.yaml +5 -0
- bridgeagent-0.16.0/plugins/model-providers/nous/__init__.py +54 -0
- bridgeagent-0.16.0/plugins/model-providers/nous/plugin.yaml +5 -0
- bridgeagent-0.16.0/plugins/model-providers/novita/__init__.py +27 -0
- bridgeagent-0.16.0/plugins/model-providers/novita/plugin.yaml +5 -0
- bridgeagent-0.16.0/plugins/model-providers/nvidia/__init__.py +21 -0
- bridgeagent-0.16.0/plugins/model-providers/nvidia/plugin.yaml +5 -0
- bridgeagent-0.16.0/plugins/model-providers/ollama-cloud/__init__.py +14 -0
- bridgeagent-0.16.0/plugins/model-providers/ollama-cloud/plugin.yaml +5 -0
- bridgeagent-0.16.0/plugins/model-providers/openai-codex/__init__.py +15 -0
- bridgeagent-0.16.0/plugins/model-providers/openai-codex/plugin.yaml +5 -0
- bridgeagent-0.16.0/plugins/model-providers/opencode-zen/__init__.py +126 -0
- bridgeagent-0.16.0/plugins/model-providers/opencode-zen/plugin.yaml +5 -0
- bridgeagent-0.16.0/plugins/model-providers/openrouter/__init__.py +117 -0
- bridgeagent-0.16.0/plugins/model-providers/openrouter/plugin.yaml +5 -0
- bridgeagent-0.16.0/plugins/model-providers/qwen-oauth/__init__.py +82 -0
- bridgeagent-0.16.0/plugins/model-providers/qwen-oauth/plugin.yaml +5 -0
- bridgeagent-0.16.0/plugins/model-providers/stepfun/__init__.py +14 -0
- bridgeagent-0.16.0/plugins/model-providers/stepfun/plugin.yaml +5 -0
- bridgeagent-0.16.0/plugins/model-providers/xai/__init__.py +15 -0
- bridgeagent-0.16.0/plugins/model-providers/xai/plugin.yaml +5 -0
- bridgeagent-0.16.0/plugins/model-providers/xiaomi/__init__.py +15 -0
- bridgeagent-0.16.0/plugins/model-providers/xiaomi/plugin.yaml +5 -0
- bridgeagent-0.16.0/plugins/model-providers/zai/__init__.py +21 -0
- bridgeagent-0.16.0/plugins/model-providers/zai/plugin.yaml +5 -0
- bridgeagent-0.16.0/plugins/observability/langfuse/README.md +53 -0
- bridgeagent-0.16.0/plugins/observability/langfuse/__init__.py +1004 -0
- bridgeagent-0.16.0/plugins/observability/langfuse/plugin.yaml +14 -0
- bridgeagent-0.16.0/plugins/observability/nemo_relay/README.md +553 -0
- bridgeagent-0.16.0/plugins/observability/nemo_relay/__init__.py +836 -0
- bridgeagent-0.16.0/plugins/observability/nemo_relay/plugin.yaml +20 -0
- bridgeagent-0.16.0/plugins/platforms/discord/__init__.py +3 -0
- bridgeagent-0.16.0/plugins/platforms/discord/adapter.py +6520 -0
- bridgeagent-0.16.0/plugins/platforms/discord/plugin.yaml +34 -0
- bridgeagent-0.16.0/plugins/platforms/discord/voice_mixer.py +378 -0
- bridgeagent-0.16.0/plugins/platforms/google_chat/__init__.py +3 -0
- bridgeagent-0.16.0/plugins/platforms/google_chat/adapter.py +3342 -0
- bridgeagent-0.16.0/plugins/platforms/google_chat/oauth.py +667 -0
- bridgeagent-0.16.0/plugins/platforms/google_chat/plugin.yaml +39 -0
- bridgeagent-0.16.0/plugins/platforms/homeassistant/__init__.py +3 -0
- bridgeagent-0.16.0/plugins/platforms/homeassistant/adapter.py +577 -0
- bridgeagent-0.16.0/plugins/platforms/homeassistant/plugin.yaml +22 -0
- bridgeagent-0.16.0/plugins/platforms/irc/__init__.py +3 -0
- bridgeagent-0.16.0/plugins/platforms/irc/adapter.py +968 -0
- bridgeagent-0.16.0/plugins/platforms/irc/plugin.yaml +54 -0
- bridgeagent-0.16.0/plugins/platforms/line/__init__.py +3 -0
- bridgeagent-0.16.0/plugins/platforms/line/adapter.py +1652 -0
- bridgeagent-0.16.0/plugins/platforms/line/plugin.yaml +65 -0
- bridgeagent-0.16.0/plugins/platforms/mattermost/__init__.py +3 -0
- bridgeagent-0.16.0/plugins/platforms/mattermost/adapter.py +1192 -0
- bridgeagent-0.16.0/plugins/platforms/mattermost/plugin.yaml +49 -0
- bridgeagent-0.16.0/plugins/platforms/ntfy/__init__.py +3 -0
- bridgeagent-0.16.0/plugins/platforms/ntfy/adapter.py +593 -0
- bridgeagent-0.16.0/plugins/platforms/ntfy/plugin.yaml +56 -0
- bridgeagent-0.16.0/plugins/platforms/simplex/__init__.py +3 -0
- bridgeagent-0.16.0/plugins/platforms/simplex/adapter.py +760 -0
- bridgeagent-0.16.0/plugins/platforms/simplex/plugin.yaml +37 -0
- bridgeagent-0.16.0/plugins/platforms/teams/__init__.py +3 -0
- bridgeagent-0.16.0/plugins/platforms/teams/adapter.py +1197 -0
- bridgeagent-0.16.0/plugins/platforms/teams/plugin.yaml +48 -0
- bridgeagent-0.16.0/plugins/security-guidance/README.md +88 -0
- bridgeagent-0.16.0/plugins/security-guidance/__init__.py +259 -0
- bridgeagent-0.16.0/plugins/security-guidance/patterns.py +368 -0
- bridgeagent-0.16.0/plugins/security-guidance/plugin.yaml +7 -0
- bridgeagent-0.16.0/plugins/spotify/__init__.py +66 -0
- bridgeagent-0.16.0/plugins/spotify/client.py +435 -0
- bridgeagent-0.16.0/plugins/spotify/plugin.yaml +13 -0
- bridgeagent-0.16.0/plugins/spotify/tools.py +454 -0
- bridgeagent-0.16.0/plugins/teams_pipeline/__init__.py +23 -0
- bridgeagent-0.16.0/plugins/teams_pipeline/cli.py +461 -0
- bridgeagent-0.16.0/plugins/teams_pipeline/meetings.py +333 -0
- bridgeagent-0.16.0/plugins/teams_pipeline/models.py +350 -0
- bridgeagent-0.16.0/plugins/teams_pipeline/pipeline.py +689 -0
- bridgeagent-0.16.0/plugins/teams_pipeline/plugin.yaml +9 -0
- bridgeagent-0.16.0/plugins/teams_pipeline/runtime.py +135 -0
- bridgeagent-0.16.0/plugins/teams_pipeline/store.py +193 -0
- bridgeagent-0.16.0/plugins/teams_pipeline/subscriptions.py +249 -0
- bridgeagent-0.16.0/plugins/video_gen/fal/__init__.py +613 -0
- bridgeagent-0.16.0/plugins/video_gen/fal/plugin.yaml +7 -0
- bridgeagent-0.16.0/plugins/video_gen/xai/__init__.py +504 -0
- bridgeagent-0.16.0/plugins/video_gen/xai/plugin.yaml +7 -0
- bridgeagent-0.16.0/plugins/web/__init__.py +7 -0
- bridgeagent-0.16.0/plugins/web/brave_free/__init__.py +14 -0
- bridgeagent-0.16.0/plugins/web/brave_free/plugin.yaml +7 -0
- bridgeagent-0.16.0/plugins/web/brave_free/provider.py +137 -0
- bridgeagent-0.16.0/plugins/web/ddgs/__init__.py +15 -0
- bridgeagent-0.16.0/plugins/web/ddgs/plugin.yaml +7 -0
- bridgeagent-0.16.0/plugins/web/ddgs/provider.py +104 -0
- bridgeagent-0.16.0/plugins/web/exa/__init__.py +15 -0
- bridgeagent-0.16.0/plugins/web/exa/plugin.yaml +7 -0
- bridgeagent-0.16.0/plugins/web/exa/provider.py +212 -0
- bridgeagent-0.16.0/plugins/web/firecrawl/__init__.py +28 -0
- bridgeagent-0.16.0/plugins/web/firecrawl/plugin.yaml +7 -0
- bridgeagent-0.16.0/plugins/web/firecrawl/provider.py +594 -0
- bridgeagent-0.16.0/plugins/web/parallel/__init__.py +16 -0
- bridgeagent-0.16.0/plugins/web/parallel/plugin.yaml +7 -0
- bridgeagent-0.16.0/plugins/web/parallel/provider.py +291 -0
- bridgeagent-0.16.0/plugins/web/searxng/__init__.py +15 -0
- bridgeagent-0.16.0/plugins/web/searxng/plugin.yaml +7 -0
- bridgeagent-0.16.0/plugins/web/searxng/provider.py +140 -0
- bridgeagent-0.16.0/plugins/web/tavily/__init__.py +10 -0
- bridgeagent-0.16.0/plugins/web/tavily/plugin.yaml +7 -0
- bridgeagent-0.16.0/plugins/web/tavily/provider.py +220 -0
- bridgeagent-0.16.0/plugins/web/xai/__init__.py +14 -0
- bridgeagent-0.16.0/plugins/web/xai/plugin.yaml +7 -0
- bridgeagent-0.16.0/plugins/web/xai/provider.py +557 -0
- bridgeagent-0.16.0/providers/__init__.py +191 -0
- bridgeagent-0.16.0/providers/base.py +208 -0
- bridgeagent-0.16.0/pyproject.toml +342 -0
- bridgeagent-0.16.0/run_agent.py +5307 -0
- bridgeagent-0.16.0/setup.cfg +4 -0
- bridgeagent-0.16.0/setup.py +28 -0
- bridgeagent-0.16.0/skills/apple/imessage/SKILL.md +104 -0
- bridgeagent-0.16.0/skills/autonomous-ai-agents/DESCRIPTION.md +3 -0
- bridgeagent-0.16.0/skills/autonomous-ai-agents/bridgeagent/SKILL.md +1032 -0
- bridgeagent-0.16.0/skills/autonomous-ai-agents/bridgeagent/references/native-mcp.md +344 -0
- bridgeagent-0.16.0/skills/autonomous-ai-agents/bridgeagent/references/webhooks.md +194 -0
- bridgeagent-0.16.0/skills/aws/DESCRIPTION.md +3 -0
- bridgeagent-0.16.0/skills/aws/aws-auth/SKILL.md +292 -0
- bridgeagent-0.16.0/skills/aws/aws-auth/scripts/aws-env.sh +72 -0
- bridgeagent-0.16.0/skills/aws/aws-cost-watch/SKILL.md +292 -0
- bridgeagent-0.16.0/skills/aws/aws-deploy/SKILL.md +306 -0
- bridgeagent-0.16.0/skills/aws/aws-security-audit/SKILL.md +353 -0
- bridgeagent-0.16.0/skills/azure/DESCRIPTION.md +3 -0
- bridgeagent-0.16.0/skills/azure/azure-auth/SKILL.md +248 -0
- bridgeagent-0.16.0/skills/azure/azure-auth/scripts/azure-env.sh +64 -0
- bridgeagent-0.16.0/skills/azure/azure-deploy/SKILL.md +264 -0
- bridgeagent-0.16.0/skills/azure/azure-operations/SKILL.md +349 -0
- bridgeagent-0.16.0/skills/cloudflare/DESCRIPTION.md +3 -0
- bridgeagent-0.16.0/skills/cloudflare/cloudflare-auth/SKILL.md +219 -0
- bridgeagent-0.16.0/skills/cloudflare/cloudflare-auth/scripts/cloudflare-env.sh +95 -0
- bridgeagent-0.16.0/skills/cloudflare/cloudflare-security-patrol/SKILL.md +498 -0
- bridgeagent-0.16.0/skills/cloudflare/cloudflare-workers-pages/SKILL.md +255 -0
- bridgeagent-0.16.0/skills/creative/DESCRIPTION.md +3 -0
- bridgeagent-0.16.0/skills/creative/architecture-diagram/SKILL.md +151 -0
- bridgeagent-0.16.0/skills/creative/architecture-diagram/templates/template.html +319 -0
- bridgeagent-0.16.0/skills/creative/humanizer/LICENSE +21 -0
- bridgeagent-0.16.0/skills/creative/humanizer/SKILL.md +583 -0
- bridgeagent-0.16.0/skills/creative/sketch/SKILL.md +221 -0
- bridgeagent-0.16.0/skills/data-science/DESCRIPTION.md +3 -0
- bridgeagent-0.16.0/skills/data-science/jupyter-live-kernel/SKILL.md +170 -0
- bridgeagent-0.16.0/skills/devops/kanban-board/SKILL.md +144 -0
- bridgeagent-0.16.0/skills/devops/kanban-orchestrator/SKILL.md +219 -0
- bridgeagent-0.16.0/skills/devops/kanban-worker/SKILL.md +198 -0
- bridgeagent-0.16.0/skills/dogfood/SKILL.md +167 -0
- bridgeagent-0.16.0/skills/dogfood/references/issue-taxonomy.md +109 -0
- bridgeagent-0.16.0/skills/dogfood/templates/dogfood-report-template.md +86 -0
- bridgeagent-0.16.0/skills/github/DESCRIPTION.md +3 -0
- bridgeagent-0.16.0/skills/github/codebase-inspection/SKILL.md +119 -0
- bridgeagent-0.16.0/skills/github/github-auth/SKILL.md +250 -0
- bridgeagent-0.16.0/skills/github/github-auth/scripts/gh-env.sh +66 -0
- bridgeagent-0.16.0/skills/github/github-code-review/SKILL.md +484 -0
- bridgeagent-0.16.0/skills/github/github-code-review/references/review-output-template.md +74 -0
- bridgeagent-0.16.0/skills/github/github-issues/SKILL.md +373 -0
- bridgeagent-0.16.0/skills/github/github-issues/templates/bug-report.md +35 -0
- bridgeagent-0.16.0/skills/github/github-issues/templates/feature-request.md +31 -0
- bridgeagent-0.16.0/skills/github/github-pr-workflow/SKILL.md +370 -0
- bridgeagent-0.16.0/skills/github/github-pr-workflow/references/ci-troubleshooting.md +183 -0
- bridgeagent-0.16.0/skills/github/github-pr-workflow/references/conventional-commits.md +71 -0
- bridgeagent-0.16.0/skills/github/github-pr-workflow/templates/pr-body-bugfix.md +35 -0
- bridgeagent-0.16.0/skills/github/github-pr-workflow/templates/pr-body-feature.md +33 -0
- bridgeagent-0.16.0/skills/github/github-repo-management/SKILL.md +519 -0
- bridgeagent-0.16.0/skills/github/github-repo-management/references/github-api-cheatsheet.md +161 -0
- bridgeagent-0.16.0/skills/googlecloud/DESCRIPTION.md +3 -0
- bridgeagent-0.16.0/skills/googlecloud/gcloud-auth/SKILL.md +242 -0
- bridgeagent-0.16.0/skills/googlecloud/gcloud-auth/scripts/gcloud-env.sh +65 -0
- bridgeagent-0.16.0/skills/googlecloud/gcloud-deploy/SKILL.md +240 -0
- bridgeagent-0.16.0/skills/googlecloud/gcloud-operations/SKILL.md +334 -0
- bridgeagent-0.16.0/skills/posthog/DESCRIPTION.md +3 -0
- bridgeagent-0.16.0/skills/posthog/posthog-auth/SKILL.md +199 -0
- bridgeagent-0.16.0/skills/posthog/posthog-auth/scripts/posthog-env.sh +69 -0
- bridgeagent-0.16.0/skills/posthog/posthog-feature-flags/SKILL.md +307 -0
- bridgeagent-0.16.0/skills/posthog/posthog-product-analytics/SKILL.md +338 -0
- bridgeagent-0.16.0/skills/semrush/DESCRIPTION.md +3 -0
- bridgeagent-0.16.0/skills/semrush/semrush-auth/SKILL.md +137 -0
- bridgeagent-0.16.0/skills/semrush/semrush-auth/scripts/semrush-env.sh +45 -0
- bridgeagent-0.16.0/skills/semrush/semrush-domain-analytics/SKILL.md +169 -0
- bridgeagent-0.16.0/skills/semrush/semrush-keyword-research/SKILL.md +127 -0
- bridgeagent-0.16.0/skills/sentry/DESCRIPTION.md +3 -0
- bridgeagent-0.16.0/skills/sentry/sentry-auth/SKILL.md +221 -0
- bridgeagent-0.16.0/skills/sentry/sentry-auth/scripts/sentry-env.sh +101 -0
- bridgeagent-0.16.0/skills/sentry/sentry-issues/SKILL.md +255 -0
- bridgeagent-0.16.0/skills/sentry/sentry-releases/SKILL.md +193 -0
- bridgeagent-0.16.0/skills/software-development/DESCRIPTION.md +3 -0
- bridgeagent-0.16.0/skills/software-development/bridgeagent-skill-authoring/SKILL.md +168 -0
- bridgeagent-0.16.0/skills/software-development/node-inspect-debugger/SKILL.md +322 -0
- bridgeagent-0.16.0/skills/software-development/plan/SKILL.md +341 -0
- bridgeagent-0.16.0/skills/software-development/python-debugpy/SKILL.md +378 -0
- bridgeagent-0.16.0/skills/software-development/requesting-code-review/SKILL.md +283 -0
- bridgeagent-0.16.0/skills/software-development/ship-and-verify/SKILL.md +231 -0
- bridgeagent-0.16.0/skills/software-development/simplify-code/SKILL.md +179 -0
- bridgeagent-0.16.0/skills/software-development/spike/SKILL.md +200 -0
- bridgeagent-0.16.0/skills/software-development/systematic-debugging/SKILL.md +370 -0
- bridgeagent-0.16.0/skills/software-development/test-driven-development/SKILL.md +346 -0
- bridgeagent-0.16.0/skills/stripe/DESCRIPTION.md +3 -0
- bridgeagent-0.16.0/skills/stripe/stripe-auth/SKILL.md +109 -0
- bridgeagent-0.16.0/skills/stripe/stripe-auth/scripts/stripe-env.sh +75 -0
- bridgeagent-0.16.0/skills/stripe/stripe-billing/SKILL.md +99 -0
- bridgeagent-0.16.0/skills/stripe/stripe-payments/SKILL.md +103 -0
- bridgeagent-0.16.0/tests/test_account_usage.py +203 -0
- bridgeagent-0.16.0/tests/test_atomic_replace_symlinks.py +160 -0
- bridgeagent-0.16.0/tests/test_base_url_hostname.py +160 -0
- bridgeagent-0.16.0/tests/test_batch_runner_checkpoint.py +250 -0
- bridgeagent-0.16.0/tests/test_bitwarden_secrets.py +882 -0
- bridgeagent-0.16.0/tests/test_bridge_bootstrap.py +313 -0
- bridgeagent-0.16.0/tests/test_bridge_constants.py +300 -0
- bridgeagent-0.16.0/tests/test_bridge_home_profile_warning.py +116 -0
- bridgeagent-0.16.0/tests/test_bridge_logging.py +1071 -0
- bridgeagent-0.16.0/tests/test_bridge_state.py +4008 -0
- bridgeagent-0.16.0/tests/test_bridge_state_compression_locks.py +149 -0
- bridgeagent-0.16.0/tests/test_bridge_state_wal_fallback.py +369 -0
- bridgeagent-0.16.0/tests/test_cli_file_drop.py +194 -0
- bridgeagent-0.16.0/tests/test_cli_manual_compress.py +58 -0
- bridgeagent-0.16.0/tests/test_cli_skin_integration.py +143 -0
- bridgeagent-0.16.0/tests/test_ctx_halving_fix.py +362 -0
- bridgeagent-0.16.0/tests/test_desktop_mac_entitlements.py +76 -0
- bridgeagent-0.16.0/tests/test_docker_home_override_scripts.py +79 -0
- bridgeagent-0.16.0/tests/test_docker_stage2_browser_discovery.py +19 -0
- bridgeagent-0.16.0/tests/test_dockerfile_tini_compat_shim.py +49 -0
- bridgeagent-0.16.0/tests/test_empty_model_fallback.py +159 -0
- bridgeagent-0.16.0/tests/test_env_loader_secret_sources.py +175 -0
- bridgeagent-0.16.0/tests/test_evidence_store.py +184 -0
- bridgeagent-0.16.0/tests/test_gateway_streaming_nested_config.py +43 -0
- bridgeagent-0.16.0/tests/test_get_tool_definitions_cache_isolation.py +94 -0
- bridgeagent-0.16.0/tests/test_honcho_client_config.py +127 -0
- bridgeagent-0.16.0/tests/test_honcho_session_context.py +95 -0
- bridgeagent-0.16.0/tests/test_honcho_startup_fail_open.py +357 -0
- bridgeagent-0.16.0/tests/test_install_sh_browser_install.py +60 -0
- bridgeagent-0.16.0/tests/test_install_sh_pythonpath_sanitization.py +33 -0
- bridgeagent-0.16.0/tests/test_install_sh_root_fhs_uv_python_path.py +59 -0
- bridgeagent-0.16.0/tests/test_install_sh_setup_wizard_tty_probe.py +91 -0
- bridgeagent-0.16.0/tests/test_install_sh_symlink_stomp.py +130 -0
- bridgeagent-0.16.0/tests/test_install_sh_termux_network_prereqs.py +22 -0
- bridgeagent-0.16.0/tests/test_ipv4_preference.py +112 -0
- bridgeagent-0.16.0/tests/test_lazy_session_regressions.py +606 -0
- bridgeagent-0.16.0/tests/test_lint_config.py +114 -0
- bridgeagent-0.16.0/tests/test_live_system_guard_self_test.py +295 -0
- bridgeagent-0.16.0/tests/test_mcp_serve.py +1238 -0
- bridgeagent-0.16.0/tests/test_mini_swe_runner.py +60 -0
- bridgeagent-0.16.0/tests/test_minimax_model_validation.py +130 -0
- bridgeagent-0.16.0/tests/test_minimax_oauth.py +839 -0
- bridgeagent-0.16.0/tests/test_minisweagent_path.py +2 -0
- bridgeagent-0.16.0/tests/test_model_picker_scroll.py +117 -0
- bridgeagent-0.16.0/tests/test_model_tools.py +459 -0
- bridgeagent-0.16.0/tests/test_model_tools_async_bridge.py +447 -0
- bridgeagent-0.16.0/tests/test_ollama_num_ctx.py +134 -0
- bridgeagent-0.16.0/tests/test_output_cap_parsing.py +27 -0
- bridgeagent-0.16.0/tests/test_package_json_lazy_deps.py +85 -0
- bridgeagent-0.16.0/tests/test_packaging_metadata.py +228 -0
- bridgeagent-0.16.0/tests/test_plugin_skills.py +387 -0
- bridgeagent-0.16.0/tests/test_process_loop_event_loop_warning.py +130 -0
- bridgeagent-0.16.0/tests/test_project_metadata.py +156 -0
- bridgeagent-0.16.0/tests/test_retry_utils.py +117 -0
- bridgeagent-0.16.0/tests/test_run_tests_parallel.py +187 -0
- bridgeagent-0.16.0/tests/test_sanitize_tool_error.py +137 -0
- bridgeagent-0.16.0/tests/test_sql_injection.py +43 -0
- bridgeagent-0.16.0/tests/test_subprocess_home_isolation.py +280 -0
- bridgeagent-0.16.0/tests/test_termux_all_extra_compat.py +23 -0
- bridgeagent-0.16.0/tests/test_timezone.py +385 -0
- bridgeagent-0.16.0/tests/test_toolset_distributions.py +102 -0
- bridgeagent-0.16.0/tests/test_toolsets.py +261 -0
- bridgeagent-0.16.0/tests/test_trajectory_compressor.py +630 -0
- bridgeagent-0.16.0/tests/test_trajectory_compressor_async.py +201 -0
- bridgeagent-0.16.0/tests/test_transform_llm_output_hook.py +159 -0
- bridgeagent-0.16.0/tests/test_transform_tool_result_hook.py +195 -0
- bridgeagent-0.16.0/tests/test_tui_gateway_server.py +5776 -0
- bridgeagent-0.16.0/tests/test_utils_truthy_values.py +29 -0
- bridgeagent-0.16.0/tests/test_wheel_locales_e2e.py +137 -0
- bridgeagent-0.16.0/tests/test_yuanbao_integration.py +413 -0
- bridgeagent-0.16.0/tests/test_yuanbao_markdown.py +324 -0
- bridgeagent-0.16.0/tests/test_yuanbao_pipeline.py +1028 -0
- bridgeagent-0.16.0/tests/test_yuanbao_proto.py +649 -0
- bridgeagent-0.16.0/tools/__init__.py +25 -0
- bridgeagent-0.16.0/tools/ansi_strip.py +44 -0
- bridgeagent-0.16.0/tools/approval.py +1793 -0
- bridgeagent-0.16.0/tools/binary_extensions.py +42 -0
- bridgeagent-0.16.0/tools/browser_camofox.py +794 -0
- bridgeagent-0.16.0/tools/browser_camofox_state.py +49 -0
- bridgeagent-0.16.0/tools/browser_cdp_tool.py +569 -0
- bridgeagent-0.16.0/tools/browser_dialog_tool.py +148 -0
- bridgeagent-0.16.0/tools/browser_supervisor.py +1475 -0
- bridgeagent-0.16.0/tools/browser_tool.py +3863 -0
- bridgeagent-0.16.0/tools/budget_config.py +51 -0
- bridgeagent-0.16.0/tools/checkpoint_manager.py +1669 -0
- bridgeagent-0.16.0/tools/clarify_gateway.py +278 -0
- bridgeagent-0.16.0/tools/clarify_tool.py +141 -0
- bridgeagent-0.16.0/tools/code_execution_tool.py +1831 -0
- bridgeagent-0.16.0/tools/computer_use/__init__.py +43 -0
- bridgeagent-0.16.0/tools/computer_use/backend.py +158 -0
- bridgeagent-0.16.0/tools/computer_use/cua_backend.py +779 -0
- bridgeagent-0.16.0/tools/computer_use/schema.py +213 -0
- bridgeagent-0.16.0/tools/computer_use/tool.py +750 -0
- bridgeagent-0.16.0/tools/computer_use/vision_routing.py +204 -0
- bridgeagent-0.16.0/tools/computer_use_tool.py +39 -0
- bridgeagent-0.16.0/tools/credential_files.py +454 -0
- bridgeagent-0.16.0/tools/cronjob_tools.py +919 -0
- bridgeagent-0.16.0/tools/debug_helpers.py +105 -0
- bridgeagent-0.16.0/tools/delegate_tool.py +2860 -0
- bridgeagent-0.16.0/tools/discord_tool.py +959 -0
- bridgeagent-0.16.0/tools/env_passthrough.py +163 -0
- bridgeagent-0.16.0/tools/env_probe.py +247 -0
- bridgeagent-0.16.0/tools/environments/__init__.py +14 -0
- bridgeagent-0.16.0/tools/environments/base.py +895 -0
- bridgeagent-0.16.0/tools/environments/daytona.py +270 -0
- bridgeagent-0.16.0/tools/environments/docker.py +1326 -0
- bridgeagent-0.16.0/tools/environments/file_sync.py +403 -0
- bridgeagent-0.16.0/tools/environments/local.py +697 -0
- bridgeagent-0.16.0/tools/environments/managed_modal.py +282 -0
- bridgeagent-0.16.0/tools/environments/modal.py +478 -0
- bridgeagent-0.16.0/tools/environments/modal_utils.py +204 -0
- bridgeagent-0.16.0/tools/environments/singularity.py +262 -0
- bridgeagent-0.16.0/tools/environments/ssh.py +375 -0
- bridgeagent-0.16.0/tools/fal_common.py +163 -0
- bridgeagent-0.16.0/tools/feishu_doc_tool.py +138 -0
- bridgeagent-0.16.0/tools/feishu_drive_tool.py +431 -0
- bridgeagent-0.16.0/tools/file_operations.py +2292 -0
- bridgeagent-0.16.0/tools/file_state.py +332 -0
- bridgeagent-0.16.0/tools/file_tools.py +1533 -0
- bridgeagent-0.16.0/tools/fuzzy_match.py +860 -0
- bridgeagent-0.16.0/tools/homeassistant_tool.py +513 -0
- bridgeagent-0.16.0/tools/image_generation_tool.py +1180 -0
- bridgeagent-0.16.0/tools/interrupt.py +98 -0
- bridgeagent-0.16.0/tools/kanban_tools.py +1431 -0
- bridgeagent-0.16.0/tools/lazy_deps.py +639 -0
- bridgeagent-0.16.0/tools/loop_tools.py +302 -0
- bridgeagent-0.16.0/tools/managed_tool_gateway.py +192 -0
- bridgeagent-0.16.0/tools/mcp_oauth.py +776 -0
- bridgeagent-0.16.0/tools/mcp_oauth_manager.py +607 -0
- bridgeagent-0.16.0/tools/mcp_tool.py +3915 -0
- bridgeagent-0.16.0/tools/memory_tool.py +723 -0
- bridgeagent-0.16.0/tools/microsoft_graph_auth.py +245 -0
- bridgeagent-0.16.0/tools/microsoft_graph_client.py +408 -0
- bridgeagent-0.16.0/tools/mixture_of_agents_tool.py +542 -0
- bridgeagent-0.16.0/tools/neutts_synth.py +104 -0
- bridgeagent-0.16.0/tools/openrouter_client.py +33 -0
- bridgeagent-0.16.0/tools/osv_check.py +169 -0
- bridgeagent-0.16.0/tools/patch_parser.py +622 -0
- bridgeagent-0.16.0/tools/path_security.py +43 -0
- bridgeagent-0.16.0/tools/process_registry.py +1616 -0
- bridgeagent-0.16.0/tools/registry.py +589 -0
- bridgeagent-0.16.0/tools/schema_sanitizer.py +445 -0
- bridgeagent-0.16.0/tools/send_message_tool.py +1787 -0
- bridgeagent-0.16.0/tools/session_search_tool.py +783 -0
- bridgeagent-0.16.0/tools/skill_manager_tool.py +1043 -0
- bridgeagent-0.16.0/tools/skill_provenance.py +78 -0
- bridgeagent-0.16.0/tools/skill_usage.py +852 -0
- bridgeagent-0.16.0/tools/skills_ast_audit.py +133 -0
- bridgeagent-0.16.0/tools/skills_guard.py +1086 -0
- bridgeagent-0.16.0/tools/skills_hub.py +3756 -0
- bridgeagent-0.16.0/tools/skills_sync.py +897 -0
- bridgeagent-0.16.0/tools/skills_tool.py +1604 -0
- bridgeagent-0.16.0/tools/slash_confirm.py +167 -0
- bridgeagent-0.16.0/tools/terminal_tool.py +2612 -0
- bridgeagent-0.16.0/tools/thread_context.py +120 -0
- bridgeagent-0.16.0/tools/threat_patterns.py +252 -0
- bridgeagent-0.16.0/tools/tirith_security.py +820 -0
- bridgeagent-0.16.0/tools/todo_tool.py +277 -0
- bridgeagent-0.16.0/tools/tool_backend_helpers.py +182 -0
- bridgeagent-0.16.0/tools/tool_output_limits.py +110 -0
- bridgeagent-0.16.0/tools/tool_result_storage.py +232 -0
- bridgeagent-0.16.0/tools/tool_search.py +735 -0
- bridgeagent-0.16.0/tools/transcription_tools.py +1797 -0
- bridgeagent-0.16.0/tools/tts_tool.py +2551 -0
- bridgeagent-0.16.0/tools/url_safety.py +361 -0
- bridgeagent-0.16.0/tools/video_generation_tool.py +562 -0
- bridgeagent-0.16.0/tools/vision_tools.py +1591 -0
- bridgeagent-0.16.0/tools/voice_mode.py +1217 -0
- bridgeagent-0.16.0/tools/web_tools.py +1347 -0
- bridgeagent-0.16.0/tools/website_policy.py +282 -0
- bridgeagent-0.16.0/tools/x_search_tool.py +525 -0
- bridgeagent-0.16.0/tools/xai_http.py +128 -0
- bridgeagent-0.16.0/tools/yuanbao_tools.py +737 -0
- bridgeagent-0.16.0/toolset_distributions.py +364 -0
- bridgeagent-0.16.0/toolsets.py +916 -0
- bridgeagent-0.16.0/trajectory_compressor.py +1579 -0
- bridgeagent-0.16.0/tui_gateway/__init__.py +0 -0
- bridgeagent-0.16.0/tui_gateway/entry.py +298 -0
- bridgeagent-0.16.0/tui_gateway/event_publisher.py +126 -0
- bridgeagent-0.16.0/tui_gateway/render.py +49 -0
- bridgeagent-0.16.0/tui_gateway/server.py +8522 -0
- bridgeagent-0.16.0/tui_gateway/slash_worker.py +76 -0
- bridgeagent-0.16.0/tui_gateway/transport.py +219 -0
- bridgeagent-0.16.0/tui_gateway/ws.py +327 -0
- 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."""
|