avibe-os 3.0.0a0__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.
- avibe_os-3.0.0a0/.gitignore +181 -0
- avibe_os-3.0.0a0/LICENSE +21 -0
- avibe_os-3.0.0a0/PKG-INFO +481 -0
- avibe_os-3.0.0a0/README.md +429 -0
- avibe_os-3.0.0a0/assets/mascot/prompts/README.md +18 -0
- avibe_os-3.0.0a0/config/__init__.py +37 -0
- avibe_os-3.0.0a0/config/discovered_chats.py +193 -0
- avibe_os-3.0.0a0/config/paths.py +133 -0
- avibe_os-3.0.0a0/config/platform_registry.py +290 -0
- avibe_os-3.0.0a0/config/v2_compat.py +159 -0
- avibe_os-3.0.0a0/config/v2_config.py +699 -0
- avibe_os-3.0.0a0/config/v2_sessions.py +609 -0
- avibe_os-3.0.0a0/config/v2_settings.py +762 -0
- avibe_os-3.0.0a0/core/__init__.py +0 -0
- avibe_os-3.0.0a0/core/agent_auth_service.py +2642 -0
- avibe_os-3.0.0a0/core/audio_asr.py +304 -0
- avibe_os-3.0.0a0/core/auth.py +140 -0
- avibe_os-3.0.0a0/core/avibe_cloud.py +48 -0
- avibe_os-3.0.0a0/core/chat_discovery.py +917 -0
- avibe_os-3.0.0a0/core/controller.py +1118 -0
- avibe_os-3.0.0a0/core/handlers/__init__.py +9 -0
- avibe_os-3.0.0a0/core/handlers/base.py +66 -0
- avibe_os-3.0.0a0/core/handlers/command_handlers.py +989 -0
- avibe_os-3.0.0a0/core/handlers/message_handler.py +1067 -0
- avibe_os-3.0.0a0/core/handlers/session_handler.py +1223 -0
- avibe_os-3.0.0a0/core/handlers/settings_handler.py +869 -0
- avibe_os-3.0.0a0/core/inbox_events.py +65 -0
- avibe_os-3.0.0a0/core/internal_server.py +634 -0
- avibe_os-3.0.0a0/core/message_dispatcher.py +1044 -0
- avibe_os-3.0.0a0/core/message_mirror.py +369 -0
- avibe_os-3.0.0a0/core/modals.py +54 -0
- avibe_os-3.0.0a0/core/process_diagnostics.py +200 -0
- avibe_os-3.0.0a0/core/process_isolation.py +116 -0
- avibe_os-3.0.0a0/core/processing_indicator.py +381 -0
- avibe_os-3.0.0a0/core/reply_enhancer.py +231 -0
- avibe_os-3.0.0a0/core/runtime_commands.py +204 -0
- avibe_os-3.0.0a0/core/scheduled_tasks.py +1853 -0
- avibe_os-3.0.0a0/core/services/__init__.py +12 -0
- avibe_os-3.0.0a0/core/services/agent_run_target.py +620 -0
- avibe_os-3.0.0a0/core/services/dispatch.py +119 -0
- avibe_os-3.0.0a0/core/services/sessions.py +166 -0
- avibe_os-3.0.0a0/core/services/settings.py +184 -0
- avibe_os-3.0.0a0/core/services/skills.py +328 -0
- avibe_os-3.0.0a0/core/session_titles.py +82 -0
- avibe_os-3.0.0a0/core/session_turns.py +720 -0
- avibe_os-3.0.0a0/core/show_pages.py +680 -0
- avibe_os-3.0.0a0/core/show_runtime.py +1180 -0
- avibe_os-3.0.0a0/core/show_session_events.py +547 -0
- avibe_os-3.0.0a0/core/system_prompt_injection.py +395 -0
- avibe_os-3.0.0a0/core/update_checker.py +1044 -0
- avibe_os-3.0.0a0/core/vibe_agents.py +534 -0
- avibe_os-3.0.0a0/core/watches.py +663 -0
- avibe_os-3.0.0a0/core/web_push.py +153 -0
- avibe_os-3.0.0a0/core/web_push_notifications.py +199 -0
- avibe_os-3.0.0a0/core/workbench_media.py +147 -0
- avibe_os-3.0.0a0/docs/plans/v2/README.md +18 -0
- avibe_os-3.0.0a0/docs/regression/README.md +137 -0
- avibe_os-3.0.0a0/main.py +178 -0
- avibe_os-3.0.0a0/modules/__init__.py +0 -0
- avibe_os-3.0.0a0/modules/agent_router.py +60 -0
- avibe_os-3.0.0a0/modules/agents/__init__.py +21 -0
- avibe_os-3.0.0a0/modules/agents/base.py +494 -0
- avibe_os-3.0.0a0/modules/agents/catalog.py +165 -0
- avibe_os-3.0.0a0/modules/agents/claude_agent.py +1014 -0
- avibe_os-3.0.0a0/modules/agents/claude_question_handler.py +395 -0
- avibe_os-3.0.0a0/modules/agents/codex/__init__.py +5 -0
- avibe_os-3.0.0a0/modules/agents/codex/agent.py +1058 -0
- avibe_os-3.0.0a0/modules/agents/codex/event_handler.py +520 -0
- avibe_os-3.0.0a0/modules/agents/codex/session.py +97 -0
- avibe_os-3.0.0a0/modules/agents/codex/transport.py +346 -0
- avibe_os-3.0.0a0/modules/agents/codex/turn_state.py +190 -0
- avibe_os-3.0.0a0/modules/agents/native_sessions/__init__.py +12 -0
- avibe_os-3.0.0a0/modules/agents/native_sessions/base.py +153 -0
- avibe_os-3.0.0a0/modules/agents/native_sessions/claude.py +360 -0
- avibe_os-3.0.0a0/modules/agents/native_sessions/codex.py +156 -0
- avibe_os-3.0.0a0/modules/agents/native_sessions/display.py +22 -0
- avibe_os-3.0.0a0/modules/agents/native_sessions/opencode.py +128 -0
- avibe_os-3.0.0a0/modules/agents/native_sessions/providers.py +29 -0
- avibe_os-3.0.0a0/modules/agents/native_sessions/service.py +155 -0
- avibe_os-3.0.0a0/modules/agents/native_sessions/types.py +30 -0
- avibe_os-3.0.0a0/modules/agents/opencode/__init__.py +35 -0
- avibe_os-3.0.0a0/modules/agents/opencode/agent.py +664 -0
- avibe_os-3.0.0a0/modules/agents/opencode/client_manager.py +33 -0
- avibe_os-3.0.0a0/modules/agents/opencode/config_reconciler.py +234 -0
- avibe_os-3.0.0a0/modules/agents/opencode/message_processor.py +76 -0
- avibe_os-3.0.0a0/modules/agents/opencode/poll_loop.py +559 -0
- avibe_os-3.0.0a0/modules/agents/opencode/server.py +1288 -0
- avibe_os-3.0.0a0/modules/agents/opencode/session.py +277 -0
- avibe_os-3.0.0a0/modules/agents/opencode/types.py +18 -0
- avibe_os-3.0.0a0/modules/agents/opencode/utils.py +401 -0
- avibe_os-3.0.0a0/modules/agents/opencode_agent.py +23 -0
- avibe_os-3.0.0a0/modules/agents/question_ui.py +462 -0
- avibe_os-3.0.0a0/modules/agents/service.py +67 -0
- avibe_os-3.0.0a0/modules/agents/subagent_router.py +280 -0
- avibe_os-3.0.0a0/modules/claude_client.py +159 -0
- avibe_os-3.0.0a0/modules/claude_sdk_compat.py +102 -0
- avibe_os-3.0.0a0/modules/im/__init__.py +63 -0
- avibe_os-3.0.0a0/modules/im/avibe.py +283 -0
- avibe_os-3.0.0a0/modules/im/base.py +632 -0
- avibe_os-3.0.0a0/modules/im/discord.py +2202 -0
- avibe_os-3.0.0a0/modules/im/factory.py +94 -0
- avibe_os-3.0.0a0/modules/im/feishu.py +3300 -0
- avibe_os-3.0.0a0/modules/im/formatters/__init__.py +17 -0
- avibe_os-3.0.0a0/modules/im/formatters/avibe_formatter.py +35 -0
- avibe_os-3.0.0a0/modules/im/formatters/base_formatter.py +613 -0
- avibe_os-3.0.0a0/modules/im/formatters/discord_formatter.py +32 -0
- avibe_os-3.0.0a0/modules/im/formatters/feishu_formatter.py +43 -0
- avibe_os-3.0.0a0/modules/im/formatters/slack_formatter.py +127 -0
- avibe_os-3.0.0a0/modules/im/formatters/telegram_formatter.py +165 -0
- avibe_os-3.0.0a0/modules/im/formatters/wechat_formatter.py +54 -0
- avibe_os-3.0.0a0/modules/im/multi.py +373 -0
- avibe_os-3.0.0a0/modules/im/slack.py +4132 -0
- avibe_os-3.0.0a0/modules/im/slack_modal.py +94 -0
- avibe_os-3.0.0a0/modules/im/telegram.py +1881 -0
- avibe_os-3.0.0a0/modules/im/telegram_api.py +128 -0
- avibe_os-3.0.0a0/modules/im/wechat.py +1681 -0
- avibe_os-3.0.0a0/modules/im/wechat_api.py +414 -0
- avibe_os-3.0.0a0/modules/im/wechat_auth.py +407 -0
- avibe_os-3.0.0a0/modules/im/wechat_cdn.py +474 -0
- avibe_os-3.0.0a0/modules/session_manager.py +138 -0
- avibe_os-3.0.0a0/modules/sessions_facade.py +476 -0
- avibe_os-3.0.0a0/modules/settings_manager.py +627 -0
- avibe_os-3.0.0a0/npm/avibe/README.md +54 -0
- avibe_os-3.0.0a0/pyproject.toml +133 -0
- avibe_os-3.0.0a0/standards/scenario-testing/README.md +96 -0
- avibe_os-3.0.0a0/storage/__init__.py +13 -0
- avibe_os-3.0.0a0/storage/agent_session_rows.py +121 -0
- avibe_os-3.0.0a0/storage/alembic/__init__.py +1 -0
- avibe_os-3.0.0a0/storage/alembic/env.py +53 -0
- avibe_os-3.0.0a0/storage/alembic/versions/20260501_0001_initial_sqlite_state.py +157 -0
- avibe_os-3.0.0a0/storage/alembic/versions/20260515_0002_background_tasks.py +112 -0
- avibe_os-3.0.0a0/storage/alembic/versions/20260522_0003_agent_runs_schema.py +139 -0
- avibe_os-3.0.0a0/storage/alembic/versions/20260523_0004_show_pages.py +41 -0
- avibe_os-3.0.0a0/storage/alembic/versions/20260525_0005_agent_enabled.py +30 -0
- avibe_os-3.0.0a0/storage/alembic/versions/20260526_0006_messages.py +83 -0
- avibe_os-3.0.0a0/storage/alembic/versions/20260529_0007_backfill_scope_agent_names.py +150 -0
- avibe_os-3.0.0a0/storage/alembic/versions/20260530_0008_remove_legacy_default_agent.py +371 -0
- avibe_os-3.0.0a0/storage/alembic/versions/20260530_0009_show_session_events.py +54 -0
- avibe_os-3.0.0a0/storage/alembic/versions/20260531_0009_messages_type.py +67 -0
- avibe_os-3.0.0a0/storage/alembic/versions/20260531_0010_messages_source.py +65 -0
- avibe_os-3.0.0a0/storage/alembic/versions/20260601_0011_session_anchor_unique.py +150 -0
- avibe_os-3.0.0a0/storage/alembic/versions/20260601_0012_agent_status.py +59 -0
- avibe_os-3.0.0a0/storage/alembic/versions/20260602_0013_media_objects.py +74 -0
- avibe_os-3.0.0a0/storage/alembic/versions/20260603_0014_media_mtime.py +44 -0
- avibe_os-3.0.0a0/storage/alembic/versions/20260604_0015_media_dimensions.py +41 -0
- avibe_os-3.0.0a0/storage/alembic/versions/20260604_0016_web_push_subscriptions.py +56 -0
- avibe_os-3.0.0a0/storage/alembic/versions/20260604_0017_web_push_subscription_device_id.py +36 -0
- avibe_os-3.0.0a0/storage/alembic/versions/20260606_0018_messages_session_indexes.py +63 -0
- avibe_os-3.0.0a0/storage/alembic/versions/20260606_0019_inbox_query_indexes.py +40 -0
- avibe_os-3.0.0a0/storage/alembic/versions/__init__.py +1 -0
- avibe_os-3.0.0a0/storage/background.py +1139 -0
- avibe_os-3.0.0a0/storage/db.py +57 -0
- avibe_os-3.0.0a0/storage/importer.py +918 -0
- avibe_os-3.0.0a0/storage/lock.py +93 -0
- avibe_os-3.0.0a0/storage/media_service.py +150 -0
- avibe_os-3.0.0a0/storage/messages_service.py +832 -0
- avibe_os-3.0.0a0/storage/migrations.py +544 -0
- avibe_os-3.0.0a0/storage/models.py +432 -0
- avibe_os-3.0.0a0/storage/pagination.py +98 -0
- avibe_os-3.0.0a0/storage/projects_service.py +403 -0
- avibe_os-3.0.0a0/storage/read_only_query.py +118 -0
- avibe_os-3.0.0a0/storage/sessions_service.py +1270 -0
- avibe_os-3.0.0a0/storage/settings_service.py +454 -0
- avibe_os-3.0.0a0/storage/web_push_service.py +285 -0
- avibe_os-3.0.0a0/storage/workbench_sessions_service.py +449 -0
- avibe_os-3.0.0a0/tests/scenario_harness/README.md +28 -0
- avibe_os-3.0.0a0/tests/scenarios/README.md +25 -0
- avibe_os-3.0.0a0/ui/README.md +73 -0
- avibe_os-3.0.0a0/ui/dist/apple-touch-icon.png +0 -0
- avibe_os-3.0.0a0/ui/dist/assets/bash-Yzrsuije.js +1 -0
- avibe_os-3.0.0a0/ui/dist/assets/c-BIGW1oBm.js +1 -0
- avibe_os-3.0.0a0/ui/dist/assets/cloud-tuanzi-logo-mono-C88aTibU.png +0 -0
- avibe_os-3.0.0a0/ui/dist/assets/cpp-DIPi6g--.js +1 -0
- avibe_os-3.0.0a0/ui/dist/assets/csharp-DSvCPggb.js +1 -0
- avibe_os-3.0.0a0/ui/dist/assets/css-CLj8gQPS.js +1 -0
- avibe_os-3.0.0a0/ui/dist/assets/dart-bE4Kk8sk.js +1 -0
- avibe_os-3.0.0a0/ui/dist/assets/diff-D97Zzqfu.js +1 -0
- avibe_os-3.0.0a0/ui/dist/assets/docker-BcOcwvcX.js +1 -0
- avibe_os-3.0.0a0/ui/dist/assets/file-viewer-modal-DcyOAOOC.js +162 -0
- avibe_os-3.0.0a0/ui/dist/assets/github-dark-DHJKELXO.js +1 -0
- avibe_os-3.0.0a0/ui/dist/assets/github-light-DAi9KRSo.js +1 -0
- avibe_os-3.0.0a0/ui/dist/assets/go-C27-OAKa.js +1 -0
- avibe_os-3.0.0a0/ui/dist/assets/html-pp8916En.js +1 -0
- avibe_os-3.0.0a0/ui/dist/assets/index-BG7JZ9bv.js +128 -0
- avibe_os-3.0.0a0/ui/dist/assets/index-Bhq3jzL9.js +4870 -0
- avibe_os-3.0.0a0/ui/dist/assets/index-Dy6T-Vg3.css +1 -0
- avibe_os-3.0.0a0/ui/dist/assets/ini-BEwlwnbL.js +1 -0
- avibe_os-3.0.0a0/ui/dist/assets/java-CylS5w8V.js +1 -0
- avibe_os-3.0.0a0/ui/dist/assets/javascript-wDzz0qaB.js +1 -0
- avibe_os-3.0.0a0/ui/dist/assets/json-Cp-IABpG.js +1 -0
- avibe_os-3.0.0a0/ui/dist/assets/jsx-g9-lgVsj.js +1 -0
- avibe_os-3.0.0a0/ui/dist/assets/kotlin-BdnUsdx6.js +1 -0
- avibe_os-3.0.0a0/ui/dist/assets/less-B1dDrJ26.js +1 -0
- avibe_os-3.0.0a0/ui/dist/assets/logo-BzryTZ7u.png +0 -0
- avibe_os-3.0.0a0/ui/dist/assets/lua-BaeVxFsk.js +1 -0
- avibe_os-3.0.0a0/ui/dist/assets/make-CHLpvVh8.js +1 -0
- avibe_os-3.0.0a0/ui/dist/assets/perl-B9cMNwum.js +1 -0
- avibe_os-3.0.0a0/ui/dist/assets/php-Csjmro_R.js +1 -0
- avibe_os-3.0.0a0/ui/dist/assets/python-B6aJPvgy.js +1 -0
- avibe_os-3.0.0a0/ui/dist/assets/r-Dspwwk_N.js +1 -0
- avibe_os-3.0.0a0/ui/dist/assets/ruby-vQ0jtSlR.js +1 -0
- avibe_os-3.0.0a0/ui/dist/assets/rust-B1yitclQ.js +1 -0
- avibe_os-3.0.0a0/ui/dist/assets/scala-C151Ov-r.js +1 -0
- avibe_os-3.0.0a0/ui/dist/assets/scss-D5BDwBP9.js +1 -0
- avibe_os-3.0.0a0/ui/dist/assets/sql-CRqJ_cUM.js +1 -0
- avibe_os-3.0.0a0/ui/dist/assets/svelte-DR4MIrkg.js +1 -0
- avibe_os-3.0.0a0/ui/dist/assets/swift-D82vCrfD.js +1 -0
- avibe_os-3.0.0a0/ui/dist/assets/toml-vGWfd6FD.js +1 -0
- avibe_os-3.0.0a0/ui/dist/assets/tsx-COt5Ahok.js +1 -0
- avibe_os-3.0.0a0/ui/dist/assets/typescript-BPQ3VLAy.js +1 -0
- avibe_os-3.0.0a0/ui/dist/assets/vue-DMJtu8ND.js +1 -0
- avibe_os-3.0.0a0/ui/dist/assets/xml-sdJ4AIDG.js +1 -0
- avibe_os-3.0.0a0/ui/dist/assets/yaml-Buea-lGh.js +1 -0
- avibe_os-3.0.0a0/ui/dist/icon-192.png +0 -0
- avibe_os-3.0.0a0/ui/dist/icon-512.png +0 -0
- avibe_os-3.0.0a0/ui/dist/index.html +81 -0
- avibe_os-3.0.0a0/ui/dist/logo.png +0 -0
- avibe_os-3.0.0a0/ui/dist/manifest.webmanifest +15 -0
- avibe_os-3.0.0a0/ui/dist/push-sw.js +57 -0
- avibe_os-3.0.0a0/ui/dist/vite.svg +1 -0
- avibe_os-3.0.0a0/ui/node_modules/@babel/code-frame/LICENSE +22 -0
- avibe_os-3.0.0a0/ui/node_modules/@babel/code-frame/README.md +19 -0
- avibe_os-3.0.0a0/ui/node_modules/@babel/compat-data/LICENSE +22 -0
- avibe_os-3.0.0a0/ui/node_modules/@babel/compat-data/README.md +19 -0
- avibe_os-3.0.0a0/ui/node_modules/@babel/core/LICENSE +22 -0
- avibe_os-3.0.0a0/ui/node_modules/@babel/core/README.md +19 -0
- avibe_os-3.0.0a0/ui/node_modules/@babel/generator/LICENSE +22 -0
- avibe_os-3.0.0a0/ui/node_modules/@babel/generator/README.md +19 -0
- avibe_os-3.0.0a0/ui/node_modules/@babel/helper-compilation-targets/LICENSE +22 -0
- avibe_os-3.0.0a0/ui/node_modules/@babel/helper-compilation-targets/README.md +19 -0
- avibe_os-3.0.0a0/ui/node_modules/@babel/helper-globals/LICENSE +22 -0
- avibe_os-3.0.0a0/ui/node_modules/@babel/helper-globals/README.md +19 -0
- avibe_os-3.0.0a0/ui/node_modules/@babel/helper-module-imports/LICENSE +22 -0
- avibe_os-3.0.0a0/ui/node_modules/@babel/helper-module-imports/README.md +19 -0
- avibe_os-3.0.0a0/ui/node_modules/@babel/helper-module-transforms/LICENSE +22 -0
- avibe_os-3.0.0a0/ui/node_modules/@babel/helper-module-transforms/README.md +19 -0
- avibe_os-3.0.0a0/ui/node_modules/@babel/helper-plugin-utils/LICENSE +22 -0
- avibe_os-3.0.0a0/ui/node_modules/@babel/helper-plugin-utils/README.md +19 -0
- avibe_os-3.0.0a0/ui/node_modules/@babel/helper-string-parser/LICENSE +22 -0
- avibe_os-3.0.0a0/ui/node_modules/@babel/helper-string-parser/README.md +19 -0
- avibe_os-3.0.0a0/ui/node_modules/@babel/helper-validator-identifier/LICENSE +22 -0
- avibe_os-3.0.0a0/ui/node_modules/@babel/helper-validator-identifier/README.md +19 -0
- avibe_os-3.0.0a0/ui/node_modules/@babel/helper-validator-option/LICENSE +22 -0
- avibe_os-3.0.0a0/ui/node_modules/@babel/helper-validator-option/README.md +19 -0
- avibe_os-3.0.0a0/ui/node_modules/@babel/helpers/LICENSE +23 -0
- avibe_os-3.0.0a0/ui/node_modules/@babel/helpers/README.md +19 -0
- avibe_os-3.0.0a0/ui/node_modules/@babel/parser/LICENSE +19 -0
- avibe_os-3.0.0a0/ui/node_modules/@babel/parser/README.md +19 -0
- avibe_os-3.0.0a0/ui/node_modules/@babel/plugin-transform-react-jsx-self/LICENSE +22 -0
- avibe_os-3.0.0a0/ui/node_modules/@babel/plugin-transform-react-jsx-self/README.md +19 -0
- avibe_os-3.0.0a0/ui/node_modules/@babel/plugin-transform-react-jsx-source/LICENSE +22 -0
- avibe_os-3.0.0a0/ui/node_modules/@babel/plugin-transform-react-jsx-source/README.md +19 -0
- avibe_os-3.0.0a0/ui/node_modules/@babel/runtime/LICENSE +22 -0
- avibe_os-3.0.0a0/ui/node_modules/@babel/runtime/README.md +19 -0
- avibe_os-3.0.0a0/ui/node_modules/@babel/template/LICENSE +22 -0
- avibe_os-3.0.0a0/ui/node_modules/@babel/template/README.md +19 -0
- avibe_os-3.0.0a0/ui/node_modules/@babel/traverse/LICENSE +22 -0
- avibe_os-3.0.0a0/ui/node_modules/@babel/traverse/README.md +19 -0
- avibe_os-3.0.0a0/ui/node_modules/@babel/types/LICENSE +22 -0
- avibe_os-3.0.0a0/ui/node_modules/@babel/types/README.md +19 -0
- avibe_os-3.0.0a0/ui/node_modules/@esbuild/darwin-arm64/README.md +3 -0
- avibe_os-3.0.0a0/ui/node_modules/@eslint/config-array/LICENSE +201 -0
- avibe_os-3.0.0a0/ui/node_modules/@eslint/config-array/README.md +368 -0
- avibe_os-3.0.0a0/ui/node_modules/@eslint/config-helpers/LICENSE +201 -0
- avibe_os-3.0.0a0/ui/node_modules/@eslint/config-helpers/README.md +97 -0
- avibe_os-3.0.0a0/ui/node_modules/@eslint/core/LICENSE +201 -0
- avibe_os-3.0.0a0/ui/node_modules/@eslint/core/README.md +29 -0
- avibe_os-3.0.0a0/ui/node_modules/@eslint/eslintrc/LICENSE +19 -0
- avibe_os-3.0.0a0/ui/node_modules/@eslint/eslintrc/README.md +145 -0
- avibe_os-3.0.0a0/ui/node_modules/@eslint/js/LICENSE +19 -0
- avibe_os-3.0.0a0/ui/node_modules/@eslint/js/README.md +103 -0
- avibe_os-3.0.0a0/ui/node_modules/@eslint/object-schema/LICENSE +201 -0
- avibe_os-3.0.0a0/ui/node_modules/@eslint/object-schema/README.md +242 -0
- avibe_os-3.0.0a0/ui/node_modules/@eslint/plugin-kit/LICENSE +201 -0
- avibe_os-3.0.0a0/ui/node_modules/@eslint/plugin-kit/README.md +273 -0
- avibe_os-3.0.0a0/ui/node_modules/@eslint-community/eslint-utils/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@eslint-community/eslint-utils/README.md +37 -0
- avibe_os-3.0.0a0/ui/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/LICENSE +201 -0
- avibe_os-3.0.0a0/ui/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/README.md +105 -0
- avibe_os-3.0.0a0/ui/node_modules/@eslint-community/regexpp/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@eslint-community/regexpp/README.md +177 -0
- avibe_os-3.0.0a0/ui/node_modules/@floating-ui/core/LICENSE +20 -0
- avibe_os-3.0.0a0/ui/node_modules/@floating-ui/core/README.md +4 -0
- avibe_os-3.0.0a0/ui/node_modules/@floating-ui/dom/LICENSE +20 -0
- avibe_os-3.0.0a0/ui/node_modules/@floating-ui/dom/README.md +4 -0
- avibe_os-3.0.0a0/ui/node_modules/@floating-ui/react-dom/LICENSE +20 -0
- avibe_os-3.0.0a0/ui/node_modules/@floating-ui/react-dom/README.md +3 -0
- avibe_os-3.0.0a0/ui/node_modules/@floating-ui/utils/LICENSE +20 -0
- avibe_os-3.0.0a0/ui/node_modules/@floating-ui/utils/README.md +4 -0
- avibe_os-3.0.0a0/ui/node_modules/@humanfs/core/LICENSE +201 -0
- avibe_os-3.0.0a0/ui/node_modules/@humanfs/core/README.md +140 -0
- avibe_os-3.0.0a0/ui/node_modules/@humanfs/node/LICENSE +201 -0
- avibe_os-3.0.0a0/ui/node_modules/@humanfs/node/README.md +141 -0
- avibe_os-3.0.0a0/ui/node_modules/@humanwhocodes/module-importer/LICENSE +201 -0
- avibe_os-3.0.0a0/ui/node_modules/@humanwhocodes/module-importer/README.md +80 -0
- avibe_os-3.0.0a0/ui/node_modules/@humanwhocodes/retry/LICENSE +201 -0
- avibe_os-3.0.0a0/ui/node_modules/@humanwhocodes/retry/README.md +177 -0
- avibe_os-3.0.0a0/ui/node_modules/@jridgewell/gen-mapping/LICENSE +19 -0
- avibe_os-3.0.0a0/ui/node_modules/@jridgewell/gen-mapping/README.md +227 -0
- avibe_os-3.0.0a0/ui/node_modules/@jridgewell/remapping/LICENSE +19 -0
- avibe_os-3.0.0a0/ui/node_modules/@jridgewell/remapping/README.md +218 -0
- avibe_os-3.0.0a0/ui/node_modules/@jridgewell/resolve-uri/LICENSE +19 -0
- avibe_os-3.0.0a0/ui/node_modules/@jridgewell/resolve-uri/README.md +40 -0
- avibe_os-3.0.0a0/ui/node_modules/@jridgewell/sourcemap-codec/LICENSE +19 -0
- avibe_os-3.0.0a0/ui/node_modules/@jridgewell/sourcemap-codec/README.md +264 -0
- avibe_os-3.0.0a0/ui/node_modules/@jridgewell/trace-mapping/LICENSE +19 -0
- avibe_os-3.0.0a0/ui/node_modules/@jridgewell/trace-mapping/README.md +348 -0
- avibe_os-3.0.0a0/ui/node_modules/@radix-ui/primitive/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@radix-ui/primitive/README.md +3 -0
- avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-arrow/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-arrow/README.md +3 -0
- avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-compose-refs/README.md +13 -0
- avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-context/README.md +13 -0
- avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-dialog/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-dialog/README.md +3 -0
- avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-dialog/node_modules/@radix-ui/react-slot/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-dialog/node_modules/@radix-ui/react-slot/README.md +3 -0
- avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-dismissable-layer/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-dismissable-layer/README.md +3 -0
- avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-focus-guards/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-focus-guards/README.md +3 -0
- avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-focus-scope/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-focus-scope/README.md +3 -0
- avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-id/README.md +13 -0
- avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-label/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-label/README.md +3 -0
- avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-label/node_modules/@radix-ui/react-primitive/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-label/node_modules/@radix-ui/react-primitive/README.md +3 -0
- avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-popover/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-popover/README.md +3 -0
- avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-popover/node_modules/@radix-ui/react-slot/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-popover/node_modules/@radix-ui/react-slot/README.md +3 -0
- avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-popper/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-popper/README.md +3 -0
- avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-portal/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-portal/README.md +3 -0
- avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-presence/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-presence/README.md +3 -0
- avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-primitive/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-primitive/README.md +3 -0
- avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-primitive/node_modules/@radix-ui/react-slot/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-primitive/node_modules/@radix-ui/react-slot/README.md +3 -0
- avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-separator/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-separator/README.md +3 -0
- avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-separator/node_modules/@radix-ui/react-primitive/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-separator/node_modules/@radix-ui/react-primitive/README.md +3 -0
- avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-slot/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-slot/README.md +3 -0
- avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-use-callback-ref/README.md +13 -0
- avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-use-controllable-state/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-use-controllable-state/README.md +3 -0
- avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-use-effect-event/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-use-effect-event/README.md +5 -0
- avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-use-escape-keydown/README.md +13 -0
- avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-use-layout-effect/README.md +13 -0
- avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-use-rect/README.md +13 -0
- avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-use-size/README.md +13 -0
- avibe_os-3.0.0a0/ui/node_modules/@radix-ui/rect/README.md +13 -0
- avibe_os-3.0.0a0/ui/node_modules/@rolldown/pluginutils/LICENSE +25 -0
- avibe_os-3.0.0a0/ui/node_modules/@rolldown/pluginutils/README.md +85 -0
- avibe_os-3.0.0a0/ui/node_modules/@rollup/rollup-darwin-arm64/README.md +3 -0
- avibe_os-3.0.0a0/ui/node_modules/@shikijs/core/LICENSE +22 -0
- avibe_os-3.0.0a0/ui/node_modules/@shikijs/core/README.md +5 -0
- avibe_os-3.0.0a0/ui/node_modules/@shikijs/engine-javascript/LICENSE +22 -0
- avibe_os-3.0.0a0/ui/node_modules/@shikijs/engine-javascript/README.md +9 -0
- avibe_os-3.0.0a0/ui/node_modules/@shikijs/engine-oniguruma/LICENSE +22 -0
- avibe_os-3.0.0a0/ui/node_modules/@shikijs/engine-oniguruma/README.md +9 -0
- avibe_os-3.0.0a0/ui/node_modules/@shikijs/langs/LICENSE +22 -0
- avibe_os-3.0.0a0/ui/node_modules/@shikijs/langs/README.md +7 -0
- avibe_os-3.0.0a0/ui/node_modules/@shikijs/primitive/LICENSE +22 -0
- avibe_os-3.0.0a0/ui/node_modules/@shikijs/themes/LICENSE +22 -0
- avibe_os-3.0.0a0/ui/node_modules/@shikijs/themes/README.md +7 -0
- avibe_os-3.0.0a0/ui/node_modules/@shikijs/types/LICENSE +22 -0
- avibe_os-3.0.0a0/ui/node_modules/@shikijs/types/README.md +7 -0
- avibe_os-3.0.0a0/ui/node_modules/@shikijs/vscode-textmate/README.md +9 -0
- avibe_os-3.0.0a0/ui/node_modules/@tailwindcss/node/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@tailwindcss/node/README.md +36 -0
- avibe_os-3.0.0a0/ui/node_modules/@tailwindcss/oxide/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@tailwindcss/oxide-darwin-arm64/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@tailwindcss/oxide-darwin-arm64/README.md +3 -0
- avibe_os-3.0.0a0/ui/node_modules/@tailwindcss/postcss/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@tailwindcss/postcss/README.md +126 -0
- avibe_os-3.0.0a0/ui/node_modules/@types/babel__core/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@types/babel__core/README.md +15 -0
- avibe_os-3.0.0a0/ui/node_modules/@types/babel__generator/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@types/babel__generator/README.md +15 -0
- avibe_os-3.0.0a0/ui/node_modules/@types/babel__template/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@types/babel__template/README.md +15 -0
- avibe_os-3.0.0a0/ui/node_modules/@types/babel__traverse/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@types/babel__traverse/README.md +15 -0
- avibe_os-3.0.0a0/ui/node_modules/@types/debug/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@types/debug/README.md +69 -0
- avibe_os-3.0.0a0/ui/node_modules/@types/estree/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@types/estree/README.md +15 -0
- avibe_os-3.0.0a0/ui/node_modules/@types/estree-jsx/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@types/estree-jsx/README.md +15 -0
- avibe_os-3.0.0a0/ui/node_modules/@types/hast/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@types/hast/README.md +15 -0
- avibe_os-3.0.0a0/ui/node_modules/@types/json-schema/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@types/json-schema/README.md +15 -0
- avibe_os-3.0.0a0/ui/node_modules/@types/mdast/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@types/mdast/README.md +15 -0
- avibe_os-3.0.0a0/ui/node_modules/@types/ms/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@types/ms/README.md +82 -0
- avibe_os-3.0.0a0/ui/node_modules/@types/node/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@types/node/README.md +15 -0
- avibe_os-3.0.0a0/ui/node_modules/@types/papaparse/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@types/papaparse/README.md +15 -0
- avibe_os-3.0.0a0/ui/node_modules/@types/react/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@types/react/README.md +15 -0
- avibe_os-3.0.0a0/ui/node_modules/@types/react-dom/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@types/react-dom/README.md +16 -0
- avibe_os-3.0.0a0/ui/node_modules/@types/unist/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@types/unist/README.md +15 -0
- avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/eslint-plugin/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/eslint-plugin/README.md +12 -0
- avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore/README.md +452 -0
- avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/parser/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/parser/README.md +12 -0
- avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/project-service/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/project-service/README.md +12 -0
- avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/scope-manager/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/scope-manager/README.md +10 -0
- avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/tsconfig-utils/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/tsconfig-utils/README.md +12 -0
- avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/type-utils/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/type-utils/README.md +12 -0
- avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/types/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/types/README.md +12 -0
- avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/typescript-estree/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/typescript-estree/README.md +14 -0
- avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion/README.md +135 -0
- avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/LICENSE +15 -0
- avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/README.md +491 -0
- avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/LICENSE +15 -0
- avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/README.md +664 -0
- avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/utils/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/utils/README.md +12 -0
- avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/visitor-keys/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/visitor-keys/README.md +10 -0
- avibe_os-3.0.0a0/ui/node_modules/@uiw/react-json-view/README.md +1089 -0
- avibe_os-3.0.0a0/ui/node_modules/@ungap/structured-clone/LICENSE +15 -0
- avibe_os-3.0.0a0/ui/node_modules/@ungap/structured-clone/README.md +95 -0
- avibe_os-3.0.0a0/ui/node_modules/@vitejs/plugin-react/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/@vitejs/plugin-react/README.md +143 -0
- avibe_os-3.0.0a0/ui/node_modules/acorn/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/acorn/README.md +282 -0
- avibe_os-3.0.0a0/ui/node_modules/acorn-jsx/LICENSE +19 -0
- avibe_os-3.0.0a0/ui/node_modules/acorn-jsx/README.md +40 -0
- avibe_os-3.0.0a0/ui/node_modules/agentation/LICENSE +27 -0
- avibe_os-3.0.0a0/ui/node_modules/agentation/README.md +140 -0
- avibe_os-3.0.0a0/ui/node_modules/ajv/LICENSE +22 -0
- avibe_os-3.0.0a0/ui/node_modules/ajv/README.md +1505 -0
- avibe_os-3.0.0a0/ui/node_modules/ajv/lib/dotjs/README.md +3 -0
- avibe_os-3.0.0a0/ui/node_modules/argparse/LICENSE +254 -0
- avibe_os-3.0.0a0/ui/node_modules/argparse/README.md +84 -0
- avibe_os-3.0.0a0/ui/node_modules/aria-hidden/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/aria-hidden/README.md +99 -0
- avibe_os-3.0.0a0/ui/node_modules/autoprefixer/LICENSE +20 -0
- avibe_os-3.0.0a0/ui/node_modules/autoprefixer/README.md +57 -0
- avibe_os-3.0.0a0/ui/node_modules/balanced-match/README.md +97 -0
- avibe_os-3.0.0a0/ui/node_modules/baseline-browser-mapping/README.md +463 -0
- avibe_os-3.0.0a0/ui/node_modules/brace-expansion/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/brace-expansion/README.md +129 -0
- avibe_os-3.0.0a0/ui/node_modules/browserslist/LICENSE +20 -0
- avibe_os-3.0.0a0/ui/node_modules/browserslist/README.md +65 -0
- avibe_os-3.0.0a0/ui/node_modules/caniuse-lite/LICENSE +395 -0
- avibe_os-3.0.0a0/ui/node_modules/caniuse-lite/README.md +6 -0
- avibe_os-3.0.0a0/ui/node_modules/class-variance-authority/LICENSE +190 -0
- avibe_os-3.0.0a0/ui/node_modules/class-variance-authority/README.md +3 -0
- avibe_os-3.0.0a0/ui/node_modules/cmdk/README.md +483 -0
- avibe_os-3.0.0a0/ui/node_modules/color-convert/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/color-convert/README.md +68 -0
- avibe_os-3.0.0a0/ui/node_modules/color-name/LICENSE +8 -0
- avibe_os-3.0.0a0/ui/node_modules/color-name/README.md +11 -0
- avibe_os-3.0.0a0/ui/node_modules/concat-map/LICENSE +18 -0
- avibe_os-3.0.0a0/ui/node_modules/convert-source-map/LICENSE +23 -0
- avibe_os-3.0.0a0/ui/node_modules/convert-source-map/README.md +206 -0
- avibe_os-3.0.0a0/ui/node_modules/cookie/LICENSE +24 -0
- avibe_os-3.0.0a0/ui/node_modules/cookie/README.md +295 -0
- avibe_os-3.0.0a0/ui/node_modules/cross-spawn/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/cross-spawn/README.md +89 -0
- avibe_os-3.0.0a0/ui/node_modules/csstype/LICENSE +19 -0
- avibe_os-3.0.0a0/ui/node_modules/csstype/README.md +291 -0
- avibe_os-3.0.0a0/ui/node_modules/debug/LICENSE +20 -0
- avibe_os-3.0.0a0/ui/node_modules/debug/README.md +481 -0
- avibe_os-3.0.0a0/ui/node_modules/deep-is/LICENSE +22 -0
- avibe_os-3.0.0a0/ui/node_modules/detect-libc/LICENSE +201 -0
- avibe_os-3.0.0a0/ui/node_modules/detect-libc/README.md +163 -0
- avibe_os-3.0.0a0/ui/node_modules/detect-node-es/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/electron-to-chromium/LICENSE +5 -0
- avibe_os-3.0.0a0/ui/node_modules/electron-to-chromium/README.md +186 -0
- avibe_os-3.0.0a0/ui/node_modules/enhanced-resolve/LICENSE +20 -0
- avibe_os-3.0.0a0/ui/node_modules/enhanced-resolve/README.md +186 -0
- avibe_os-3.0.0a0/ui/node_modules/esbuild/README.md +3 -0
- avibe_os-3.0.0a0/ui/node_modules/eslint/LICENSE +19 -0
- avibe_os-3.0.0a0/ui/node_modules/eslint/README.md +354 -0
- avibe_os-3.0.0a0/ui/node_modules/eslint-plugin-react-hooks/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/eslint-plugin-react-hooks/README.md +152 -0
- avibe_os-3.0.0a0/ui/node_modules/eslint-plugin-react-refresh/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/eslint-plugin-react-refresh/README.md +233 -0
- avibe_os-3.0.0a0/ui/node_modules/eslint-scope/LICENSE +22 -0
- avibe_os-3.0.0a0/ui/node_modules/eslint-scope/README.md +198 -0
- avibe_os-3.0.0a0/ui/node_modules/eslint-visitor-keys/LICENSE +201 -0
- avibe_os-3.0.0a0/ui/node_modules/eslint-visitor-keys/README.md +121 -0
- avibe_os-3.0.0a0/ui/node_modules/espree/LICENSE +25 -0
- avibe_os-3.0.0a0/ui/node_modules/espree/README.md +262 -0
- avibe_os-3.0.0a0/ui/node_modules/esquery/README.md +27 -0
- avibe_os-3.0.0a0/ui/node_modules/esrecurse/README.md +171 -0
- avibe_os-3.0.0a0/ui/node_modules/estraverse/README.md +153 -0
- avibe_os-3.0.0a0/ui/node_modules/esutils/README.md +174 -0
- avibe_os-3.0.0a0/ui/node_modules/extend/LICENSE +23 -0
- avibe_os-3.0.0a0/ui/node_modules/extend/README.md +81 -0
- avibe_os-3.0.0a0/ui/node_modules/fast-deep-equal/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/fast-deep-equal/README.md +96 -0
- avibe_os-3.0.0a0/ui/node_modules/fast-json-stable-stringify/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/fast-json-stable-stringify/README.md +131 -0
- avibe_os-3.0.0a0/ui/node_modules/fast-levenshtein/README.md +104 -0
- avibe_os-3.0.0a0/ui/node_modules/fdir/LICENSE +7 -0
- avibe_os-3.0.0a0/ui/node_modules/fdir/README.md +91 -0
- avibe_os-3.0.0a0/ui/node_modules/file-entry-cache/LICENSE +22 -0
- avibe_os-3.0.0a0/ui/node_modules/file-entry-cache/README.md +115 -0
- avibe_os-3.0.0a0/ui/node_modules/flat-cache/LICENSE +22 -0
- avibe_os-3.0.0a0/ui/node_modules/flat-cache/README.md +77 -0
- avibe_os-3.0.0a0/ui/node_modules/flatted/LICENSE +15 -0
- avibe_os-3.0.0a0/ui/node_modules/flatted/README.md +111 -0
- avibe_os-3.0.0a0/ui/node_modules/flatted/golang/README.md +60 -0
- avibe_os-3.0.0a0/ui/node_modules/fraction.js/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/fraction.js/README.md +520 -0
- avibe_os-3.0.0a0/ui/node_modules/framer-motion/README.md +142 -0
- avibe_os-3.0.0a0/ui/node_modules/framer-motion/client/README.md +1 -0
- avibe_os-3.0.0a0/ui/node_modules/framer-motion/dom/README.md +1 -0
- avibe_os-3.0.0a0/ui/node_modules/fsevents/LICENSE +22 -0
- avibe_os-3.0.0a0/ui/node_modules/fsevents/README.md +89 -0
- avibe_os-3.0.0a0/ui/node_modules/gensync/LICENSE +7 -0
- avibe_os-3.0.0a0/ui/node_modules/gensync/README.md +196 -0
- avibe_os-3.0.0a0/ui/node_modules/get-nonce/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/get-nonce/README.md +54 -0
- avibe_os-3.0.0a0/ui/node_modules/glob-parent/LICENSE +15 -0
- avibe_os-3.0.0a0/ui/node_modules/glob-parent/README.md +134 -0
- avibe_os-3.0.0a0/ui/node_modules/graceful-fs/LICENSE +15 -0
- avibe_os-3.0.0a0/ui/node_modules/graceful-fs/README.md +143 -0
- avibe_os-3.0.0a0/ui/node_modules/hermes-estree/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/hermes-estree/README.md +3 -0
- avibe_os-3.0.0a0/ui/node_modules/hermes-parser/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/hermes-parser/README.md +11 -0
- avibe_os-3.0.0a0/ui/node_modules/html-parse-stringify/README.md +154 -0
- avibe_os-3.0.0a0/ui/node_modules/i18next/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/i18next/README.md +61 -0
- avibe_os-3.0.0a0/ui/node_modules/i18next-browser-languagedetector/LICENSE +22 -0
- avibe_os-3.0.0a0/ui/node_modules/i18next-browser-languagedetector/README.md +167 -0
- avibe_os-3.0.0a0/ui/node_modules/ignore/README.md +412 -0
- avibe_os-3.0.0a0/ui/node_modules/imurmurhash/README.md +122 -0
- avibe_os-3.0.0a0/ui/node_modules/inline-style-parser/LICENSE +9 -0
- avibe_os-3.0.0a0/ui/node_modules/inline-style-parser/README.md +229 -0
- avibe_os-3.0.0a0/ui/node_modules/is-extglob/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/is-extglob/README.md +107 -0
- avibe_os-3.0.0a0/ui/node_modules/is-glob/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/is-glob/README.md +206 -0
- avibe_os-3.0.0a0/ui/node_modules/isexe/LICENSE +15 -0
- avibe_os-3.0.0a0/ui/node_modules/isexe/README.md +51 -0
- avibe_os-3.0.0a0/ui/node_modules/jiti/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/jiti/README.md +243 -0
- avibe_os-3.0.0a0/ui/node_modules/js-tokens/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/js-tokens/README.md +240 -0
- avibe_os-3.0.0a0/ui/node_modules/js-yaml/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/js-yaml/README.md +247 -0
- avibe_os-3.0.0a0/ui/node_modules/jsesc/README.md +422 -0
- avibe_os-3.0.0a0/ui/node_modules/json-buffer/LICENSE +22 -0
- avibe_os-3.0.0a0/ui/node_modules/json-buffer/README.md +24 -0
- avibe_os-3.0.0a0/ui/node_modules/json-schema-traverse/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/json-schema-traverse/README.md +83 -0
- avibe_os-3.0.0a0/ui/node_modules/json-stable-stringify-without-jsonify/LICENSE +18 -0
- avibe_os-3.0.0a0/ui/node_modules/json5/README.md +282 -0
- avibe_os-3.0.0a0/ui/node_modules/keyv/README.md +429 -0
- avibe_os-3.0.0a0/ui/node_modules/levn/LICENSE +22 -0
- avibe_os-3.0.0a0/ui/node_modules/levn/README.md +196 -0
- avibe_os-3.0.0a0/ui/node_modules/lightningcss/LICENSE +373 -0
- avibe_os-3.0.0a0/ui/node_modules/lightningcss/README.md +105 -0
- avibe_os-3.0.0a0/ui/node_modules/lightningcss-darwin-arm64/LICENSE +373 -0
- avibe_os-3.0.0a0/ui/node_modules/lightningcss-darwin-arm64/README.md +1 -0
- avibe_os-3.0.0a0/ui/node_modules/lodash.merge/LICENSE +47 -0
- avibe_os-3.0.0a0/ui/node_modules/lodash.merge/README.md +18 -0
- avibe_os-3.0.0a0/ui/node_modules/lru-cache/LICENSE +15 -0
- avibe_os-3.0.0a0/ui/node_modules/lru-cache/README.md +166 -0
- avibe_os-3.0.0a0/ui/node_modules/lucide-react/LICENSE +39 -0
- avibe_os-3.0.0a0/ui/node_modules/lucide-react/README.md +73 -0
- avibe_os-3.0.0a0/ui/node_modules/magic-string/LICENSE +7 -0
- avibe_os-3.0.0a0/ui/node_modules/magic-string/README.md +325 -0
- avibe_os-3.0.0a0/ui/node_modules/minimatch/LICENSE +15 -0
- avibe_os-3.0.0a0/ui/node_modules/minimatch/README.md +267 -0
- avibe_os-3.0.0a0/ui/node_modules/nanoid/LICENSE +20 -0
- avibe_os-3.0.0a0/ui/node_modules/nanoid/README.md +39 -0
- avibe_os-3.0.0a0/ui/node_modules/natural-compare/README.md +125 -0
- avibe_os-3.0.0a0/ui/node_modules/node-releases/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/node-releases/README.md +12 -0
- avibe_os-3.0.0a0/ui/node_modules/oniguruma-parser/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/oniguruma-parser/README.md +310 -0
- avibe_os-3.0.0a0/ui/node_modules/oniguruma-to-es/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/oniguruma-to-es/README.md +1110 -0
- avibe_os-3.0.0a0/ui/node_modules/optionator/LICENSE +22 -0
- avibe_os-3.0.0a0/ui/node_modules/optionator/README.md +238 -0
- avibe_os-3.0.0a0/ui/node_modules/papaparse/LICENSE +20 -0
- avibe_os-3.0.0a0/ui/node_modules/papaparse/README.md +77 -0
- avibe_os-3.0.0a0/ui/node_modules/parse-entities/node_modules/@types/unist/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/parse-entities/node_modules/@types/unist/README.md +122 -0
- avibe_os-3.0.0a0/ui/node_modules/picocolors/LICENSE +15 -0
- avibe_os-3.0.0a0/ui/node_modules/picocolors/README.md +21 -0
- avibe_os-3.0.0a0/ui/node_modules/picomatch/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/picomatch/README.md +749 -0
- avibe_os-3.0.0a0/ui/node_modules/postcss/LICENSE +20 -0
- avibe_os-3.0.0a0/ui/node_modules/postcss/README.md +29 -0
- avibe_os-3.0.0a0/ui/node_modules/postcss-value-parser/LICENSE +22 -0
- avibe_os-3.0.0a0/ui/node_modules/postcss-value-parser/README.md +263 -0
- avibe_os-3.0.0a0/ui/node_modules/prelude-ls/LICENSE +22 -0
- avibe_os-3.0.0a0/ui/node_modules/prelude-ls/README.md +15 -0
- avibe_os-3.0.0a0/ui/node_modules/punycode/README.md +148 -0
- avibe_os-3.0.0a0/ui/node_modules/qrcode.react/LICENSE +18 -0
- avibe_os-3.0.0a0/ui/node_modules/qrcode.react/README.md +341 -0
- avibe_os-3.0.0a0/ui/node_modules/react/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/react/README.md +37 -0
- avibe_os-3.0.0a0/ui/node_modules/react-dom/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/react-dom/README.md +60 -0
- avibe_os-3.0.0a0/ui/node_modules/react-i18next/LICENSE +22 -0
- avibe_os-3.0.0a0/ui/node_modules/react-i18next/README.md +180 -0
- avibe_os-3.0.0a0/ui/node_modules/react-refresh/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/react-refresh/README.md +5 -0
- avibe_os-3.0.0a0/ui/node_modules/react-remove-scroll/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/react-remove-scroll/README.md +153 -0
- avibe_os-3.0.0a0/ui/node_modules/react-remove-scroll-bar/README.md +52 -0
- avibe_os-3.0.0a0/ui/node_modules/react-router/README.md +7 -0
- avibe_os-3.0.0a0/ui/node_modules/react-router-dom/README.md +6 -0
- avibe_os-3.0.0a0/ui/node_modules/react-style-singleton/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/react-style-singleton/README.md +45 -0
- avibe_os-3.0.0a0/ui/node_modules/regex/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/regex/README.md +972 -0
- avibe_os-3.0.0a0/ui/node_modules/regex-recursion/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/regex-recursion/README.md +151 -0
- avibe_os-3.0.0a0/ui/node_modules/regex-utilities/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/regex-utilities/README.md +78 -0
- avibe_os-3.0.0a0/ui/node_modules/rollup/README.md +134 -0
- avibe_os-3.0.0a0/ui/node_modules/scheduler/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/scheduler/README.md +9 -0
- avibe_os-3.0.0a0/ui/node_modules/semver/LICENSE +15 -0
- avibe_os-3.0.0a0/ui/node_modules/semver/README.md +443 -0
- avibe_os-3.0.0a0/ui/node_modules/set-cookie-parser/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/set-cookie-parser/README.md +202 -0
- avibe_os-3.0.0a0/ui/node_modules/shiki/LICENSE +22 -0
- avibe_os-3.0.0a0/ui/node_modules/shiki/README.md +15 -0
- avibe_os-3.0.0a0/ui/node_modules/source-map-js/LICENSE +28 -0
- avibe_os-3.0.0a0/ui/node_modules/source-map-js/README.md +765 -0
- avibe_os-3.0.0a0/ui/node_modules/style-to-js/LICENSE +22 -0
- avibe_os-3.0.0a0/ui/node_modules/style-to-js/README.md +271 -0
- avibe_os-3.0.0a0/ui/node_modules/style-to-object/LICENSE +22 -0
- avibe_os-3.0.0a0/ui/node_modules/style-to-object/README.md +188 -0
- avibe_os-3.0.0a0/ui/node_modules/tailwind-merge/README.md +38 -0
- avibe_os-3.0.0a0/ui/node_modules/tailwindcss/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/tailwindcss/README.md +36 -0
- avibe_os-3.0.0a0/ui/node_modules/tapable/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/tapable/README.md +332 -0
- avibe_os-3.0.0a0/ui/node_modules/tinyglobby/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/tinyglobby/README.md +25 -0
- avibe_os-3.0.0a0/ui/node_modules/ts-api-utils/README.md +40 -0
- avibe_os-3.0.0a0/ui/node_modules/tslib/README.md +164 -0
- avibe_os-3.0.0a0/ui/node_modules/tw-animate-css/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/tw-animate-css/README.md +230 -0
- avibe_os-3.0.0a0/ui/node_modules/type-check/LICENSE +22 -0
- avibe_os-3.0.0a0/ui/node_modules/type-check/README.md +210 -0
- avibe_os-3.0.0a0/ui/node_modules/typescript/README.md +50 -0
- avibe_os-3.0.0a0/ui/node_modules/typescript-eslint/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/typescript-eslint/README.md +12 -0
- avibe_os-3.0.0a0/ui/node_modules/undici-types/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/undici-types/README.md +6 -0
- avibe_os-3.0.0a0/ui/node_modules/update-browserslist-db/LICENSE +20 -0
- avibe_os-3.0.0a0/ui/node_modules/update-browserslist-db/README.md +30 -0
- avibe_os-3.0.0a0/ui/node_modules/uri-js/LICENSE +11 -0
- avibe_os-3.0.0a0/ui/node_modules/uri-js/README.md +203 -0
- avibe_os-3.0.0a0/ui/node_modules/use-callback-ref/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/use-callback-ref/README.md +170 -0
- avibe_os-3.0.0a0/ui/node_modules/use-sidecar/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/use-sidecar/README.md +349 -0
- avibe_os-3.0.0a0/ui/node_modules/use-sync-external-store/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/use-sync-external-store/README.md +5 -0
- avibe_os-3.0.0a0/ui/node_modules/vite/README.md +20 -0
- avibe_os-3.0.0a0/ui/node_modules/void-elements/LICENSE +22 -0
- avibe_os-3.0.0a0/ui/node_modules/void-elements/README.md +27 -0
- avibe_os-3.0.0a0/ui/node_modules/which/LICENSE +15 -0
- avibe_os-3.0.0a0/ui/node_modules/which/README.md +54 -0
- avibe_os-3.0.0a0/ui/node_modules/word-wrap/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/word-wrap/README.md +201 -0
- avibe_os-3.0.0a0/ui/node_modules/yallist/LICENSE +15 -0
- avibe_os-3.0.0a0/ui/node_modules/yallist/README.md +204 -0
- avibe_os-3.0.0a0/ui/node_modules/zod/LICENSE +21 -0
- avibe_os-3.0.0a0/ui/node_modules/zod/README.md +208 -0
- avibe_os-3.0.0a0/ui/node_modules/zod-validation-error/LICENSE +9 -0
- avibe_os-3.0.0a0/ui/node_modules/zod-validation-error/README.md +504 -0
- avibe_os-3.0.0a0/vibe/__init__.py +6 -0
- avibe_os-3.0.0a0/vibe/__main__.py +12 -0
- avibe_os-3.0.0a0/vibe/_version.py +24 -0
- avibe_os-3.0.0a0/vibe/api.py +6556 -0
- avibe_os-3.0.0a0/vibe/async_bridge.py +28 -0
- avibe_os-3.0.0a0/vibe/claude_config.py +375 -0
- avibe_os-3.0.0a0/vibe/claude_model_catalog.py +113 -0
- avibe_os-3.0.0a0/vibe/cli.py +6315 -0
- avibe_os-3.0.0a0/vibe/codex_config.py +612 -0
- avibe_os-3.0.0a0/vibe/data/claude_models.json +27 -0
- avibe_os-3.0.0a0/vibe/global_agents_md.py +156 -0
- avibe_os-3.0.0a0/vibe/i18n/__init__.py +135 -0
- avibe_os-3.0.0a0/vibe/i18n/en.json +375 -0
- avibe_os-3.0.0a0/vibe/i18n/zh.json +375 -0
- avibe_os-3.0.0a0/vibe/inbox_bridge.py +60 -0
- avibe_os-3.0.0a0/vibe/internal_client.py +319 -0
- avibe_os-3.0.0a0/vibe/opencode_config.py +1074 -0
- avibe_os-3.0.0a0/vibe/project_agents_md.py +120 -0
- avibe_os-3.0.0a0/vibe/proxy.py +110 -0
- avibe_os-3.0.0a0/vibe/remote_access.py +859 -0
- avibe_os-3.0.0a0/vibe/restart_supervisor.py +257 -0
- avibe_os-3.0.0a0/vibe/runtime.py +865 -0
- avibe_os-3.0.0a0/vibe/screenshot.py +181 -0
- avibe_os-3.0.0a0/vibe/sentry_integration.py +482 -0
- avibe_os-3.0.0a0/vibe/show_runtime/.gitkeep +0 -0
- avibe_os-3.0.0a0/vibe/sse_broker.py +104 -0
- avibe_os-3.0.0a0/vibe/templates/slack_manifest.json +65 -0
- avibe_os-3.0.0a0/vibe/ui_compat.py +521 -0
- avibe_os-3.0.0a0/vibe/ui_server.py +6156 -0
- avibe_os-3.0.0a0/vibe/upgrade.py +412 -0
|
@@ -0,0 +1,181 @@
|
|
|
1
|
+
# Byte-compiled / optimized / DLL files
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*$py.class
|
|
5
|
+
|
|
6
|
+
# C extensions
|
|
7
|
+
*.so
|
|
8
|
+
|
|
9
|
+
# Distribution / packaging
|
|
10
|
+
.Python
|
|
11
|
+
build/
|
|
12
|
+
develop-eggs/
|
|
13
|
+
dist/
|
|
14
|
+
downloads/
|
|
15
|
+
eggs/
|
|
16
|
+
.eggs/
|
|
17
|
+
/lib/
|
|
18
|
+
lib64/
|
|
19
|
+
parts/
|
|
20
|
+
sdist/
|
|
21
|
+
var/
|
|
22
|
+
wheels/
|
|
23
|
+
share/python-wheels/
|
|
24
|
+
*.egg-info/
|
|
25
|
+
.installed.cfg
|
|
26
|
+
*.egg
|
|
27
|
+
MANIFEST
|
|
28
|
+
|
|
29
|
+
# PyInstaller
|
|
30
|
+
*.manifest
|
|
31
|
+
*.spec
|
|
32
|
+
|
|
33
|
+
# Installer logs
|
|
34
|
+
pip-log.txt
|
|
35
|
+
pip-delete-this-directory.txt
|
|
36
|
+
|
|
37
|
+
# Unit test / coverage reports
|
|
38
|
+
htmlcov/
|
|
39
|
+
.tox/
|
|
40
|
+
.nox/
|
|
41
|
+
.coverage
|
|
42
|
+
.coverage.*
|
|
43
|
+
.cache
|
|
44
|
+
nosetests.xml
|
|
45
|
+
coverage.xml
|
|
46
|
+
*.cover
|
|
47
|
+
*.py,cover
|
|
48
|
+
.hypothesis/
|
|
49
|
+
.pytest_cache/
|
|
50
|
+
cover/
|
|
51
|
+
|
|
52
|
+
# Translations
|
|
53
|
+
*.mo
|
|
54
|
+
*.pot
|
|
55
|
+
|
|
56
|
+
# Django stuff:
|
|
57
|
+
*.log
|
|
58
|
+
local_settings.py
|
|
59
|
+
db.sqlite3
|
|
60
|
+
db.sqlite3-journal
|
|
61
|
+
|
|
62
|
+
# Flask stuff:
|
|
63
|
+
instance/
|
|
64
|
+
.webassets-cache
|
|
65
|
+
|
|
66
|
+
# Scrapy stuff:
|
|
67
|
+
.scrapy
|
|
68
|
+
|
|
69
|
+
# Sphinx documentation
|
|
70
|
+
docs/_build/
|
|
71
|
+
|
|
72
|
+
# PyBuilder
|
|
73
|
+
.pybuilder/
|
|
74
|
+
target/
|
|
75
|
+
|
|
76
|
+
# Jupyter Notebook
|
|
77
|
+
.ipynb_checkpoints
|
|
78
|
+
|
|
79
|
+
# IPython
|
|
80
|
+
profile_default/
|
|
81
|
+
ipython_config.py
|
|
82
|
+
|
|
83
|
+
# pyenv
|
|
84
|
+
.python-version
|
|
85
|
+
|
|
86
|
+
# pipenv
|
|
87
|
+
Pipfile.lock
|
|
88
|
+
|
|
89
|
+
# poetry
|
|
90
|
+
poetry.lock
|
|
91
|
+
|
|
92
|
+
# pdm
|
|
93
|
+
.pdm.toml
|
|
94
|
+
|
|
95
|
+
# PEP 582
|
|
96
|
+
__pypackages__/
|
|
97
|
+
|
|
98
|
+
# Celery stuff
|
|
99
|
+
celerybeat-schedule
|
|
100
|
+
celerybeat.pid
|
|
101
|
+
|
|
102
|
+
# SageMath parsed files
|
|
103
|
+
*.sage.py
|
|
104
|
+
|
|
105
|
+
# Environments
|
|
106
|
+
.env
|
|
107
|
+
.env.e2e
|
|
108
|
+
.env.three-regression
|
|
109
|
+
.env.*.local
|
|
110
|
+
.venv
|
|
111
|
+
env/
|
|
112
|
+
venv/
|
|
113
|
+
ENV/
|
|
114
|
+
env.bak/
|
|
115
|
+
venv.bak/
|
|
116
|
+
|
|
117
|
+
# Spyder project settings
|
|
118
|
+
.spyderproject
|
|
119
|
+
.spyproject
|
|
120
|
+
|
|
121
|
+
# Rope project settings
|
|
122
|
+
.ropeproject
|
|
123
|
+
|
|
124
|
+
# mkdocs documentation
|
|
125
|
+
/site
|
|
126
|
+
|
|
127
|
+
# mypy
|
|
128
|
+
.mypy_cache/
|
|
129
|
+
.dmypy.json
|
|
130
|
+
dmypy.json
|
|
131
|
+
|
|
132
|
+
# Pyre type checker
|
|
133
|
+
.pyre/
|
|
134
|
+
|
|
135
|
+
# pytype static type analyzer
|
|
136
|
+
.pytype/
|
|
137
|
+
|
|
138
|
+
# Cython debug symbols
|
|
139
|
+
cython_debug/
|
|
140
|
+
|
|
141
|
+
# PyCharm
|
|
142
|
+
.idea/
|
|
143
|
+
|
|
144
|
+
# VSCode
|
|
145
|
+
.vscode/
|
|
146
|
+
|
|
147
|
+
# Project specific
|
|
148
|
+
*.log
|
|
149
|
+
claude_proxy.log
|
|
150
|
+
demolog.log
|
|
151
|
+
_tmp/
|
|
152
|
+
.runtime/
|
|
153
|
+
.DS_Store
|
|
154
|
+
logs/
|
|
155
|
+
.vibe_remote/
|
|
156
|
+
ui/node_modules/
|
|
157
|
+
ui/dist/
|
|
158
|
+
ui/.vite/
|
|
159
|
+
vibe/show_runtime/*.tgz
|
|
160
|
+
tmp/
|
|
161
|
+
.bot.pid
|
|
162
|
+
user_settings.json
|
|
163
|
+
vibe/_version.py
|
|
164
|
+
|
|
165
|
+
# Config files with secrets
|
|
166
|
+
config/secrets.py
|
|
167
|
+
config/local_settings.py
|
|
168
|
+
|
|
169
|
+
# Session data
|
|
170
|
+
sessions/
|
|
171
|
+
*.session
|
|
172
|
+
|
|
173
|
+
# Temporary files
|
|
174
|
+
*.tmp
|
|
175
|
+
*.bak
|
|
176
|
+
*.swp
|
|
177
|
+
*~
|
|
178
|
+
|
|
179
|
+
# Worktrees
|
|
180
|
+
.worktrees/
|
|
181
|
+
.gstack/
|
avibe_os-3.0.0a0/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 The Vibe Remote Authors
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,481 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: avibe-os
|
|
3
|
+
Version: 3.0.0a0
|
|
4
|
+
Summary: Local-first Agent OS for Web and IM agent workflows
|
|
5
|
+
Project-URL: Homepage, https://github.com/avibe-bot/avibe
|
|
6
|
+
Project-URL: Repository, https://github.com/avibe-bot/avibe
|
|
7
|
+
Project-URL: Documentation, https://github.com/avibe-bot/avibe#readme
|
|
8
|
+
Project-URL: Issues, https://github.com/avibe-bot/avibe/issues
|
|
9
|
+
Author-email: cyhhao <cyhhao@users.noreply.github.com>
|
|
10
|
+
License-Expression: MIT
|
|
11
|
+
License-File: LICENSE
|
|
12
|
+
Keywords: agent,agent-os,ai,automation,chatops,claude-code,codex,discord,feishu,lark,opencode,slack,telegram,vibe-coding,wechat
|
|
13
|
+
Classifier: Development Status :: 4 - Beta
|
|
14
|
+
Classifier: Environment :: Console
|
|
15
|
+
Classifier: Intended Audience :: Developers
|
|
16
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
17
|
+
Classifier: Operating System :: OS Independent
|
|
18
|
+
Classifier: Programming Language :: Python :: 3
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
22
|
+
Classifier: Topic :: Communications :: Chat
|
|
23
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
24
|
+
Requires-Python: >=3.10
|
|
25
|
+
Requires-Dist: aiohttp-socks>=0.8.0
|
|
26
|
+
Requires-Dist: aiohttp>=3.8.0
|
|
27
|
+
Requires-Dist: alembic>=1.13.0
|
|
28
|
+
Requires-Dist: anyio>=4.0.0
|
|
29
|
+
Requires-Dist: apscheduler>=3.10.4
|
|
30
|
+
Requires-Dist: claude-agent-sdk>=0.1.66
|
|
31
|
+
Requires-Dist: discord-py>=2.4.0
|
|
32
|
+
Requires-Dist: fastapi>=0.110
|
|
33
|
+
Requires-Dist: httpx[socks]>=0.27
|
|
34
|
+
Requires-Dist: imagesize>=1.4.1
|
|
35
|
+
Requires-Dist: lark-oapi>=1.4.0
|
|
36
|
+
Requires-Dist: markdown-to-mrkdwn>=0.2.0
|
|
37
|
+
Requires-Dist: packaging>=23.0
|
|
38
|
+
Requires-Dist: psutil>=5.9.0
|
|
39
|
+
Requires-Dist: pyjwt[crypto]>=2.9.0
|
|
40
|
+
Requires-Dist: python-multipart>=0.0.9
|
|
41
|
+
Requires-Dist: python-socks[asyncio]>=2.0.0
|
|
42
|
+
Requires-Dist: pywebpush>=2.0.3
|
|
43
|
+
Requires-Dist: pyyaml>=6.0
|
|
44
|
+
Requires-Dist: requests>=2.31.0
|
|
45
|
+
Requires-Dist: sentry-sdk>=2.0.0
|
|
46
|
+
Requires-Dist: slack-sdk>=3.26.0
|
|
47
|
+
Requires-Dist: sqlalchemy>=2.0.0
|
|
48
|
+
Requires-Dist: tomli>=2.0.1; python_version < '3.11'
|
|
49
|
+
Requires-Dist: typing-extensions>=4.12.2
|
|
50
|
+
Requires-Dist: uvicorn[standard]>=0.27
|
|
51
|
+
Description-Content-Type: text/markdown
|
|
52
|
+
|
|
53
|
+
<div align="center">
|
|
54
|
+
|
|
55
|
+
<img src="assets/logo.png" alt="Vibe Remote" width="120"/>
|
|
56
|
+
|
|
57
|
+
# Vibe Remote
|
|
58
|
+
|
|
59
|
+
### Your AI colleagues, present in Slack, Discord, Telegram, WeChat & Lark.
|
|
60
|
+
|
|
61
|
+
**No laptop. No IDE. Just vibes.**
|
|
62
|
+
|
|
63
|
+
[](https://github.com/cyhhao/vibe-remote/stargazers)
|
|
64
|
+
[](https://www.python.org/)
|
|
65
|
+
[](LICENSE)
|
|
66
|
+
|
|
67
|
+
<a href="https://www.producthunt.com/products/vibe-remote?embed=true&utm_source=badge-featured&utm_medium=badge&utm_campaign=badge-vibe-remote" target="_blank" rel="noopener noreferrer"><img alt="Vibe Remote - Code from your phone — AI agents in your chat app | Product Hunt" width="250" height="54" src="https://api.producthunt.com/widgets/embed-image/v1/featured.svg?post_id=1104967&theme=light&t=1774450119248"></a>
|
|
68
|
+
|
|
69
|
+
[Docs](https://docs.avibe.bot) | [English](README.md) | [中文](README_ZH.md)
|
|
70
|
+
|
|
71
|
+
**Supported Platforms**
|
|
72
|
+
|
|
73
|
+

|
|
74
|
+

|
|
75
|
+

|
|
76
|
+

|
|
77
|
+

|
|
78
|
+
|
|
79
|
+
**Supported Agents**
|
|
80
|
+
|
|
81
|
+

|
|
82
|
+

|
|
83
|
+

|
|
84
|
+
|
|
85
|
+
---
|
|
86
|
+
|
|
87
|
+

|
|
88
|
+
|
|
89
|
+
</div>
|
|
90
|
+
|
|
91
|
+
## The Pitch
|
|
92
|
+
|
|
93
|
+
You're at the beach. Phone buzzes — production's on fire.
|
|
94
|
+
|
|
95
|
+
**Old you:** Panic. Find WiFi. Open laptop. Wait for IDE. Lose your tan.
|
|
96
|
+
|
|
97
|
+
**Vibe Remote you:** Open Slack, Discord, Telegram, or WeChat. Type "Fix the auth bug in login.py". Watch Claude Code fix it in real-time. Approve. Sip margarita.
|
|
98
|
+
|
|
99
|
+
```
|
|
100
|
+
AI works. You live.
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
---
|
|
104
|
+
|
|
105
|
+
## Install in 10 Seconds
|
|
106
|
+
|
|
107
|
+
```bash
|
|
108
|
+
curl -fsSL https://avibe.bot/install.sh | bash && vibe
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
Open source — view the [script on GitHub](https://github.com/cyhhao/vibe-remote/blob/master/install.sh). The short URL is a 307 redirect to that file.
|
|
112
|
+
|
|
113
|
+
That's it. Browser opens -> Follow the wizard -> Done.
|
|
114
|
+
|
|
115
|
+
Need to open the Web UI from another device or a remote server? Run:
|
|
116
|
+
|
|
117
|
+
```bash
|
|
118
|
+
vibe remote
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
<details>
|
|
122
|
+
<summary><b>Windows?</b></summary>
|
|
123
|
+
|
|
124
|
+
We recommend the WSL setup on Windows because it has the best compatibility.
|
|
125
|
+
|
|
126
|
+
- Recommended: [Run Vibe Remote with WSL from Scratch](docs/WINDOWS_WSL.md)
|
|
127
|
+
|
|
128
|
+
If you are new to WSL, this guide explains:
|
|
129
|
+
- where to install WSL
|
|
130
|
+
- which terminal window to use
|
|
131
|
+
- where to run the Vibe Remote install command
|
|
132
|
+
- how to launch Ubuntu and open the Web UI
|
|
133
|
+
</details>
|
|
134
|
+
|
|
135
|
+
---
|
|
136
|
+
|
|
137
|
+
## What Ships Today
|
|
138
|
+
|
|
139
|
+
Not an agent framework. Not a hosted coding VM. Vibe Remote is the local-first way to bring the AI agents already running on your machine into the chat apps where you already collaborate.
|
|
140
|
+
|
|
141
|
+
- **Chat apps become collaboration spaces:** Slack, Discord, Telegram, WeChat, and Lark / Feishu.
|
|
142
|
+
- **Real agents, no middleman:** Today's first-class backends are Claude Code, OpenCode, and Codex.
|
|
143
|
+
- **Thread = session:** Start five threads, run five isolated agent jobs, resume later.
|
|
144
|
+
- **Web setup, not token archaeology:** Local wizard, dashboard, routing, and health checks.
|
|
145
|
+
- **Remote UI when you need it:** `vibe remote` opens your local Web UI through a secure avibe.bot tunnel.
|
|
146
|
+
- **Walk away without losing the loop:** Completion notifications and the Agent Harness keep work moving while you live your life.
|
|
147
|
+
|
|
148
|
+
---
|
|
149
|
+
|
|
150
|
+
## Why This Exists
|
|
151
|
+
|
|
152
|
+
| Problem | Solution |
|
|
153
|
+
|---------|----------|
|
|
154
|
+
| Claude Code is amazing but lives in a terminal | Slack/Discord/Telegram/WeChat/Lark can become the collaboration surface |
|
|
155
|
+
| Context-switching kills flow | Stay in one app |
|
|
156
|
+
| Start on desktop, continue on phone | Resume the exact agent session from the current project in seconds |
|
|
157
|
+
| Can't code from phone | Yes you can |
|
|
158
|
+
| Multiple agents, multiple setups | One chat app, any agent |
|
|
159
|
+
|
|
160
|
+
**Supported Agents:**
|
|
161
|
+
- [Claude Code](https://docs.anthropic.com/en/docs/claude-code) — Deep reasoning, complex refactors
|
|
162
|
+
- [OpenCode](https://opencode.ai) — Fast, extensible, community favorite
|
|
163
|
+
- [Codex](https://github.com/openai/codex) — OpenAI's coding model
|
|
164
|
+
|
|
165
|
+
---
|
|
166
|
+
|
|
167
|
+
## Meet Vibey
|
|
168
|
+
|
|
169
|
+
<div align="center">
|
|
170
|
+
<img src="assets/mascot/cloud-tuanzi.png" alt="Vibey — the gaseous consciousness inside Vibe Remote" width="220"/>
|
|
171
|
+
</div>
|
|
172
|
+
|
|
173
|
+
Lives in your Slack, Discord, Telegram, Lark, or WeChat. Reads the room. Picks up where you left off. Asks the right question when it's not sure. Goes quiet when you're heads-down. Ships at 2am because that's when the vibe hits — then leaves a note about what it touched.
|
|
174
|
+
|
|
175
|
+
> Vibe Remote is the wire. Vibey is the colleague on the other end.
|
|
176
|
+
|
|
177
|
+
Forgets nothing. Holds opinions. Says thanks when you fix its bugs.
|
|
178
|
+
|
|
179
|
+
---
|
|
180
|
+
|
|
181
|
+
## Why Vibe Remote over OpenClaw?
|
|
182
|
+
|
|
183
|
+
| | Vibe Remote | OpenClaw |
|
|
184
|
+
|---|---|---|
|
|
185
|
+
| **Setup** | One command + web wizard. Done in 2 minutes. | Gateway + channels + JSON config. Expect an afternoon. |
|
|
186
|
+
| **Security** | Local-first. Socket Mode / WebSocket only. No public endpoints, no inbound ports, minimal attack surface. | Gateway exposes ports. More moving parts, more attack surface. |
|
|
187
|
+
| **Token cost** | No extra reasoning loop in the middleware. Tokens go to your chosen agent, not to a second assistant layer. | Every message carries a long system context for maintaining agent persona, IM tooling, and orchestration plumbing. Tokens burn on overhead before your actual task even starts. |
|
|
188
|
+
|
|
189
|
+
OpenClaw is a personal AI assistant — great for casual chat, but its always-on agent loop makes it expensive for real productivity workloads. Vibe Remote is not an agent framework. It is a **local-first collaboration runtime** for the AI agents you already trust: the agent stays itself, your data stays local, and the colleague experience comes from putting the agent into the same communication flow where human work already happens. Coding is the first strong workload, not the product boundary. Every token goes straight to your task.
|
|
190
|
+
|
|
191
|
+
---
|
|
192
|
+
|
|
193
|
+
## Highlights
|
|
194
|
+
|
|
195
|
+
<table>
|
|
196
|
+
<tr>
|
|
197
|
+
<td width="33%">
|
|
198
|
+
|
|
199
|
+
### Setup Wizard
|
|
200
|
+
|
|
201
|
+
One-command install, guided configuration. No manual token juggling.
|
|
202
|
+
|
|
203
|
+

|
|
204
|
+
|
|
205
|
+
</td>
|
|
206
|
+
<td width="33%">
|
|
207
|
+
|
|
208
|
+
### Dashboard
|
|
209
|
+
|
|
210
|
+
Real-time status, health monitoring, and quick controls.
|
|
211
|
+
|
|
212
|
+

|
|
213
|
+
|
|
214
|
+
</td>
|
|
215
|
+
<td width="33%">
|
|
216
|
+
|
|
217
|
+
### Channel Routing
|
|
218
|
+
|
|
219
|
+
Per-channel agent configuration. Different projects, different agents.
|
|
220
|
+
|
|
221
|
+

|
|
222
|
+
|
|
223
|
+
</td>
|
|
224
|
+
</tr>
|
|
225
|
+
</table>
|
|
226
|
+
|
|
227
|
+
### Instant Notifications
|
|
228
|
+
|
|
229
|
+
Get notified the moment your AI finishes. Like assigning tasks to employees — delegate, go do something else, and come back when the work is done. No need to babysit.
|
|
230
|
+
|
|
231
|
+
### Thread = Session
|
|
232
|
+
|
|
233
|
+
Each Slack/Discord/Telegram/WeChat/Lark chat scope is an isolated workspace. Open 5 chats, run 5 parallel tasks. Context stays separate.
|
|
234
|
+
|
|
235
|
+
### Resume Anywhere
|
|
236
|
+
|
|
237
|
+
Laptop closed. Commute started. Production still needs you.
|
|
238
|
+
|
|
239
|
+
Vibe Remote lets you reopen real agent sessions from your current working directory across Claude Code, OpenCode, and Codex. Pick the latest session, jump from desktop to mobile, and keep going without re-explaining the task, hunting for an old thread, or losing the thread of thought.
|
|
240
|
+
|
|
241
|
+
### Interactive Prompts
|
|
242
|
+
|
|
243
|
+
When your agent needs input — file selection, confirmation, options — your chat app pops up buttons or a modal. Full CLI interactivity, zero terminal required.
|
|
244
|
+
|
|
245
|
+

|
|
246
|
+
|
|
247
|
+
---
|
|
248
|
+
|
|
249
|
+
## Harness
|
|
250
|
+
|
|
251
|
+
Vibe Remote gives agents a real harness: a small set of durable tools they can combine to work on their own timeline, more like a colleague than a command you have to babysit.
|
|
252
|
+
|
|
253
|
+
Think of it like giving your AI colleague a task board, a calendar, and a notification center:
|
|
254
|
+
|
|
255
|
+
- `vibe agent run` starts one concrete Agent Run. It can be synchronous when you want an answer now, or async when the agent should keep working in the background.
|
|
256
|
+
- `vibe task` saves time-based work: "run this every morning", "remind me tonight", "check this once after lunch".
|
|
257
|
+
- `vibe watch` waits for the world to change: a PR review, CI result, deployment, file, log line, or long-running process.
|
|
258
|
+
- `vibe runs` lets the agent inspect what happened, continue from a run, or cancel work when the situation changes.
|
|
259
|
+
|
|
260
|
+
The important part is that you do not have to memorize all of that. Agents can learn these primitives and use them as building blocks.
|
|
261
|
+
|
|
262
|
+
Ask in normal language:
|
|
263
|
+
|
|
264
|
+
- "Watch this PR and come back when there is actionable review feedback."
|
|
265
|
+
- "Run this deployment check every weekday morning and post the summary here."
|
|
266
|
+
- "Start a separate investigation session for this incident, but report the conclusion to this channel."
|
|
267
|
+
- "Kick off three background checks and keep track of their run IDs."
|
|
268
|
+
- "If CI fails, summarize the logs; if it passes, tell me whether the PR is mergeable."
|
|
269
|
+
|
|
270
|
+
That is the Harness: the agent can leave the current chat turn, wait, return, branch, retry, and keep records without inventing fragile shell scripts or making you poll manually.
|
|
271
|
+
|
|
272
|
+
---
|
|
273
|
+
|
|
274
|
+
## 📡 Your Machine, In Your Pocket — Powered by avibe.bot
|
|
275
|
+
|
|
276
|
+
Your Vibe Remote runs on your machine. You don't sit in front of it 24/7.
|
|
277
|
+
|
|
278
|
+
You're on a plane. At a café. Holding someone else's borrowed laptop. The bot just pinged you that a job needs attention — and the control panel is back home.
|
|
279
|
+
|
|
280
|
+
```bash
|
|
281
|
+
vibe remote
|
|
282
|
+
```
|
|
283
|
+
|
|
284
|
+
One command. Your local Web UI becomes reachable from any browser on Earth — through a secure avibe.bot tunnel.
|
|
285
|
+
|
|
286
|
+
- 🌍 **Your own `you-app.avibe.bot`** — 30-second sign-in, your slug for life
|
|
287
|
+
- 🔒 **Fail-closed at every join** — Auth, routing, host checks default to "deny"
|
|
288
|
+
- 📱 **Mobile-aware UI** — Thumb-friendly layout, designed for borrowed screens
|
|
289
|
+
- ⏱ **24-hour sessions** — Cookie auto-renews mid-session, no sudden logouts
|
|
290
|
+
|
|
291
|
+
No VPN. No port forwarding. No "wait what's my IP again." No public webhooks pointed at your laptop. **Your data plane stays on your machine**; avibe.bot is just the control-plane handshake.
|
|
292
|
+
|
|
293
|
+
> Your agents work on your machine. You command them from your pocket.
|
|
294
|
+
|
|
295
|
+
→ [Set it up in 60 seconds](docs/CLI.md)
|
|
296
|
+
|
|
297
|
+
---
|
|
298
|
+
|
|
299
|
+
## How It Works
|
|
300
|
+
|
|
301
|
+
```
|
|
302
|
+
┌──────────────┐ ┌──────────────┐ ┌──────────────┐
|
|
303
|
+
│ You │ Slack │ │ stdio │ Claude Code │
|
|
304
|
+
│ (anywhere) │ Discord │ Vibe Remote │ ──────────▶ │ OpenCode │
|
|
305
|
+
│ │ Telegram │ (your host) │ ◀────────── │ Codex │
|
|
306
|
+
│ │ WeChat │ │ │ │
|
|
307
|
+
│ │ Lark │ │ │ │
|
|
308
|
+
└──────────────┘ └──────────────┘ └──────────────┘
|
|
309
|
+
```
|
|
310
|
+
|
|
311
|
+
1. **You type** in Slack/Discord/Telegram/WeChat/Lark: *"Add dark mode to the settings page"*
|
|
312
|
+
2. **Vibe Remote** routes to your configured agent
|
|
313
|
+
3. **Agent** reads your codebase, writes code, streams back
|
|
314
|
+
4. **You review** in your chat app, iterate in thread
|
|
315
|
+
|
|
316
|
+
**Your data never leaves your machine.** Vibe Remote runs locally and connects via Slack Socket Mode, Discord Gateway, Telegram Bot API long polling, WeChat polling, or Lark WebSocket.
|
|
317
|
+
|
|
318
|
+
---
|
|
319
|
+
|
|
320
|
+
## Commands
|
|
321
|
+
|
|
322
|
+
| In chat | What it does |
|
|
323
|
+
|----------|--------------|
|
|
324
|
+
| `@Vibe Remote /start` | Open control panel |
|
|
325
|
+
| `/stop` | Kill current session |
|
|
326
|
+
| Just type | Talk to your agent |
|
|
327
|
+
| Reply in thread | Continue conversation |
|
|
328
|
+
|
|
329
|
+
**Pro tip:** Each thread = isolated session. Start multiple threads for parallel tasks.
|
|
330
|
+
|
|
331
|
+
Detailed references:
|
|
332
|
+
|
|
333
|
+
- [Full Command Reference](docs/COMMANDS.md)
|
|
334
|
+
- [CLI Reference](docs/CLI.md)
|
|
335
|
+
|
|
336
|
+
---
|
|
337
|
+
|
|
338
|
+
## Instant Agent Switching
|
|
339
|
+
|
|
340
|
+
Need a different agent mid-conversation? Just prefix your message:
|
|
341
|
+
|
|
342
|
+
```
|
|
343
|
+
Plan: Design a new caching layer for the API
|
|
344
|
+
```
|
|
345
|
+
|
|
346
|
+
That's it. No menus, no commands. Type `AgentName:` and your message routes to that agent instantly.
|
|
347
|
+
|
|
348
|
+
---
|
|
349
|
+
|
|
350
|
+
## Per-Channel Routing
|
|
351
|
+
|
|
352
|
+
Different projects, different agents:
|
|
353
|
+
|
|
354
|
+
```
|
|
355
|
+
#frontend → OpenCode (fast iteration)
|
|
356
|
+
#backend → Claude Code (complex logic)
|
|
357
|
+
#prototypes → Codex (quick experiments)
|
|
358
|
+
```
|
|
359
|
+
|
|
360
|
+
Configure in web UI → Channels.
|
|
361
|
+
|
|
362
|
+
---
|
|
363
|
+
|
|
364
|
+
## CLI
|
|
365
|
+
|
|
366
|
+
```bash
|
|
367
|
+
vibe # Start everything
|
|
368
|
+
vibe status # Check if running
|
|
369
|
+
vibe stop # Stop everything
|
|
370
|
+
vibe doctor # Diagnose issues
|
|
371
|
+
vibe task # Create and manage scheduled tasks
|
|
372
|
+
vibe watch # Manage background waiters
|
|
373
|
+
vibe agent # Manage and run Vibe Agents
|
|
374
|
+
vibe runs # Inspect Agent Run records
|
|
375
|
+
```
|
|
376
|
+
|
|
377
|
+
Detailed references:
|
|
378
|
+
|
|
379
|
+
- [Full Command Reference](docs/COMMANDS.md)
|
|
380
|
+
- [CLI Reference](docs/CLI.md)
|
|
381
|
+
|
|
382
|
+
---
|
|
383
|
+
|
|
384
|
+
## Prerequisites
|
|
385
|
+
|
|
386
|
+
You need at least one coding agent installed:
|
|
387
|
+
|
|
388
|
+
<details>
|
|
389
|
+
<summary><b>OpenCode</b> (Recommended)</summary>
|
|
390
|
+
|
|
391
|
+
```bash
|
|
392
|
+
curl -fsSL https://opencode.ai/install | bash
|
|
393
|
+
```
|
|
394
|
+
|
|
395
|
+
**Required:** Add to `~/.config/opencode/opencode.json` to skip permission prompts:
|
|
396
|
+
|
|
397
|
+
```json
|
|
398
|
+
{
|
|
399
|
+
"permission": "allow"
|
|
400
|
+
}
|
|
401
|
+
```
|
|
402
|
+
</details>
|
|
403
|
+
|
|
404
|
+
<details>
|
|
405
|
+
<summary><b>Claude Code</b></summary>
|
|
406
|
+
|
|
407
|
+
```bash
|
|
408
|
+
npm install -g @anthropic-ai/claude-code
|
|
409
|
+
```
|
|
410
|
+
</details>
|
|
411
|
+
|
|
412
|
+
<details>
|
|
413
|
+
<summary><b>Codex</b></summary>
|
|
414
|
+
|
|
415
|
+
```bash
|
|
416
|
+
npm install -g @openai/codex
|
|
417
|
+
```
|
|
418
|
+
</details>
|
|
419
|
+
|
|
420
|
+
---
|
|
421
|
+
|
|
422
|
+
## Security
|
|
423
|
+
|
|
424
|
+
- **Local-first** — Vibe Remote runs on your machine
|
|
425
|
+
- **Socket Mode / WebSocket** — No public URLs, no webhooks
|
|
426
|
+
- **Your tokens** — Stored in `~/.vibe_remote/`, never uploaded
|
|
427
|
+
- **Your data** — Stays on your disk, sent only to your chosen AI provider
|
|
428
|
+
|
|
429
|
+
---
|
|
430
|
+
|
|
431
|
+
## Uninstall
|
|
432
|
+
|
|
433
|
+
```bash
|
|
434
|
+
vibe stop && uv tool uninstall vibe-remote && rm -rf ~/.vibe_remote
|
|
435
|
+
```
|
|
436
|
+
|
|
437
|
+
---
|
|
438
|
+
|
|
439
|
+
## Roadmap
|
|
440
|
+
|
|
441
|
+
- [x] Slack support
|
|
442
|
+
- [x] Discord support
|
|
443
|
+
- [x] Telegram support
|
|
444
|
+
- [x] WeChat support
|
|
445
|
+
- [x] Lark (Feishu) support
|
|
446
|
+
- [x] Web UI setup wizard & dashboard
|
|
447
|
+
- [x] Per-channel agent routing
|
|
448
|
+
- [x] Interactive prompts (buttons, modals)
|
|
449
|
+
- [x] File attachments
|
|
450
|
+
- [ ] SaaS Mode
|
|
451
|
+
- [ ] Vibe Remote Coding Agent (one agent to rule them all)
|
|
452
|
+
- [ ] Skills Manager
|
|
453
|
+
- [ ] Best practices & multi-workspace guide
|
|
454
|
+
|
|
455
|
+
---
|
|
456
|
+
|
|
457
|
+
## Docs
|
|
458
|
+
|
|
459
|
+
- **[Official Docs](https://docs.avibe.bot)** — Quickstart, platform guides, agent setup, troubleshooting, and AI-readable install instructions
|
|
460
|
+
- **[CLI Reference](docs/CLI.md)** — Command-line usage and service lifecycle
|
|
461
|
+
- **[Install via AI Agent](docs/INSTALL_FOR_AI.md)** — Give this to Claude Code, Codex, or OpenCode for guided setup
|
|
462
|
+
- **[Incus Tenant Scaffold](docs/INCUS_TENANTS.md)** — Create isolated Vibe Remote tenants on one Incus host
|
|
463
|
+
- **[Slack Setup Guide](docs/SLACK_SETUP.md)** — Detailed setup with screenshots
|
|
464
|
+
- **[Discord Setup Guide](docs/DISCORD_SETUP.md)** — Detailed setup with screenshots
|
|
465
|
+
- **[Telegram Setup Guide](docs/TELEGRAM_SETUP.md)** — BotFather setup, token validation, and chat discovery
|
|
466
|
+
- **WeChat Setup Guide** — Follow the in-app wizard (`vibe` → choose WeChat)
|
|
467
|
+
- **Lark Setup Guide** — Follow the in-app wizard (`vibe` → choose Lark)
|
|
468
|
+
|
|
469
|
+
---
|
|
470
|
+
|
|
471
|
+
<div align="center">
|
|
472
|
+
|
|
473
|
+
**Stop context-switching. Start vibe coding.**
|
|
474
|
+
|
|
475
|
+
[Install Now](#install-in-10-seconds) · [Setup Guide](docs/SLACK_SETUP.md) · [Report Bug](https://github.com/cyhhao/vibe-remote/issues) · [Follow @alex_metacraft](https://x.com/alex_metacraft)
|
|
476
|
+
|
|
477
|
+
---
|
|
478
|
+
|
|
479
|
+
*Built for developers who code from anywhere.*
|
|
480
|
+
|
|
481
|
+
</div>
|