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.
Files changed (727) hide show
  1. avibe_os-3.0.0a0/.gitignore +181 -0
  2. avibe_os-3.0.0a0/LICENSE +21 -0
  3. avibe_os-3.0.0a0/PKG-INFO +481 -0
  4. avibe_os-3.0.0a0/README.md +429 -0
  5. avibe_os-3.0.0a0/assets/mascot/prompts/README.md +18 -0
  6. avibe_os-3.0.0a0/config/__init__.py +37 -0
  7. avibe_os-3.0.0a0/config/discovered_chats.py +193 -0
  8. avibe_os-3.0.0a0/config/paths.py +133 -0
  9. avibe_os-3.0.0a0/config/platform_registry.py +290 -0
  10. avibe_os-3.0.0a0/config/v2_compat.py +159 -0
  11. avibe_os-3.0.0a0/config/v2_config.py +699 -0
  12. avibe_os-3.0.0a0/config/v2_sessions.py +609 -0
  13. avibe_os-3.0.0a0/config/v2_settings.py +762 -0
  14. avibe_os-3.0.0a0/core/__init__.py +0 -0
  15. avibe_os-3.0.0a0/core/agent_auth_service.py +2642 -0
  16. avibe_os-3.0.0a0/core/audio_asr.py +304 -0
  17. avibe_os-3.0.0a0/core/auth.py +140 -0
  18. avibe_os-3.0.0a0/core/avibe_cloud.py +48 -0
  19. avibe_os-3.0.0a0/core/chat_discovery.py +917 -0
  20. avibe_os-3.0.0a0/core/controller.py +1118 -0
  21. avibe_os-3.0.0a0/core/handlers/__init__.py +9 -0
  22. avibe_os-3.0.0a0/core/handlers/base.py +66 -0
  23. avibe_os-3.0.0a0/core/handlers/command_handlers.py +989 -0
  24. avibe_os-3.0.0a0/core/handlers/message_handler.py +1067 -0
  25. avibe_os-3.0.0a0/core/handlers/session_handler.py +1223 -0
  26. avibe_os-3.0.0a0/core/handlers/settings_handler.py +869 -0
  27. avibe_os-3.0.0a0/core/inbox_events.py +65 -0
  28. avibe_os-3.0.0a0/core/internal_server.py +634 -0
  29. avibe_os-3.0.0a0/core/message_dispatcher.py +1044 -0
  30. avibe_os-3.0.0a0/core/message_mirror.py +369 -0
  31. avibe_os-3.0.0a0/core/modals.py +54 -0
  32. avibe_os-3.0.0a0/core/process_diagnostics.py +200 -0
  33. avibe_os-3.0.0a0/core/process_isolation.py +116 -0
  34. avibe_os-3.0.0a0/core/processing_indicator.py +381 -0
  35. avibe_os-3.0.0a0/core/reply_enhancer.py +231 -0
  36. avibe_os-3.0.0a0/core/runtime_commands.py +204 -0
  37. avibe_os-3.0.0a0/core/scheduled_tasks.py +1853 -0
  38. avibe_os-3.0.0a0/core/services/__init__.py +12 -0
  39. avibe_os-3.0.0a0/core/services/agent_run_target.py +620 -0
  40. avibe_os-3.0.0a0/core/services/dispatch.py +119 -0
  41. avibe_os-3.0.0a0/core/services/sessions.py +166 -0
  42. avibe_os-3.0.0a0/core/services/settings.py +184 -0
  43. avibe_os-3.0.0a0/core/services/skills.py +328 -0
  44. avibe_os-3.0.0a0/core/session_titles.py +82 -0
  45. avibe_os-3.0.0a0/core/session_turns.py +720 -0
  46. avibe_os-3.0.0a0/core/show_pages.py +680 -0
  47. avibe_os-3.0.0a0/core/show_runtime.py +1180 -0
  48. avibe_os-3.0.0a0/core/show_session_events.py +547 -0
  49. avibe_os-3.0.0a0/core/system_prompt_injection.py +395 -0
  50. avibe_os-3.0.0a0/core/update_checker.py +1044 -0
  51. avibe_os-3.0.0a0/core/vibe_agents.py +534 -0
  52. avibe_os-3.0.0a0/core/watches.py +663 -0
  53. avibe_os-3.0.0a0/core/web_push.py +153 -0
  54. avibe_os-3.0.0a0/core/web_push_notifications.py +199 -0
  55. avibe_os-3.0.0a0/core/workbench_media.py +147 -0
  56. avibe_os-3.0.0a0/docs/plans/v2/README.md +18 -0
  57. avibe_os-3.0.0a0/docs/regression/README.md +137 -0
  58. avibe_os-3.0.0a0/main.py +178 -0
  59. avibe_os-3.0.0a0/modules/__init__.py +0 -0
  60. avibe_os-3.0.0a0/modules/agent_router.py +60 -0
  61. avibe_os-3.0.0a0/modules/agents/__init__.py +21 -0
  62. avibe_os-3.0.0a0/modules/agents/base.py +494 -0
  63. avibe_os-3.0.0a0/modules/agents/catalog.py +165 -0
  64. avibe_os-3.0.0a0/modules/agents/claude_agent.py +1014 -0
  65. avibe_os-3.0.0a0/modules/agents/claude_question_handler.py +395 -0
  66. avibe_os-3.0.0a0/modules/agents/codex/__init__.py +5 -0
  67. avibe_os-3.0.0a0/modules/agents/codex/agent.py +1058 -0
  68. avibe_os-3.0.0a0/modules/agents/codex/event_handler.py +520 -0
  69. avibe_os-3.0.0a0/modules/agents/codex/session.py +97 -0
  70. avibe_os-3.0.0a0/modules/agents/codex/transport.py +346 -0
  71. avibe_os-3.0.0a0/modules/agents/codex/turn_state.py +190 -0
  72. avibe_os-3.0.0a0/modules/agents/native_sessions/__init__.py +12 -0
  73. avibe_os-3.0.0a0/modules/agents/native_sessions/base.py +153 -0
  74. avibe_os-3.0.0a0/modules/agents/native_sessions/claude.py +360 -0
  75. avibe_os-3.0.0a0/modules/agents/native_sessions/codex.py +156 -0
  76. avibe_os-3.0.0a0/modules/agents/native_sessions/display.py +22 -0
  77. avibe_os-3.0.0a0/modules/agents/native_sessions/opencode.py +128 -0
  78. avibe_os-3.0.0a0/modules/agents/native_sessions/providers.py +29 -0
  79. avibe_os-3.0.0a0/modules/agents/native_sessions/service.py +155 -0
  80. avibe_os-3.0.0a0/modules/agents/native_sessions/types.py +30 -0
  81. avibe_os-3.0.0a0/modules/agents/opencode/__init__.py +35 -0
  82. avibe_os-3.0.0a0/modules/agents/opencode/agent.py +664 -0
  83. avibe_os-3.0.0a0/modules/agents/opencode/client_manager.py +33 -0
  84. avibe_os-3.0.0a0/modules/agents/opencode/config_reconciler.py +234 -0
  85. avibe_os-3.0.0a0/modules/agents/opencode/message_processor.py +76 -0
  86. avibe_os-3.0.0a0/modules/agents/opencode/poll_loop.py +559 -0
  87. avibe_os-3.0.0a0/modules/agents/opencode/server.py +1288 -0
  88. avibe_os-3.0.0a0/modules/agents/opencode/session.py +277 -0
  89. avibe_os-3.0.0a0/modules/agents/opencode/types.py +18 -0
  90. avibe_os-3.0.0a0/modules/agents/opencode/utils.py +401 -0
  91. avibe_os-3.0.0a0/modules/agents/opencode_agent.py +23 -0
  92. avibe_os-3.0.0a0/modules/agents/question_ui.py +462 -0
  93. avibe_os-3.0.0a0/modules/agents/service.py +67 -0
  94. avibe_os-3.0.0a0/modules/agents/subagent_router.py +280 -0
  95. avibe_os-3.0.0a0/modules/claude_client.py +159 -0
  96. avibe_os-3.0.0a0/modules/claude_sdk_compat.py +102 -0
  97. avibe_os-3.0.0a0/modules/im/__init__.py +63 -0
  98. avibe_os-3.0.0a0/modules/im/avibe.py +283 -0
  99. avibe_os-3.0.0a0/modules/im/base.py +632 -0
  100. avibe_os-3.0.0a0/modules/im/discord.py +2202 -0
  101. avibe_os-3.0.0a0/modules/im/factory.py +94 -0
  102. avibe_os-3.0.0a0/modules/im/feishu.py +3300 -0
  103. avibe_os-3.0.0a0/modules/im/formatters/__init__.py +17 -0
  104. avibe_os-3.0.0a0/modules/im/formatters/avibe_formatter.py +35 -0
  105. avibe_os-3.0.0a0/modules/im/formatters/base_formatter.py +613 -0
  106. avibe_os-3.0.0a0/modules/im/formatters/discord_formatter.py +32 -0
  107. avibe_os-3.0.0a0/modules/im/formatters/feishu_formatter.py +43 -0
  108. avibe_os-3.0.0a0/modules/im/formatters/slack_formatter.py +127 -0
  109. avibe_os-3.0.0a0/modules/im/formatters/telegram_formatter.py +165 -0
  110. avibe_os-3.0.0a0/modules/im/formatters/wechat_formatter.py +54 -0
  111. avibe_os-3.0.0a0/modules/im/multi.py +373 -0
  112. avibe_os-3.0.0a0/modules/im/slack.py +4132 -0
  113. avibe_os-3.0.0a0/modules/im/slack_modal.py +94 -0
  114. avibe_os-3.0.0a0/modules/im/telegram.py +1881 -0
  115. avibe_os-3.0.0a0/modules/im/telegram_api.py +128 -0
  116. avibe_os-3.0.0a0/modules/im/wechat.py +1681 -0
  117. avibe_os-3.0.0a0/modules/im/wechat_api.py +414 -0
  118. avibe_os-3.0.0a0/modules/im/wechat_auth.py +407 -0
  119. avibe_os-3.0.0a0/modules/im/wechat_cdn.py +474 -0
  120. avibe_os-3.0.0a0/modules/session_manager.py +138 -0
  121. avibe_os-3.0.0a0/modules/sessions_facade.py +476 -0
  122. avibe_os-3.0.0a0/modules/settings_manager.py +627 -0
  123. avibe_os-3.0.0a0/npm/avibe/README.md +54 -0
  124. avibe_os-3.0.0a0/pyproject.toml +133 -0
  125. avibe_os-3.0.0a0/standards/scenario-testing/README.md +96 -0
  126. avibe_os-3.0.0a0/storage/__init__.py +13 -0
  127. avibe_os-3.0.0a0/storage/agent_session_rows.py +121 -0
  128. avibe_os-3.0.0a0/storage/alembic/__init__.py +1 -0
  129. avibe_os-3.0.0a0/storage/alembic/env.py +53 -0
  130. avibe_os-3.0.0a0/storage/alembic/versions/20260501_0001_initial_sqlite_state.py +157 -0
  131. avibe_os-3.0.0a0/storage/alembic/versions/20260515_0002_background_tasks.py +112 -0
  132. avibe_os-3.0.0a0/storage/alembic/versions/20260522_0003_agent_runs_schema.py +139 -0
  133. avibe_os-3.0.0a0/storage/alembic/versions/20260523_0004_show_pages.py +41 -0
  134. avibe_os-3.0.0a0/storage/alembic/versions/20260525_0005_agent_enabled.py +30 -0
  135. avibe_os-3.0.0a0/storage/alembic/versions/20260526_0006_messages.py +83 -0
  136. avibe_os-3.0.0a0/storage/alembic/versions/20260529_0007_backfill_scope_agent_names.py +150 -0
  137. avibe_os-3.0.0a0/storage/alembic/versions/20260530_0008_remove_legacy_default_agent.py +371 -0
  138. avibe_os-3.0.0a0/storage/alembic/versions/20260530_0009_show_session_events.py +54 -0
  139. avibe_os-3.0.0a0/storage/alembic/versions/20260531_0009_messages_type.py +67 -0
  140. avibe_os-3.0.0a0/storage/alembic/versions/20260531_0010_messages_source.py +65 -0
  141. avibe_os-3.0.0a0/storage/alembic/versions/20260601_0011_session_anchor_unique.py +150 -0
  142. avibe_os-3.0.0a0/storage/alembic/versions/20260601_0012_agent_status.py +59 -0
  143. avibe_os-3.0.0a0/storage/alembic/versions/20260602_0013_media_objects.py +74 -0
  144. avibe_os-3.0.0a0/storage/alembic/versions/20260603_0014_media_mtime.py +44 -0
  145. avibe_os-3.0.0a0/storage/alembic/versions/20260604_0015_media_dimensions.py +41 -0
  146. avibe_os-3.0.0a0/storage/alembic/versions/20260604_0016_web_push_subscriptions.py +56 -0
  147. avibe_os-3.0.0a0/storage/alembic/versions/20260604_0017_web_push_subscription_device_id.py +36 -0
  148. avibe_os-3.0.0a0/storage/alembic/versions/20260606_0018_messages_session_indexes.py +63 -0
  149. avibe_os-3.0.0a0/storage/alembic/versions/20260606_0019_inbox_query_indexes.py +40 -0
  150. avibe_os-3.0.0a0/storage/alembic/versions/__init__.py +1 -0
  151. avibe_os-3.0.0a0/storage/background.py +1139 -0
  152. avibe_os-3.0.0a0/storage/db.py +57 -0
  153. avibe_os-3.0.0a0/storage/importer.py +918 -0
  154. avibe_os-3.0.0a0/storage/lock.py +93 -0
  155. avibe_os-3.0.0a0/storage/media_service.py +150 -0
  156. avibe_os-3.0.0a0/storage/messages_service.py +832 -0
  157. avibe_os-3.0.0a0/storage/migrations.py +544 -0
  158. avibe_os-3.0.0a0/storage/models.py +432 -0
  159. avibe_os-3.0.0a0/storage/pagination.py +98 -0
  160. avibe_os-3.0.0a0/storage/projects_service.py +403 -0
  161. avibe_os-3.0.0a0/storage/read_only_query.py +118 -0
  162. avibe_os-3.0.0a0/storage/sessions_service.py +1270 -0
  163. avibe_os-3.0.0a0/storage/settings_service.py +454 -0
  164. avibe_os-3.0.0a0/storage/web_push_service.py +285 -0
  165. avibe_os-3.0.0a0/storage/workbench_sessions_service.py +449 -0
  166. avibe_os-3.0.0a0/tests/scenario_harness/README.md +28 -0
  167. avibe_os-3.0.0a0/tests/scenarios/README.md +25 -0
  168. avibe_os-3.0.0a0/ui/README.md +73 -0
  169. avibe_os-3.0.0a0/ui/dist/apple-touch-icon.png +0 -0
  170. avibe_os-3.0.0a0/ui/dist/assets/bash-Yzrsuije.js +1 -0
  171. avibe_os-3.0.0a0/ui/dist/assets/c-BIGW1oBm.js +1 -0
  172. avibe_os-3.0.0a0/ui/dist/assets/cloud-tuanzi-logo-mono-C88aTibU.png +0 -0
  173. avibe_os-3.0.0a0/ui/dist/assets/cpp-DIPi6g--.js +1 -0
  174. avibe_os-3.0.0a0/ui/dist/assets/csharp-DSvCPggb.js +1 -0
  175. avibe_os-3.0.0a0/ui/dist/assets/css-CLj8gQPS.js +1 -0
  176. avibe_os-3.0.0a0/ui/dist/assets/dart-bE4Kk8sk.js +1 -0
  177. avibe_os-3.0.0a0/ui/dist/assets/diff-D97Zzqfu.js +1 -0
  178. avibe_os-3.0.0a0/ui/dist/assets/docker-BcOcwvcX.js +1 -0
  179. avibe_os-3.0.0a0/ui/dist/assets/file-viewer-modal-DcyOAOOC.js +162 -0
  180. avibe_os-3.0.0a0/ui/dist/assets/github-dark-DHJKELXO.js +1 -0
  181. avibe_os-3.0.0a0/ui/dist/assets/github-light-DAi9KRSo.js +1 -0
  182. avibe_os-3.0.0a0/ui/dist/assets/go-C27-OAKa.js +1 -0
  183. avibe_os-3.0.0a0/ui/dist/assets/html-pp8916En.js +1 -0
  184. avibe_os-3.0.0a0/ui/dist/assets/index-BG7JZ9bv.js +128 -0
  185. avibe_os-3.0.0a0/ui/dist/assets/index-Bhq3jzL9.js +4870 -0
  186. avibe_os-3.0.0a0/ui/dist/assets/index-Dy6T-Vg3.css +1 -0
  187. avibe_os-3.0.0a0/ui/dist/assets/ini-BEwlwnbL.js +1 -0
  188. avibe_os-3.0.0a0/ui/dist/assets/java-CylS5w8V.js +1 -0
  189. avibe_os-3.0.0a0/ui/dist/assets/javascript-wDzz0qaB.js +1 -0
  190. avibe_os-3.0.0a0/ui/dist/assets/json-Cp-IABpG.js +1 -0
  191. avibe_os-3.0.0a0/ui/dist/assets/jsx-g9-lgVsj.js +1 -0
  192. avibe_os-3.0.0a0/ui/dist/assets/kotlin-BdnUsdx6.js +1 -0
  193. avibe_os-3.0.0a0/ui/dist/assets/less-B1dDrJ26.js +1 -0
  194. avibe_os-3.0.0a0/ui/dist/assets/logo-BzryTZ7u.png +0 -0
  195. avibe_os-3.0.0a0/ui/dist/assets/lua-BaeVxFsk.js +1 -0
  196. avibe_os-3.0.0a0/ui/dist/assets/make-CHLpvVh8.js +1 -0
  197. avibe_os-3.0.0a0/ui/dist/assets/perl-B9cMNwum.js +1 -0
  198. avibe_os-3.0.0a0/ui/dist/assets/php-Csjmro_R.js +1 -0
  199. avibe_os-3.0.0a0/ui/dist/assets/python-B6aJPvgy.js +1 -0
  200. avibe_os-3.0.0a0/ui/dist/assets/r-Dspwwk_N.js +1 -0
  201. avibe_os-3.0.0a0/ui/dist/assets/ruby-vQ0jtSlR.js +1 -0
  202. avibe_os-3.0.0a0/ui/dist/assets/rust-B1yitclQ.js +1 -0
  203. avibe_os-3.0.0a0/ui/dist/assets/scala-C151Ov-r.js +1 -0
  204. avibe_os-3.0.0a0/ui/dist/assets/scss-D5BDwBP9.js +1 -0
  205. avibe_os-3.0.0a0/ui/dist/assets/sql-CRqJ_cUM.js +1 -0
  206. avibe_os-3.0.0a0/ui/dist/assets/svelte-DR4MIrkg.js +1 -0
  207. avibe_os-3.0.0a0/ui/dist/assets/swift-D82vCrfD.js +1 -0
  208. avibe_os-3.0.0a0/ui/dist/assets/toml-vGWfd6FD.js +1 -0
  209. avibe_os-3.0.0a0/ui/dist/assets/tsx-COt5Ahok.js +1 -0
  210. avibe_os-3.0.0a0/ui/dist/assets/typescript-BPQ3VLAy.js +1 -0
  211. avibe_os-3.0.0a0/ui/dist/assets/vue-DMJtu8ND.js +1 -0
  212. avibe_os-3.0.0a0/ui/dist/assets/xml-sdJ4AIDG.js +1 -0
  213. avibe_os-3.0.0a0/ui/dist/assets/yaml-Buea-lGh.js +1 -0
  214. avibe_os-3.0.0a0/ui/dist/icon-192.png +0 -0
  215. avibe_os-3.0.0a0/ui/dist/icon-512.png +0 -0
  216. avibe_os-3.0.0a0/ui/dist/index.html +81 -0
  217. avibe_os-3.0.0a0/ui/dist/logo.png +0 -0
  218. avibe_os-3.0.0a0/ui/dist/manifest.webmanifest +15 -0
  219. avibe_os-3.0.0a0/ui/dist/push-sw.js +57 -0
  220. avibe_os-3.0.0a0/ui/dist/vite.svg +1 -0
  221. avibe_os-3.0.0a0/ui/node_modules/@babel/code-frame/LICENSE +22 -0
  222. avibe_os-3.0.0a0/ui/node_modules/@babel/code-frame/README.md +19 -0
  223. avibe_os-3.0.0a0/ui/node_modules/@babel/compat-data/LICENSE +22 -0
  224. avibe_os-3.0.0a0/ui/node_modules/@babel/compat-data/README.md +19 -0
  225. avibe_os-3.0.0a0/ui/node_modules/@babel/core/LICENSE +22 -0
  226. avibe_os-3.0.0a0/ui/node_modules/@babel/core/README.md +19 -0
  227. avibe_os-3.0.0a0/ui/node_modules/@babel/generator/LICENSE +22 -0
  228. avibe_os-3.0.0a0/ui/node_modules/@babel/generator/README.md +19 -0
  229. avibe_os-3.0.0a0/ui/node_modules/@babel/helper-compilation-targets/LICENSE +22 -0
  230. avibe_os-3.0.0a0/ui/node_modules/@babel/helper-compilation-targets/README.md +19 -0
  231. avibe_os-3.0.0a0/ui/node_modules/@babel/helper-globals/LICENSE +22 -0
  232. avibe_os-3.0.0a0/ui/node_modules/@babel/helper-globals/README.md +19 -0
  233. avibe_os-3.0.0a0/ui/node_modules/@babel/helper-module-imports/LICENSE +22 -0
  234. avibe_os-3.0.0a0/ui/node_modules/@babel/helper-module-imports/README.md +19 -0
  235. avibe_os-3.0.0a0/ui/node_modules/@babel/helper-module-transforms/LICENSE +22 -0
  236. avibe_os-3.0.0a0/ui/node_modules/@babel/helper-module-transforms/README.md +19 -0
  237. avibe_os-3.0.0a0/ui/node_modules/@babel/helper-plugin-utils/LICENSE +22 -0
  238. avibe_os-3.0.0a0/ui/node_modules/@babel/helper-plugin-utils/README.md +19 -0
  239. avibe_os-3.0.0a0/ui/node_modules/@babel/helper-string-parser/LICENSE +22 -0
  240. avibe_os-3.0.0a0/ui/node_modules/@babel/helper-string-parser/README.md +19 -0
  241. avibe_os-3.0.0a0/ui/node_modules/@babel/helper-validator-identifier/LICENSE +22 -0
  242. avibe_os-3.0.0a0/ui/node_modules/@babel/helper-validator-identifier/README.md +19 -0
  243. avibe_os-3.0.0a0/ui/node_modules/@babel/helper-validator-option/LICENSE +22 -0
  244. avibe_os-3.0.0a0/ui/node_modules/@babel/helper-validator-option/README.md +19 -0
  245. avibe_os-3.0.0a0/ui/node_modules/@babel/helpers/LICENSE +23 -0
  246. avibe_os-3.0.0a0/ui/node_modules/@babel/helpers/README.md +19 -0
  247. avibe_os-3.0.0a0/ui/node_modules/@babel/parser/LICENSE +19 -0
  248. avibe_os-3.0.0a0/ui/node_modules/@babel/parser/README.md +19 -0
  249. avibe_os-3.0.0a0/ui/node_modules/@babel/plugin-transform-react-jsx-self/LICENSE +22 -0
  250. avibe_os-3.0.0a0/ui/node_modules/@babel/plugin-transform-react-jsx-self/README.md +19 -0
  251. avibe_os-3.0.0a0/ui/node_modules/@babel/plugin-transform-react-jsx-source/LICENSE +22 -0
  252. avibe_os-3.0.0a0/ui/node_modules/@babel/plugin-transform-react-jsx-source/README.md +19 -0
  253. avibe_os-3.0.0a0/ui/node_modules/@babel/runtime/LICENSE +22 -0
  254. avibe_os-3.0.0a0/ui/node_modules/@babel/runtime/README.md +19 -0
  255. avibe_os-3.0.0a0/ui/node_modules/@babel/template/LICENSE +22 -0
  256. avibe_os-3.0.0a0/ui/node_modules/@babel/template/README.md +19 -0
  257. avibe_os-3.0.0a0/ui/node_modules/@babel/traverse/LICENSE +22 -0
  258. avibe_os-3.0.0a0/ui/node_modules/@babel/traverse/README.md +19 -0
  259. avibe_os-3.0.0a0/ui/node_modules/@babel/types/LICENSE +22 -0
  260. avibe_os-3.0.0a0/ui/node_modules/@babel/types/README.md +19 -0
  261. avibe_os-3.0.0a0/ui/node_modules/@esbuild/darwin-arm64/README.md +3 -0
  262. avibe_os-3.0.0a0/ui/node_modules/@eslint/config-array/LICENSE +201 -0
  263. avibe_os-3.0.0a0/ui/node_modules/@eslint/config-array/README.md +368 -0
  264. avibe_os-3.0.0a0/ui/node_modules/@eslint/config-helpers/LICENSE +201 -0
  265. avibe_os-3.0.0a0/ui/node_modules/@eslint/config-helpers/README.md +97 -0
  266. avibe_os-3.0.0a0/ui/node_modules/@eslint/core/LICENSE +201 -0
  267. avibe_os-3.0.0a0/ui/node_modules/@eslint/core/README.md +29 -0
  268. avibe_os-3.0.0a0/ui/node_modules/@eslint/eslintrc/LICENSE +19 -0
  269. avibe_os-3.0.0a0/ui/node_modules/@eslint/eslintrc/README.md +145 -0
  270. avibe_os-3.0.0a0/ui/node_modules/@eslint/js/LICENSE +19 -0
  271. avibe_os-3.0.0a0/ui/node_modules/@eslint/js/README.md +103 -0
  272. avibe_os-3.0.0a0/ui/node_modules/@eslint/object-schema/LICENSE +201 -0
  273. avibe_os-3.0.0a0/ui/node_modules/@eslint/object-schema/README.md +242 -0
  274. avibe_os-3.0.0a0/ui/node_modules/@eslint/plugin-kit/LICENSE +201 -0
  275. avibe_os-3.0.0a0/ui/node_modules/@eslint/plugin-kit/README.md +273 -0
  276. avibe_os-3.0.0a0/ui/node_modules/@eslint-community/eslint-utils/LICENSE +21 -0
  277. avibe_os-3.0.0a0/ui/node_modules/@eslint-community/eslint-utils/README.md +37 -0
  278. avibe_os-3.0.0a0/ui/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/LICENSE +201 -0
  279. avibe_os-3.0.0a0/ui/node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys/README.md +105 -0
  280. avibe_os-3.0.0a0/ui/node_modules/@eslint-community/regexpp/LICENSE +21 -0
  281. avibe_os-3.0.0a0/ui/node_modules/@eslint-community/regexpp/README.md +177 -0
  282. avibe_os-3.0.0a0/ui/node_modules/@floating-ui/core/LICENSE +20 -0
  283. avibe_os-3.0.0a0/ui/node_modules/@floating-ui/core/README.md +4 -0
  284. avibe_os-3.0.0a0/ui/node_modules/@floating-ui/dom/LICENSE +20 -0
  285. avibe_os-3.0.0a0/ui/node_modules/@floating-ui/dom/README.md +4 -0
  286. avibe_os-3.0.0a0/ui/node_modules/@floating-ui/react-dom/LICENSE +20 -0
  287. avibe_os-3.0.0a0/ui/node_modules/@floating-ui/react-dom/README.md +3 -0
  288. avibe_os-3.0.0a0/ui/node_modules/@floating-ui/utils/LICENSE +20 -0
  289. avibe_os-3.0.0a0/ui/node_modules/@floating-ui/utils/README.md +4 -0
  290. avibe_os-3.0.0a0/ui/node_modules/@humanfs/core/LICENSE +201 -0
  291. avibe_os-3.0.0a0/ui/node_modules/@humanfs/core/README.md +140 -0
  292. avibe_os-3.0.0a0/ui/node_modules/@humanfs/node/LICENSE +201 -0
  293. avibe_os-3.0.0a0/ui/node_modules/@humanfs/node/README.md +141 -0
  294. avibe_os-3.0.0a0/ui/node_modules/@humanwhocodes/module-importer/LICENSE +201 -0
  295. avibe_os-3.0.0a0/ui/node_modules/@humanwhocodes/module-importer/README.md +80 -0
  296. avibe_os-3.0.0a0/ui/node_modules/@humanwhocodes/retry/LICENSE +201 -0
  297. avibe_os-3.0.0a0/ui/node_modules/@humanwhocodes/retry/README.md +177 -0
  298. avibe_os-3.0.0a0/ui/node_modules/@jridgewell/gen-mapping/LICENSE +19 -0
  299. avibe_os-3.0.0a0/ui/node_modules/@jridgewell/gen-mapping/README.md +227 -0
  300. avibe_os-3.0.0a0/ui/node_modules/@jridgewell/remapping/LICENSE +19 -0
  301. avibe_os-3.0.0a0/ui/node_modules/@jridgewell/remapping/README.md +218 -0
  302. avibe_os-3.0.0a0/ui/node_modules/@jridgewell/resolve-uri/LICENSE +19 -0
  303. avibe_os-3.0.0a0/ui/node_modules/@jridgewell/resolve-uri/README.md +40 -0
  304. avibe_os-3.0.0a0/ui/node_modules/@jridgewell/sourcemap-codec/LICENSE +19 -0
  305. avibe_os-3.0.0a0/ui/node_modules/@jridgewell/sourcemap-codec/README.md +264 -0
  306. avibe_os-3.0.0a0/ui/node_modules/@jridgewell/trace-mapping/LICENSE +19 -0
  307. avibe_os-3.0.0a0/ui/node_modules/@jridgewell/trace-mapping/README.md +348 -0
  308. avibe_os-3.0.0a0/ui/node_modules/@radix-ui/primitive/LICENSE +21 -0
  309. avibe_os-3.0.0a0/ui/node_modules/@radix-ui/primitive/README.md +3 -0
  310. avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-arrow/LICENSE +21 -0
  311. avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-arrow/README.md +3 -0
  312. avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-compose-refs/README.md +13 -0
  313. avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-context/README.md +13 -0
  314. avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-dialog/LICENSE +21 -0
  315. avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-dialog/README.md +3 -0
  316. avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-dialog/node_modules/@radix-ui/react-slot/LICENSE +21 -0
  317. avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-dialog/node_modules/@radix-ui/react-slot/README.md +3 -0
  318. avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-dismissable-layer/LICENSE +21 -0
  319. avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-dismissable-layer/README.md +3 -0
  320. avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-focus-guards/LICENSE +21 -0
  321. avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-focus-guards/README.md +3 -0
  322. avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-focus-scope/LICENSE +21 -0
  323. avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-focus-scope/README.md +3 -0
  324. avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-id/README.md +13 -0
  325. avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-label/LICENSE +21 -0
  326. avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-label/README.md +3 -0
  327. avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-label/node_modules/@radix-ui/react-primitive/LICENSE +21 -0
  328. avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-label/node_modules/@radix-ui/react-primitive/README.md +3 -0
  329. avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-popover/LICENSE +21 -0
  330. avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-popover/README.md +3 -0
  331. avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-popover/node_modules/@radix-ui/react-slot/LICENSE +21 -0
  332. avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-popover/node_modules/@radix-ui/react-slot/README.md +3 -0
  333. avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-popper/LICENSE +21 -0
  334. avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-popper/README.md +3 -0
  335. avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-portal/LICENSE +21 -0
  336. avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-portal/README.md +3 -0
  337. avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-presence/LICENSE +21 -0
  338. avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-presence/README.md +3 -0
  339. avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-primitive/LICENSE +21 -0
  340. avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-primitive/README.md +3 -0
  341. avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-primitive/node_modules/@radix-ui/react-slot/LICENSE +21 -0
  342. avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-primitive/node_modules/@radix-ui/react-slot/README.md +3 -0
  343. avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-separator/LICENSE +21 -0
  344. avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-separator/README.md +3 -0
  345. avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-separator/node_modules/@radix-ui/react-primitive/LICENSE +21 -0
  346. avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-separator/node_modules/@radix-ui/react-primitive/README.md +3 -0
  347. avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-slot/LICENSE +21 -0
  348. avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-slot/README.md +3 -0
  349. avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-use-callback-ref/README.md +13 -0
  350. avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-use-controllable-state/LICENSE +21 -0
  351. avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-use-controllable-state/README.md +3 -0
  352. avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-use-effect-event/LICENSE +21 -0
  353. avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-use-effect-event/README.md +5 -0
  354. avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-use-escape-keydown/README.md +13 -0
  355. avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-use-layout-effect/README.md +13 -0
  356. avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-use-rect/README.md +13 -0
  357. avibe_os-3.0.0a0/ui/node_modules/@radix-ui/react-use-size/README.md +13 -0
  358. avibe_os-3.0.0a0/ui/node_modules/@radix-ui/rect/README.md +13 -0
  359. avibe_os-3.0.0a0/ui/node_modules/@rolldown/pluginutils/LICENSE +25 -0
  360. avibe_os-3.0.0a0/ui/node_modules/@rolldown/pluginutils/README.md +85 -0
  361. avibe_os-3.0.0a0/ui/node_modules/@rollup/rollup-darwin-arm64/README.md +3 -0
  362. avibe_os-3.0.0a0/ui/node_modules/@shikijs/core/LICENSE +22 -0
  363. avibe_os-3.0.0a0/ui/node_modules/@shikijs/core/README.md +5 -0
  364. avibe_os-3.0.0a0/ui/node_modules/@shikijs/engine-javascript/LICENSE +22 -0
  365. avibe_os-3.0.0a0/ui/node_modules/@shikijs/engine-javascript/README.md +9 -0
  366. avibe_os-3.0.0a0/ui/node_modules/@shikijs/engine-oniguruma/LICENSE +22 -0
  367. avibe_os-3.0.0a0/ui/node_modules/@shikijs/engine-oniguruma/README.md +9 -0
  368. avibe_os-3.0.0a0/ui/node_modules/@shikijs/langs/LICENSE +22 -0
  369. avibe_os-3.0.0a0/ui/node_modules/@shikijs/langs/README.md +7 -0
  370. avibe_os-3.0.0a0/ui/node_modules/@shikijs/primitive/LICENSE +22 -0
  371. avibe_os-3.0.0a0/ui/node_modules/@shikijs/themes/LICENSE +22 -0
  372. avibe_os-3.0.0a0/ui/node_modules/@shikijs/themes/README.md +7 -0
  373. avibe_os-3.0.0a0/ui/node_modules/@shikijs/types/LICENSE +22 -0
  374. avibe_os-3.0.0a0/ui/node_modules/@shikijs/types/README.md +7 -0
  375. avibe_os-3.0.0a0/ui/node_modules/@shikijs/vscode-textmate/README.md +9 -0
  376. avibe_os-3.0.0a0/ui/node_modules/@tailwindcss/node/LICENSE +21 -0
  377. avibe_os-3.0.0a0/ui/node_modules/@tailwindcss/node/README.md +36 -0
  378. avibe_os-3.0.0a0/ui/node_modules/@tailwindcss/oxide/LICENSE +21 -0
  379. avibe_os-3.0.0a0/ui/node_modules/@tailwindcss/oxide-darwin-arm64/LICENSE +21 -0
  380. avibe_os-3.0.0a0/ui/node_modules/@tailwindcss/oxide-darwin-arm64/README.md +3 -0
  381. avibe_os-3.0.0a0/ui/node_modules/@tailwindcss/postcss/LICENSE +21 -0
  382. avibe_os-3.0.0a0/ui/node_modules/@tailwindcss/postcss/README.md +126 -0
  383. avibe_os-3.0.0a0/ui/node_modules/@types/babel__core/LICENSE +21 -0
  384. avibe_os-3.0.0a0/ui/node_modules/@types/babel__core/README.md +15 -0
  385. avibe_os-3.0.0a0/ui/node_modules/@types/babel__generator/LICENSE +21 -0
  386. avibe_os-3.0.0a0/ui/node_modules/@types/babel__generator/README.md +15 -0
  387. avibe_os-3.0.0a0/ui/node_modules/@types/babel__template/LICENSE +21 -0
  388. avibe_os-3.0.0a0/ui/node_modules/@types/babel__template/README.md +15 -0
  389. avibe_os-3.0.0a0/ui/node_modules/@types/babel__traverse/LICENSE +21 -0
  390. avibe_os-3.0.0a0/ui/node_modules/@types/babel__traverse/README.md +15 -0
  391. avibe_os-3.0.0a0/ui/node_modules/@types/debug/LICENSE +21 -0
  392. avibe_os-3.0.0a0/ui/node_modules/@types/debug/README.md +69 -0
  393. avibe_os-3.0.0a0/ui/node_modules/@types/estree/LICENSE +21 -0
  394. avibe_os-3.0.0a0/ui/node_modules/@types/estree/README.md +15 -0
  395. avibe_os-3.0.0a0/ui/node_modules/@types/estree-jsx/LICENSE +21 -0
  396. avibe_os-3.0.0a0/ui/node_modules/@types/estree-jsx/README.md +15 -0
  397. avibe_os-3.0.0a0/ui/node_modules/@types/hast/LICENSE +21 -0
  398. avibe_os-3.0.0a0/ui/node_modules/@types/hast/README.md +15 -0
  399. avibe_os-3.0.0a0/ui/node_modules/@types/json-schema/LICENSE +21 -0
  400. avibe_os-3.0.0a0/ui/node_modules/@types/json-schema/README.md +15 -0
  401. avibe_os-3.0.0a0/ui/node_modules/@types/mdast/LICENSE +21 -0
  402. avibe_os-3.0.0a0/ui/node_modules/@types/mdast/README.md +15 -0
  403. avibe_os-3.0.0a0/ui/node_modules/@types/ms/LICENSE +21 -0
  404. avibe_os-3.0.0a0/ui/node_modules/@types/ms/README.md +82 -0
  405. avibe_os-3.0.0a0/ui/node_modules/@types/node/LICENSE +21 -0
  406. avibe_os-3.0.0a0/ui/node_modules/@types/node/README.md +15 -0
  407. avibe_os-3.0.0a0/ui/node_modules/@types/papaparse/LICENSE +21 -0
  408. avibe_os-3.0.0a0/ui/node_modules/@types/papaparse/README.md +15 -0
  409. avibe_os-3.0.0a0/ui/node_modules/@types/react/LICENSE +21 -0
  410. avibe_os-3.0.0a0/ui/node_modules/@types/react/README.md +15 -0
  411. avibe_os-3.0.0a0/ui/node_modules/@types/react-dom/LICENSE +21 -0
  412. avibe_os-3.0.0a0/ui/node_modules/@types/react-dom/README.md +16 -0
  413. avibe_os-3.0.0a0/ui/node_modules/@types/unist/LICENSE +21 -0
  414. avibe_os-3.0.0a0/ui/node_modules/@types/unist/README.md +15 -0
  415. avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/eslint-plugin/LICENSE +21 -0
  416. avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/eslint-plugin/README.md +12 -0
  417. avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/eslint-plugin/node_modules/ignore/README.md +452 -0
  418. avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/parser/LICENSE +21 -0
  419. avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/parser/README.md +12 -0
  420. avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/project-service/LICENSE +21 -0
  421. avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/project-service/README.md +12 -0
  422. avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/scope-manager/LICENSE +21 -0
  423. avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/scope-manager/README.md +10 -0
  424. avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/tsconfig-utils/LICENSE +21 -0
  425. avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/tsconfig-utils/README.md +12 -0
  426. avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/type-utils/LICENSE +21 -0
  427. avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/type-utils/README.md +12 -0
  428. avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/types/LICENSE +21 -0
  429. avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/types/README.md +12 -0
  430. avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/typescript-estree/LICENSE +21 -0
  431. avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/typescript-estree/README.md +14 -0
  432. avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion/LICENSE +21 -0
  433. avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion/README.md +135 -0
  434. avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/LICENSE +15 -0
  435. avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch/README.md +491 -0
  436. avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/LICENSE +15 -0
  437. avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/typescript-estree/node_modules/semver/README.md +664 -0
  438. avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/utils/LICENSE +21 -0
  439. avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/utils/README.md +12 -0
  440. avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/visitor-keys/LICENSE +21 -0
  441. avibe_os-3.0.0a0/ui/node_modules/@typescript-eslint/visitor-keys/README.md +10 -0
  442. avibe_os-3.0.0a0/ui/node_modules/@uiw/react-json-view/README.md +1089 -0
  443. avibe_os-3.0.0a0/ui/node_modules/@ungap/structured-clone/LICENSE +15 -0
  444. avibe_os-3.0.0a0/ui/node_modules/@ungap/structured-clone/README.md +95 -0
  445. avibe_os-3.0.0a0/ui/node_modules/@vitejs/plugin-react/LICENSE +21 -0
  446. avibe_os-3.0.0a0/ui/node_modules/@vitejs/plugin-react/README.md +143 -0
  447. avibe_os-3.0.0a0/ui/node_modules/acorn/LICENSE +21 -0
  448. avibe_os-3.0.0a0/ui/node_modules/acorn/README.md +282 -0
  449. avibe_os-3.0.0a0/ui/node_modules/acorn-jsx/LICENSE +19 -0
  450. avibe_os-3.0.0a0/ui/node_modules/acorn-jsx/README.md +40 -0
  451. avibe_os-3.0.0a0/ui/node_modules/agentation/LICENSE +27 -0
  452. avibe_os-3.0.0a0/ui/node_modules/agentation/README.md +140 -0
  453. avibe_os-3.0.0a0/ui/node_modules/ajv/LICENSE +22 -0
  454. avibe_os-3.0.0a0/ui/node_modules/ajv/README.md +1505 -0
  455. avibe_os-3.0.0a0/ui/node_modules/ajv/lib/dotjs/README.md +3 -0
  456. avibe_os-3.0.0a0/ui/node_modules/argparse/LICENSE +254 -0
  457. avibe_os-3.0.0a0/ui/node_modules/argparse/README.md +84 -0
  458. avibe_os-3.0.0a0/ui/node_modules/aria-hidden/LICENSE +21 -0
  459. avibe_os-3.0.0a0/ui/node_modules/aria-hidden/README.md +99 -0
  460. avibe_os-3.0.0a0/ui/node_modules/autoprefixer/LICENSE +20 -0
  461. avibe_os-3.0.0a0/ui/node_modules/autoprefixer/README.md +57 -0
  462. avibe_os-3.0.0a0/ui/node_modules/balanced-match/README.md +97 -0
  463. avibe_os-3.0.0a0/ui/node_modules/baseline-browser-mapping/README.md +463 -0
  464. avibe_os-3.0.0a0/ui/node_modules/brace-expansion/LICENSE +21 -0
  465. avibe_os-3.0.0a0/ui/node_modules/brace-expansion/README.md +129 -0
  466. avibe_os-3.0.0a0/ui/node_modules/browserslist/LICENSE +20 -0
  467. avibe_os-3.0.0a0/ui/node_modules/browserslist/README.md +65 -0
  468. avibe_os-3.0.0a0/ui/node_modules/caniuse-lite/LICENSE +395 -0
  469. avibe_os-3.0.0a0/ui/node_modules/caniuse-lite/README.md +6 -0
  470. avibe_os-3.0.0a0/ui/node_modules/class-variance-authority/LICENSE +190 -0
  471. avibe_os-3.0.0a0/ui/node_modules/class-variance-authority/README.md +3 -0
  472. avibe_os-3.0.0a0/ui/node_modules/cmdk/README.md +483 -0
  473. avibe_os-3.0.0a0/ui/node_modules/color-convert/LICENSE +21 -0
  474. avibe_os-3.0.0a0/ui/node_modules/color-convert/README.md +68 -0
  475. avibe_os-3.0.0a0/ui/node_modules/color-name/LICENSE +8 -0
  476. avibe_os-3.0.0a0/ui/node_modules/color-name/README.md +11 -0
  477. avibe_os-3.0.0a0/ui/node_modules/concat-map/LICENSE +18 -0
  478. avibe_os-3.0.0a0/ui/node_modules/convert-source-map/LICENSE +23 -0
  479. avibe_os-3.0.0a0/ui/node_modules/convert-source-map/README.md +206 -0
  480. avibe_os-3.0.0a0/ui/node_modules/cookie/LICENSE +24 -0
  481. avibe_os-3.0.0a0/ui/node_modules/cookie/README.md +295 -0
  482. avibe_os-3.0.0a0/ui/node_modules/cross-spawn/LICENSE +21 -0
  483. avibe_os-3.0.0a0/ui/node_modules/cross-spawn/README.md +89 -0
  484. avibe_os-3.0.0a0/ui/node_modules/csstype/LICENSE +19 -0
  485. avibe_os-3.0.0a0/ui/node_modules/csstype/README.md +291 -0
  486. avibe_os-3.0.0a0/ui/node_modules/debug/LICENSE +20 -0
  487. avibe_os-3.0.0a0/ui/node_modules/debug/README.md +481 -0
  488. avibe_os-3.0.0a0/ui/node_modules/deep-is/LICENSE +22 -0
  489. avibe_os-3.0.0a0/ui/node_modules/detect-libc/LICENSE +201 -0
  490. avibe_os-3.0.0a0/ui/node_modules/detect-libc/README.md +163 -0
  491. avibe_os-3.0.0a0/ui/node_modules/detect-node-es/LICENSE +21 -0
  492. avibe_os-3.0.0a0/ui/node_modules/electron-to-chromium/LICENSE +5 -0
  493. avibe_os-3.0.0a0/ui/node_modules/electron-to-chromium/README.md +186 -0
  494. avibe_os-3.0.0a0/ui/node_modules/enhanced-resolve/LICENSE +20 -0
  495. avibe_os-3.0.0a0/ui/node_modules/enhanced-resolve/README.md +186 -0
  496. avibe_os-3.0.0a0/ui/node_modules/esbuild/README.md +3 -0
  497. avibe_os-3.0.0a0/ui/node_modules/eslint/LICENSE +19 -0
  498. avibe_os-3.0.0a0/ui/node_modules/eslint/README.md +354 -0
  499. avibe_os-3.0.0a0/ui/node_modules/eslint-plugin-react-hooks/LICENSE +21 -0
  500. avibe_os-3.0.0a0/ui/node_modules/eslint-plugin-react-hooks/README.md +152 -0
  501. avibe_os-3.0.0a0/ui/node_modules/eslint-plugin-react-refresh/LICENSE +21 -0
  502. avibe_os-3.0.0a0/ui/node_modules/eslint-plugin-react-refresh/README.md +233 -0
  503. avibe_os-3.0.0a0/ui/node_modules/eslint-scope/LICENSE +22 -0
  504. avibe_os-3.0.0a0/ui/node_modules/eslint-scope/README.md +198 -0
  505. avibe_os-3.0.0a0/ui/node_modules/eslint-visitor-keys/LICENSE +201 -0
  506. avibe_os-3.0.0a0/ui/node_modules/eslint-visitor-keys/README.md +121 -0
  507. avibe_os-3.0.0a0/ui/node_modules/espree/LICENSE +25 -0
  508. avibe_os-3.0.0a0/ui/node_modules/espree/README.md +262 -0
  509. avibe_os-3.0.0a0/ui/node_modules/esquery/README.md +27 -0
  510. avibe_os-3.0.0a0/ui/node_modules/esrecurse/README.md +171 -0
  511. avibe_os-3.0.0a0/ui/node_modules/estraverse/README.md +153 -0
  512. avibe_os-3.0.0a0/ui/node_modules/esutils/README.md +174 -0
  513. avibe_os-3.0.0a0/ui/node_modules/extend/LICENSE +23 -0
  514. avibe_os-3.0.0a0/ui/node_modules/extend/README.md +81 -0
  515. avibe_os-3.0.0a0/ui/node_modules/fast-deep-equal/LICENSE +21 -0
  516. avibe_os-3.0.0a0/ui/node_modules/fast-deep-equal/README.md +96 -0
  517. avibe_os-3.0.0a0/ui/node_modules/fast-json-stable-stringify/LICENSE +21 -0
  518. avibe_os-3.0.0a0/ui/node_modules/fast-json-stable-stringify/README.md +131 -0
  519. avibe_os-3.0.0a0/ui/node_modules/fast-levenshtein/README.md +104 -0
  520. avibe_os-3.0.0a0/ui/node_modules/fdir/LICENSE +7 -0
  521. avibe_os-3.0.0a0/ui/node_modules/fdir/README.md +91 -0
  522. avibe_os-3.0.0a0/ui/node_modules/file-entry-cache/LICENSE +22 -0
  523. avibe_os-3.0.0a0/ui/node_modules/file-entry-cache/README.md +115 -0
  524. avibe_os-3.0.0a0/ui/node_modules/flat-cache/LICENSE +22 -0
  525. avibe_os-3.0.0a0/ui/node_modules/flat-cache/README.md +77 -0
  526. avibe_os-3.0.0a0/ui/node_modules/flatted/LICENSE +15 -0
  527. avibe_os-3.0.0a0/ui/node_modules/flatted/README.md +111 -0
  528. avibe_os-3.0.0a0/ui/node_modules/flatted/golang/README.md +60 -0
  529. avibe_os-3.0.0a0/ui/node_modules/fraction.js/LICENSE +21 -0
  530. avibe_os-3.0.0a0/ui/node_modules/fraction.js/README.md +520 -0
  531. avibe_os-3.0.0a0/ui/node_modules/framer-motion/README.md +142 -0
  532. avibe_os-3.0.0a0/ui/node_modules/framer-motion/client/README.md +1 -0
  533. avibe_os-3.0.0a0/ui/node_modules/framer-motion/dom/README.md +1 -0
  534. avibe_os-3.0.0a0/ui/node_modules/fsevents/LICENSE +22 -0
  535. avibe_os-3.0.0a0/ui/node_modules/fsevents/README.md +89 -0
  536. avibe_os-3.0.0a0/ui/node_modules/gensync/LICENSE +7 -0
  537. avibe_os-3.0.0a0/ui/node_modules/gensync/README.md +196 -0
  538. avibe_os-3.0.0a0/ui/node_modules/get-nonce/LICENSE +21 -0
  539. avibe_os-3.0.0a0/ui/node_modules/get-nonce/README.md +54 -0
  540. avibe_os-3.0.0a0/ui/node_modules/glob-parent/LICENSE +15 -0
  541. avibe_os-3.0.0a0/ui/node_modules/glob-parent/README.md +134 -0
  542. avibe_os-3.0.0a0/ui/node_modules/graceful-fs/LICENSE +15 -0
  543. avibe_os-3.0.0a0/ui/node_modules/graceful-fs/README.md +143 -0
  544. avibe_os-3.0.0a0/ui/node_modules/hermes-estree/LICENSE +21 -0
  545. avibe_os-3.0.0a0/ui/node_modules/hermes-estree/README.md +3 -0
  546. avibe_os-3.0.0a0/ui/node_modules/hermes-parser/LICENSE +21 -0
  547. avibe_os-3.0.0a0/ui/node_modules/hermes-parser/README.md +11 -0
  548. avibe_os-3.0.0a0/ui/node_modules/html-parse-stringify/README.md +154 -0
  549. avibe_os-3.0.0a0/ui/node_modules/i18next/LICENSE +21 -0
  550. avibe_os-3.0.0a0/ui/node_modules/i18next/README.md +61 -0
  551. avibe_os-3.0.0a0/ui/node_modules/i18next-browser-languagedetector/LICENSE +22 -0
  552. avibe_os-3.0.0a0/ui/node_modules/i18next-browser-languagedetector/README.md +167 -0
  553. avibe_os-3.0.0a0/ui/node_modules/ignore/README.md +412 -0
  554. avibe_os-3.0.0a0/ui/node_modules/imurmurhash/README.md +122 -0
  555. avibe_os-3.0.0a0/ui/node_modules/inline-style-parser/LICENSE +9 -0
  556. avibe_os-3.0.0a0/ui/node_modules/inline-style-parser/README.md +229 -0
  557. avibe_os-3.0.0a0/ui/node_modules/is-extglob/LICENSE +21 -0
  558. avibe_os-3.0.0a0/ui/node_modules/is-extglob/README.md +107 -0
  559. avibe_os-3.0.0a0/ui/node_modules/is-glob/LICENSE +21 -0
  560. avibe_os-3.0.0a0/ui/node_modules/is-glob/README.md +206 -0
  561. avibe_os-3.0.0a0/ui/node_modules/isexe/LICENSE +15 -0
  562. avibe_os-3.0.0a0/ui/node_modules/isexe/README.md +51 -0
  563. avibe_os-3.0.0a0/ui/node_modules/jiti/LICENSE +21 -0
  564. avibe_os-3.0.0a0/ui/node_modules/jiti/README.md +243 -0
  565. avibe_os-3.0.0a0/ui/node_modules/js-tokens/LICENSE +21 -0
  566. avibe_os-3.0.0a0/ui/node_modules/js-tokens/README.md +240 -0
  567. avibe_os-3.0.0a0/ui/node_modules/js-yaml/LICENSE +21 -0
  568. avibe_os-3.0.0a0/ui/node_modules/js-yaml/README.md +247 -0
  569. avibe_os-3.0.0a0/ui/node_modules/jsesc/README.md +422 -0
  570. avibe_os-3.0.0a0/ui/node_modules/json-buffer/LICENSE +22 -0
  571. avibe_os-3.0.0a0/ui/node_modules/json-buffer/README.md +24 -0
  572. avibe_os-3.0.0a0/ui/node_modules/json-schema-traverse/LICENSE +21 -0
  573. avibe_os-3.0.0a0/ui/node_modules/json-schema-traverse/README.md +83 -0
  574. avibe_os-3.0.0a0/ui/node_modules/json-stable-stringify-without-jsonify/LICENSE +18 -0
  575. avibe_os-3.0.0a0/ui/node_modules/json5/README.md +282 -0
  576. avibe_os-3.0.0a0/ui/node_modules/keyv/README.md +429 -0
  577. avibe_os-3.0.0a0/ui/node_modules/levn/LICENSE +22 -0
  578. avibe_os-3.0.0a0/ui/node_modules/levn/README.md +196 -0
  579. avibe_os-3.0.0a0/ui/node_modules/lightningcss/LICENSE +373 -0
  580. avibe_os-3.0.0a0/ui/node_modules/lightningcss/README.md +105 -0
  581. avibe_os-3.0.0a0/ui/node_modules/lightningcss-darwin-arm64/LICENSE +373 -0
  582. avibe_os-3.0.0a0/ui/node_modules/lightningcss-darwin-arm64/README.md +1 -0
  583. avibe_os-3.0.0a0/ui/node_modules/lodash.merge/LICENSE +47 -0
  584. avibe_os-3.0.0a0/ui/node_modules/lodash.merge/README.md +18 -0
  585. avibe_os-3.0.0a0/ui/node_modules/lru-cache/LICENSE +15 -0
  586. avibe_os-3.0.0a0/ui/node_modules/lru-cache/README.md +166 -0
  587. avibe_os-3.0.0a0/ui/node_modules/lucide-react/LICENSE +39 -0
  588. avibe_os-3.0.0a0/ui/node_modules/lucide-react/README.md +73 -0
  589. avibe_os-3.0.0a0/ui/node_modules/magic-string/LICENSE +7 -0
  590. avibe_os-3.0.0a0/ui/node_modules/magic-string/README.md +325 -0
  591. avibe_os-3.0.0a0/ui/node_modules/minimatch/LICENSE +15 -0
  592. avibe_os-3.0.0a0/ui/node_modules/minimatch/README.md +267 -0
  593. avibe_os-3.0.0a0/ui/node_modules/nanoid/LICENSE +20 -0
  594. avibe_os-3.0.0a0/ui/node_modules/nanoid/README.md +39 -0
  595. avibe_os-3.0.0a0/ui/node_modules/natural-compare/README.md +125 -0
  596. avibe_os-3.0.0a0/ui/node_modules/node-releases/LICENSE +21 -0
  597. avibe_os-3.0.0a0/ui/node_modules/node-releases/README.md +12 -0
  598. avibe_os-3.0.0a0/ui/node_modules/oniguruma-parser/LICENSE +21 -0
  599. avibe_os-3.0.0a0/ui/node_modules/oniguruma-parser/README.md +310 -0
  600. avibe_os-3.0.0a0/ui/node_modules/oniguruma-to-es/LICENSE +21 -0
  601. avibe_os-3.0.0a0/ui/node_modules/oniguruma-to-es/README.md +1110 -0
  602. avibe_os-3.0.0a0/ui/node_modules/optionator/LICENSE +22 -0
  603. avibe_os-3.0.0a0/ui/node_modules/optionator/README.md +238 -0
  604. avibe_os-3.0.0a0/ui/node_modules/papaparse/LICENSE +20 -0
  605. avibe_os-3.0.0a0/ui/node_modules/papaparse/README.md +77 -0
  606. avibe_os-3.0.0a0/ui/node_modules/parse-entities/node_modules/@types/unist/LICENSE +21 -0
  607. avibe_os-3.0.0a0/ui/node_modules/parse-entities/node_modules/@types/unist/README.md +122 -0
  608. avibe_os-3.0.0a0/ui/node_modules/picocolors/LICENSE +15 -0
  609. avibe_os-3.0.0a0/ui/node_modules/picocolors/README.md +21 -0
  610. avibe_os-3.0.0a0/ui/node_modules/picomatch/LICENSE +21 -0
  611. avibe_os-3.0.0a0/ui/node_modules/picomatch/README.md +749 -0
  612. avibe_os-3.0.0a0/ui/node_modules/postcss/LICENSE +20 -0
  613. avibe_os-3.0.0a0/ui/node_modules/postcss/README.md +29 -0
  614. avibe_os-3.0.0a0/ui/node_modules/postcss-value-parser/LICENSE +22 -0
  615. avibe_os-3.0.0a0/ui/node_modules/postcss-value-parser/README.md +263 -0
  616. avibe_os-3.0.0a0/ui/node_modules/prelude-ls/LICENSE +22 -0
  617. avibe_os-3.0.0a0/ui/node_modules/prelude-ls/README.md +15 -0
  618. avibe_os-3.0.0a0/ui/node_modules/punycode/README.md +148 -0
  619. avibe_os-3.0.0a0/ui/node_modules/qrcode.react/LICENSE +18 -0
  620. avibe_os-3.0.0a0/ui/node_modules/qrcode.react/README.md +341 -0
  621. avibe_os-3.0.0a0/ui/node_modules/react/LICENSE +21 -0
  622. avibe_os-3.0.0a0/ui/node_modules/react/README.md +37 -0
  623. avibe_os-3.0.0a0/ui/node_modules/react-dom/LICENSE +21 -0
  624. avibe_os-3.0.0a0/ui/node_modules/react-dom/README.md +60 -0
  625. avibe_os-3.0.0a0/ui/node_modules/react-i18next/LICENSE +22 -0
  626. avibe_os-3.0.0a0/ui/node_modules/react-i18next/README.md +180 -0
  627. avibe_os-3.0.0a0/ui/node_modules/react-refresh/LICENSE +21 -0
  628. avibe_os-3.0.0a0/ui/node_modules/react-refresh/README.md +5 -0
  629. avibe_os-3.0.0a0/ui/node_modules/react-remove-scroll/LICENSE +21 -0
  630. avibe_os-3.0.0a0/ui/node_modules/react-remove-scroll/README.md +153 -0
  631. avibe_os-3.0.0a0/ui/node_modules/react-remove-scroll-bar/README.md +52 -0
  632. avibe_os-3.0.0a0/ui/node_modules/react-router/README.md +7 -0
  633. avibe_os-3.0.0a0/ui/node_modules/react-router-dom/README.md +6 -0
  634. avibe_os-3.0.0a0/ui/node_modules/react-style-singleton/LICENSE +21 -0
  635. avibe_os-3.0.0a0/ui/node_modules/react-style-singleton/README.md +45 -0
  636. avibe_os-3.0.0a0/ui/node_modules/regex/LICENSE +21 -0
  637. avibe_os-3.0.0a0/ui/node_modules/regex/README.md +972 -0
  638. avibe_os-3.0.0a0/ui/node_modules/regex-recursion/LICENSE +21 -0
  639. avibe_os-3.0.0a0/ui/node_modules/regex-recursion/README.md +151 -0
  640. avibe_os-3.0.0a0/ui/node_modules/regex-utilities/LICENSE +21 -0
  641. avibe_os-3.0.0a0/ui/node_modules/regex-utilities/README.md +78 -0
  642. avibe_os-3.0.0a0/ui/node_modules/rollup/README.md +134 -0
  643. avibe_os-3.0.0a0/ui/node_modules/scheduler/LICENSE +21 -0
  644. avibe_os-3.0.0a0/ui/node_modules/scheduler/README.md +9 -0
  645. avibe_os-3.0.0a0/ui/node_modules/semver/LICENSE +15 -0
  646. avibe_os-3.0.0a0/ui/node_modules/semver/README.md +443 -0
  647. avibe_os-3.0.0a0/ui/node_modules/set-cookie-parser/LICENSE +21 -0
  648. avibe_os-3.0.0a0/ui/node_modules/set-cookie-parser/README.md +202 -0
  649. avibe_os-3.0.0a0/ui/node_modules/shiki/LICENSE +22 -0
  650. avibe_os-3.0.0a0/ui/node_modules/shiki/README.md +15 -0
  651. avibe_os-3.0.0a0/ui/node_modules/source-map-js/LICENSE +28 -0
  652. avibe_os-3.0.0a0/ui/node_modules/source-map-js/README.md +765 -0
  653. avibe_os-3.0.0a0/ui/node_modules/style-to-js/LICENSE +22 -0
  654. avibe_os-3.0.0a0/ui/node_modules/style-to-js/README.md +271 -0
  655. avibe_os-3.0.0a0/ui/node_modules/style-to-object/LICENSE +22 -0
  656. avibe_os-3.0.0a0/ui/node_modules/style-to-object/README.md +188 -0
  657. avibe_os-3.0.0a0/ui/node_modules/tailwind-merge/README.md +38 -0
  658. avibe_os-3.0.0a0/ui/node_modules/tailwindcss/LICENSE +21 -0
  659. avibe_os-3.0.0a0/ui/node_modules/tailwindcss/README.md +36 -0
  660. avibe_os-3.0.0a0/ui/node_modules/tapable/LICENSE +21 -0
  661. avibe_os-3.0.0a0/ui/node_modules/tapable/README.md +332 -0
  662. avibe_os-3.0.0a0/ui/node_modules/tinyglobby/LICENSE +21 -0
  663. avibe_os-3.0.0a0/ui/node_modules/tinyglobby/README.md +25 -0
  664. avibe_os-3.0.0a0/ui/node_modules/ts-api-utils/README.md +40 -0
  665. avibe_os-3.0.0a0/ui/node_modules/tslib/README.md +164 -0
  666. avibe_os-3.0.0a0/ui/node_modules/tw-animate-css/LICENSE +21 -0
  667. avibe_os-3.0.0a0/ui/node_modules/tw-animate-css/README.md +230 -0
  668. avibe_os-3.0.0a0/ui/node_modules/type-check/LICENSE +22 -0
  669. avibe_os-3.0.0a0/ui/node_modules/type-check/README.md +210 -0
  670. avibe_os-3.0.0a0/ui/node_modules/typescript/README.md +50 -0
  671. avibe_os-3.0.0a0/ui/node_modules/typescript-eslint/LICENSE +21 -0
  672. avibe_os-3.0.0a0/ui/node_modules/typescript-eslint/README.md +12 -0
  673. avibe_os-3.0.0a0/ui/node_modules/undici-types/LICENSE +21 -0
  674. avibe_os-3.0.0a0/ui/node_modules/undici-types/README.md +6 -0
  675. avibe_os-3.0.0a0/ui/node_modules/update-browserslist-db/LICENSE +20 -0
  676. avibe_os-3.0.0a0/ui/node_modules/update-browserslist-db/README.md +30 -0
  677. avibe_os-3.0.0a0/ui/node_modules/uri-js/LICENSE +11 -0
  678. avibe_os-3.0.0a0/ui/node_modules/uri-js/README.md +203 -0
  679. avibe_os-3.0.0a0/ui/node_modules/use-callback-ref/LICENSE +21 -0
  680. avibe_os-3.0.0a0/ui/node_modules/use-callback-ref/README.md +170 -0
  681. avibe_os-3.0.0a0/ui/node_modules/use-sidecar/LICENSE +21 -0
  682. avibe_os-3.0.0a0/ui/node_modules/use-sidecar/README.md +349 -0
  683. avibe_os-3.0.0a0/ui/node_modules/use-sync-external-store/LICENSE +21 -0
  684. avibe_os-3.0.0a0/ui/node_modules/use-sync-external-store/README.md +5 -0
  685. avibe_os-3.0.0a0/ui/node_modules/vite/README.md +20 -0
  686. avibe_os-3.0.0a0/ui/node_modules/void-elements/LICENSE +22 -0
  687. avibe_os-3.0.0a0/ui/node_modules/void-elements/README.md +27 -0
  688. avibe_os-3.0.0a0/ui/node_modules/which/LICENSE +15 -0
  689. avibe_os-3.0.0a0/ui/node_modules/which/README.md +54 -0
  690. avibe_os-3.0.0a0/ui/node_modules/word-wrap/LICENSE +21 -0
  691. avibe_os-3.0.0a0/ui/node_modules/word-wrap/README.md +201 -0
  692. avibe_os-3.0.0a0/ui/node_modules/yallist/LICENSE +15 -0
  693. avibe_os-3.0.0a0/ui/node_modules/yallist/README.md +204 -0
  694. avibe_os-3.0.0a0/ui/node_modules/zod/LICENSE +21 -0
  695. avibe_os-3.0.0a0/ui/node_modules/zod/README.md +208 -0
  696. avibe_os-3.0.0a0/ui/node_modules/zod-validation-error/LICENSE +9 -0
  697. avibe_os-3.0.0a0/ui/node_modules/zod-validation-error/README.md +504 -0
  698. avibe_os-3.0.0a0/vibe/__init__.py +6 -0
  699. avibe_os-3.0.0a0/vibe/__main__.py +12 -0
  700. avibe_os-3.0.0a0/vibe/_version.py +24 -0
  701. avibe_os-3.0.0a0/vibe/api.py +6556 -0
  702. avibe_os-3.0.0a0/vibe/async_bridge.py +28 -0
  703. avibe_os-3.0.0a0/vibe/claude_config.py +375 -0
  704. avibe_os-3.0.0a0/vibe/claude_model_catalog.py +113 -0
  705. avibe_os-3.0.0a0/vibe/cli.py +6315 -0
  706. avibe_os-3.0.0a0/vibe/codex_config.py +612 -0
  707. avibe_os-3.0.0a0/vibe/data/claude_models.json +27 -0
  708. avibe_os-3.0.0a0/vibe/global_agents_md.py +156 -0
  709. avibe_os-3.0.0a0/vibe/i18n/__init__.py +135 -0
  710. avibe_os-3.0.0a0/vibe/i18n/en.json +375 -0
  711. avibe_os-3.0.0a0/vibe/i18n/zh.json +375 -0
  712. avibe_os-3.0.0a0/vibe/inbox_bridge.py +60 -0
  713. avibe_os-3.0.0a0/vibe/internal_client.py +319 -0
  714. avibe_os-3.0.0a0/vibe/opencode_config.py +1074 -0
  715. avibe_os-3.0.0a0/vibe/project_agents_md.py +120 -0
  716. avibe_os-3.0.0a0/vibe/proxy.py +110 -0
  717. avibe_os-3.0.0a0/vibe/remote_access.py +859 -0
  718. avibe_os-3.0.0a0/vibe/restart_supervisor.py +257 -0
  719. avibe_os-3.0.0a0/vibe/runtime.py +865 -0
  720. avibe_os-3.0.0a0/vibe/screenshot.py +181 -0
  721. avibe_os-3.0.0a0/vibe/sentry_integration.py +482 -0
  722. avibe_os-3.0.0a0/vibe/show_runtime/.gitkeep +0 -0
  723. avibe_os-3.0.0a0/vibe/sse_broker.py +104 -0
  724. avibe_os-3.0.0a0/vibe/templates/slack_manifest.json +65 -0
  725. avibe_os-3.0.0a0/vibe/ui_compat.py +521 -0
  726. avibe_os-3.0.0a0/vibe/ui_server.py +6156 -0
  727. 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/
@@ -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
+ [![GitHub Stars](https://img.shields.io/github/stars/cyhhao/vibe-remote?color=ffcb47&labelColor=black&style=flat-square)](https://github.com/cyhhao/vibe-remote/stargazers)
64
+ [![Python](https://img.shields.io/badge/python-3.9%2B-3776AB?labelColor=black&style=flat-square)](https://www.python.org/)
65
+ [![License](https://img.shields.io/badge/license-MIT-green?labelColor=black&style=flat-square)](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
+ ![Slack](https://img.shields.io/badge/Slack-4A154B?style=flat-square&logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACMAAAAiCAYAAADVhWD8AAACT0lEQVR42s2VQW7bMBBFfQQdoDa47CIiBBSuu/QRvCpid1HdwNrHjnUDH4Ww0irdCWjtZukjMF0ViGOM0wuoZJRkCFkUJZmIMsAHLXNAPo5Gn506Mdg8TD9uDlwofRxv/n3N59Afl1Maz0EoFeI0vsQcW9Ffgy8h8hr8huAF5Hq2kBB5WQfCihwJnnNkJYphZlvbMKlOXgKOdx2SYwiUbRjQwXy6AfKqMIM1BO3DqNX5BSH2TqswGHJzVfI/6zC4kVkdJZrAEBY6HguJ1tD6a2zSMqHpPSyawNB4sdQYIxpafaHpmWEQpGj+7OpimMFsDtvaICioCuOx0NHNu/E8QUMzyIbpeeL0JTn86TUdkhNguHIdgO46QBhDZT78hFFjGHlzI0yguyhLYbBnsIn761q9w6Urd3Lhfp/7eGHK8SLL0cC48SxBkLca3Bk5nJwTVbqcsnWAEecv80gFFa/zpzeZ3va+wG1vkqqSGys5CzVHPufX2Ud0eR9REEqraBdRvr+iuA7vTnwEOIZBkIL53jjIgaSN9I1mH4I47dYEI35zTQ48wzSBQLlJBoMLF8Jw4jtlOXIN+f5PgRFV5RlMd5yUnVoClcJgZeDkyvB358PifpiEdWDuIho0hdmxs6HSxOORUiGOjVkZJgNirn+/otuKECArgiDmMMNYCOswO+YNVQF7T1qA0X9N+8hdtg6jareiYfswqofYChum17EZYlPNlTHmBtNDQ7MQ6ENFxtj9PDKZ3h3zPJss6NSZMXI5ymecRdOTldivKBcjqwPyH3MZonz6I6ghAAAAAElFTkSuQmCC)
74
+ ![Discord](https://img.shields.io/badge/Discord-5865F2?style=flat-square&logo=discord&logoColor=white)
75
+ ![Telegram](https://img.shields.io/badge/Telegram-26A5E4?style=flat-square&logo=telegram&logoColor=white)
76
+ ![WeChat](https://img.shields.io/badge/WeChat-07C160?style=flat-square&logo=wechat&logoColor=white)
77
+ ![Lark](https://img.shields.io/badge/Lark%20%2F%20Feishu-3370FF?style=flat-square&logo=bytedance&logoColor=white)
78
+
79
+ **Supported Agents**
80
+
81
+ ![Claude Code](https://img.shields.io/badge/Claude%20Code-D4A27F?style=flat-square&logo=anthropic&logoColor=white)
82
+ ![OpenCode](https://img.shields.io/badge/OpenCode-00B4D8?style=flat-square&logo=data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAzMCIgZmlsbD0ibm9uZSI+PHBhdGggZD0iTTE4IDZINlYyNEgxOFY2Wk0yNCAzMEgwVjBIMjRWMzBaIiBmaWxsPSIjZmZmIi8+PC9zdmc+)
83
+ ![Codex](https://img.shields.io/badge/Codex-412991?style=flat-square&logo=data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAIAAAD8GO2jAAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAAAIKADAAQAAAABAAAAIAAAAACshmLzAAAEHklEQVRIDe2VWSitbRTHDyGZZ5EhQyJTxgwhKVOZM4QLuSCSqXBDUS5wQZkuSUSZbkw3KKSMhSJCCZmnEJnP7+s9Obt3s/f39XXuzlN7t571rLX+z7PWf61X4ePj48efXIp/Mvg/sf8CyM2wklwLDI6Ojubm5k5PTy0sLPz8/HR1df+N1y8bWCRjvb29VVdX6+npGRoaWltba2trW1patrW1HR4eLi8vb21tPT8/y3Dn6Ifs44KCAgMDg66urqurq/f39/Pz86SkJK6mo6OjoaGhpqbm6OjY2dkpI4gsgJmZGVVV1YWFBcGfW+fm5urr6ycnJ4+Pj+/u7pK3wsJCJSWl8vLy7zC+Bbi5uYmNjU1MTMTz/v6+vr6ep7i5uY2NjYli9fT08CYgRXph+zVAb2+vubk5bg0NDdjl5+draWk1NTW9vLywXVlZCQsLc3BwGBgYEKJERERERUUJsuj/i0br7+9PTU1NSUmxt7enyMDs7OyQlry8vOvr69LS0pCQEJT+/v7p6emRkZEbGxsJCQlra2vAoxcvESDFNDY2LisrQ09C6urqEKKjozMyMtrb201MTPDnsgJ5lpaWQkNDoZaXl5eTkxO3EUVjK05RX18fDpeXl5y5uroKALxGWVnZyMiotraWYpiZmfn6+k5MTAjhcLGzsyOlJycn8gEqKyu5uGAHAOGQ4+Li6K/9/X1BjxAQEMBTAN7e3kZ5cXHh6enJy6QfIa4Bxby7u4Py+L++vpJZoQyACWVHj8AlnJ2d6W0fH5+Wlha429raCsHoPgwklxggMDBwb29vcXERI8gzPDwcFBTENUmRpBv1tLW1JUvwuLGxkSMPDw8rKytaR9IMWQzg7u7OS3Nycs7OzrKysubn53FbX1+nngALzggwFVlBQYFOFrAVFRXpbV4v2Pz+F9Iq+U9ohhqThw4S9FNTUyTd1NS0pqaG0cRcUlFRgbic0ihgIMAL2AHFJUMhi1mEiqTDOW9vbwZOcHAw8wAlvORl3IsCMJoyMzPhLnoAKAZCSUkJN6BRkCWXOEWEoMLMhuzsbPJDzcGgCcLDw0GqqKhYXV1NS0sjIVAAY4THx8fi4mKQaHXu9Ds5giSJ9inHxMTQosJ2ZGQEzjCX6Fg0T09PxNLU1CwqKmLb3NxMHOo0ODj46S4pfJEijicnJ7lad3e3pCny0NAQCaHVuezDwwMaWiE+Pp7aiiw/t18DcFxVVQU9mM/T09Obm5ujo6MEYqDC3ePjY8GfSc4nYXZ29jOctPAtAKawyMXFRV1dHf4Jn0mGGvOAJuDL09HRAR7Zlw4qqZEFgB2VZJRSWOJCHhsbG8rOV5PWhaywVno2SEZHVuAnrvv3+9vbW7h0cHDA4IPHFON7218n/w1Abjhpgy/6QNro/2j+AsjN3k91TuJWs4eHugAAAABJRU5ErkJggg==)
84
+
85
+ ---
86
+
87
+ ![Banner](assets/banner.jpg)
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
+ ![Setup Wizard](assets/screenshots/setup-slack-en.png)
204
+
205
+ </td>
206
+ <td width="33%">
207
+
208
+ ### Dashboard
209
+
210
+ Real-time status, health monitoring, and quick controls.
211
+
212
+ ![Dashboard](assets/screenshots/dashboard-en.png)
213
+
214
+ </td>
215
+ <td width="33%">
216
+
217
+ ### Channel Routing
218
+
219
+ Per-channel agent configuration. Different projects, different agents.
220
+
221
+ ![Channels](assets/screenshots/channels-en.png)
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
+ ![Interactive Prompts](assets/screenshots/question-en.jpg)
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>