vibego 0.2.58__tar.gz → 1.0.7__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.

Potentially problematic release.


This version of vibego might be problematic. Click here for more details.

Files changed (480) hide show
  1. vibego-1.0.7/LICENSE +201 -0
  2. vibego-1.0.7/PKG-INFO +226 -0
  3. vibego-1.0.7/README.md +205 -0
  4. {vibego-0.2.58 → vibego-1.0.7}/bot.py +1264 -1112
  5. {vibego-0.2.58 → vibego-1.0.7}/logging_setup.py +25 -18
  6. {vibego-0.2.58 → vibego-1.0.7}/master.py +812 -506
  7. {vibego-0.2.58 → vibego-1.0.7}/project_repository.py +42 -40
  8. {vibego-0.2.58 → vibego-1.0.7}/pyproject.toml +4 -4
  9. vibego-1.0.7/scripts/__init__.py +1 -0
  10. vibego-1.0.7/scripts/bump_version.sh +154 -0
  11. {vibego-0.2.58 → vibego-1.0.7}/scripts/log_writer.py +19 -16
  12. vibego-1.0.7/scripts/master_healthcheck.py +122 -0
  13. {vibego-0.2.58 → vibego-1.0.7}/scripts/models/claudecode.sh +4 -4
  14. {vibego-0.2.58 → vibego-1.0.7}/scripts/models/codex.sh +1 -1
  15. {vibego-0.2.58 → vibego-1.0.7}/scripts/models/common.sh +24 -6
  16. {vibego-0.2.58 → vibego-1.0.7}/scripts/models/gemini.sh +2 -2
  17. vibego-1.0.7/scripts/publish.sh +126 -0
  18. {vibego-0.2.58 → vibego-1.0.7}/scripts/requirements.txt +1 -0
  19. {vibego-0.2.58 → vibego-1.0.7}/scripts/run_bot.sh +41 -17
  20. vibego-1.0.7/scripts/session_pointer_watch.py +260 -0
  21. vibego-1.0.7/scripts/start.sh +473 -0
  22. {vibego-0.2.58 → vibego-1.0.7}/scripts/start_tmux_codex.sh +30 -8
  23. {vibego-0.2.58 → vibego-1.0.7}/scripts/stop_all.sh +21 -21
  24. {vibego-0.2.58 → vibego-1.0.7}/scripts/stop_bot.sh +31 -10
  25. vibego-1.0.7/scripts/test_deps_check.sh +70 -0
  26. {vibego-0.2.58 → vibego-1.0.7}/tasks/__init__.py +1 -1
  27. {vibego-0.2.58 → vibego-1.0.7}/tasks/commands.py +4 -4
  28. {vibego-0.2.58 → vibego-1.0.7}/tasks/constants.py +1 -1
  29. {vibego-0.2.58 → vibego-1.0.7}/tasks/fsm.py +9 -9
  30. {vibego-0.2.58 → vibego-1.0.7}/tasks/models.py +7 -7
  31. {vibego-0.2.58 → vibego-1.0.7}/tasks/service.py +56 -56
  32. {vibego-0.2.58 → vibego-1.0.7}/tests/test_attachment_prompt_format.py +10 -7
  33. {vibego-0.2.58 → vibego-1.0.7}/tests/test_auto_compact.py +19 -19
  34. {vibego-0.2.58 → vibego-1.0.7}/tests/test_chat_menu_buttons.py +5 -5
  35. {vibego-0.2.58 → vibego-1.0.7}/tests/test_claudecode_jsonl.py +8 -8
  36. {vibego-0.2.58 → vibego-1.0.7}/tests/test_long_poll_mechanism.py +68 -68
  37. {vibego-0.2.58 → vibego-1.0.7}/tests/test_markdown_guard.py +19 -19
  38. {vibego-0.2.58 → vibego-1.0.7}/tests/test_master_project_management.py +61 -57
  39. {vibego-0.2.58 → vibego-1.0.7}/tests/test_master_restart.py +65 -65
  40. vibego-1.0.7/tests/test_master_update_notifications.py +216 -0
  41. {vibego-0.2.58 → vibego-1.0.7}/tests/test_numbered_reply_inputs.py +29 -25
  42. {vibego-0.2.58 → vibego-1.0.7}/tests/test_plan_progress.py +39 -39
  43. vibego-1.0.7/tests/test_session_lock.py +227 -0
  44. vibego-1.0.7/tests/test_session_pointer_watch.py +121 -0
  45. {vibego-0.2.58 → vibego-1.0.7}/tests/test_task_create_flow.py +46 -46
  46. {vibego-0.2.58 → vibego-1.0.7}/tests/test_task_description.py +334 -334
  47. {vibego-0.2.58 → vibego-1.0.7}/tests/test_task_detail_back.py +31 -31
  48. {vibego-0.2.58 → vibego-1.0.7}/tests/test_task_list_entry.py +74 -74
  49. {vibego-0.2.58 → vibego-1.0.7}/tests/test_telegram_markdown_renderer.py +5 -5
  50. vibego-1.0.7/tests/test_unescape_markdown.py +340 -0
  51. vibego-1.0.7/tests/test_version_display.py +55 -0
  52. vibego-1.0.7/vibego.egg-info/PKG-INFO +226 -0
  53. {vibego-0.2.58 → vibego-1.0.7}/vibego.egg-info/SOURCES.txt +5 -0
  54. vibego-1.0.7/vibego_cli/__init__.py +13 -0
  55. {vibego-0.2.58 → vibego-1.0.7}/vibego_cli/__main__.py +1 -2
  56. {vibego-0.2.58 → vibego-1.0.7}/vibego_cli/config.py +9 -9
  57. {vibego-0.2.58 → vibego-1.0.7}/vibego_cli/deps.py +8 -9
  58. {vibego-0.2.58 → vibego-1.0.7}/vibego_cli/main.py +63 -63
  59. vibego-0.2.58/PKG-INFO +0 -197
  60. vibego-0.2.58/README.md +0 -178
  61. vibego-0.2.58/scripts/__init__.py +0 -2
  62. vibego-0.2.58/scripts/bump_version.sh +0 -152
  63. vibego-0.2.58/scripts/master_healthcheck.py +0 -222
  64. vibego-0.2.58/scripts/publish.sh +0 -126
  65. vibego-0.2.58/scripts/start.sh +0 -446
  66. vibego-0.2.58/scripts/test_deps_check.sh +0 -66
  67. vibego-0.2.58/tests/test_unescape_markdown.py +0 -340
  68. vibego-0.2.58/tests/test_version_display.py +0 -56
  69. vibego-0.2.58/vibego.egg-info/PKG-INFO +0 -197
  70. vibego-0.2.58/vibego_cli/__init__.py +0 -12
  71. {vibego-0.2.58 → vibego-1.0.7}/MANIFEST.in +0 -0
  72. {vibego-0.2.58 → vibego-1.0.7}/config/projects.json.example +0 -0
  73. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/__init__.py +0 -0
  74. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/__main__.py +0 -0
  75. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/__pip-runner__.py +0 -0
  76. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/__init__.py +0 -0
  77. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/build_env.py +0 -0
  78. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/cache.py +0 -0
  79. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/cli/__init__.py +0 -0
  80. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/cli/autocompletion.py +0 -0
  81. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/cli/base_command.py +0 -0
  82. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/cli/cmdoptions.py +0 -0
  83. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/cli/command_context.py +0 -0
  84. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/cli/index_command.py +0 -0
  85. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/cli/main.py +0 -0
  86. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/cli/main_parser.py +0 -0
  87. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/cli/parser.py +0 -0
  88. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/cli/progress_bars.py +0 -0
  89. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/cli/req_command.py +0 -0
  90. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/cli/spinners.py +0 -0
  91. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/cli/status_codes.py +0 -0
  92. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/commands/__init__.py +0 -0
  93. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/commands/cache.py +0 -0
  94. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/commands/check.py +0 -0
  95. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/commands/completion.py +0 -0
  96. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/commands/configuration.py +0 -0
  97. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/commands/debug.py +0 -0
  98. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/commands/download.py +0 -0
  99. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/commands/freeze.py +0 -0
  100. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/commands/hash.py +0 -0
  101. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/commands/help.py +0 -0
  102. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/commands/index.py +0 -0
  103. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/commands/inspect.py +0 -0
  104. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/commands/install.py +0 -0
  105. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/commands/list.py +0 -0
  106. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/commands/lock.py +0 -0
  107. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/commands/search.py +0 -0
  108. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/commands/show.py +0 -0
  109. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/commands/uninstall.py +0 -0
  110. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/commands/wheel.py +0 -0
  111. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/configuration.py +0 -0
  112. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/distributions/__init__.py +0 -0
  113. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/distributions/base.py +0 -0
  114. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/distributions/installed.py +0 -0
  115. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/distributions/sdist.py +0 -0
  116. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/distributions/wheel.py +0 -0
  117. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/exceptions.py +0 -0
  118. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/index/__init__.py +0 -0
  119. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/index/collector.py +0 -0
  120. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/index/package_finder.py +0 -0
  121. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/index/sources.py +0 -0
  122. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/locations/__init__.py +0 -0
  123. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/locations/_distutils.py +0 -0
  124. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/locations/_sysconfig.py +0 -0
  125. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/locations/base.py +0 -0
  126. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/main.py +0 -0
  127. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/metadata/__init__.py +0 -0
  128. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/metadata/_json.py +0 -0
  129. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/metadata/base.py +0 -0
  130. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/metadata/importlib/__init__.py +0 -0
  131. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/metadata/importlib/_compat.py +0 -0
  132. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/metadata/importlib/_dists.py +0 -0
  133. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/metadata/importlib/_envs.py +0 -0
  134. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/metadata/pkg_resources.py +0 -0
  135. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/models/__init__.py +0 -0
  136. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/models/candidate.py +0 -0
  137. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/models/direct_url.py +0 -0
  138. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/models/format_control.py +0 -0
  139. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/models/index.py +0 -0
  140. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/models/installation_report.py +0 -0
  141. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/models/link.py +0 -0
  142. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/models/pylock.py +0 -0
  143. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/models/scheme.py +0 -0
  144. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/models/search_scope.py +0 -0
  145. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/models/selection_prefs.py +0 -0
  146. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/models/target_python.py +0 -0
  147. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/models/wheel.py +0 -0
  148. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/network/__init__.py +0 -0
  149. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/network/auth.py +0 -0
  150. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/network/cache.py +0 -0
  151. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/network/download.py +0 -0
  152. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/network/lazy_wheel.py +0 -0
  153. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/network/session.py +0 -0
  154. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/network/utils.py +0 -0
  155. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/network/xmlrpc.py +0 -0
  156. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/operations/__init__.py +0 -0
  157. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/operations/build/__init__.py +0 -0
  158. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/operations/build/build_tracker.py +0 -0
  159. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/operations/build/metadata.py +0 -0
  160. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/operations/build/metadata_editable.py +0 -0
  161. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/operations/build/metadata_legacy.py +0 -0
  162. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/operations/build/wheel.py +0 -0
  163. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/operations/build/wheel_editable.py +0 -0
  164. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/operations/build/wheel_legacy.py +0 -0
  165. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/operations/check.py +0 -0
  166. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/operations/freeze.py +0 -0
  167. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/operations/install/__init__.py +0 -0
  168. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/operations/install/editable_legacy.py +0 -0
  169. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/operations/install/wheel.py +0 -0
  170. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/operations/prepare.py +0 -0
  171. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/pyproject.py +0 -0
  172. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/req/__init__.py +0 -0
  173. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/req/constructors.py +0 -0
  174. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/req/req_dependency_group.py +0 -0
  175. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/req/req_file.py +0 -0
  176. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/req/req_install.py +0 -0
  177. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/req/req_set.py +0 -0
  178. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/req/req_uninstall.py +0 -0
  179. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/resolution/__init__.py +0 -0
  180. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/resolution/base.py +0 -0
  181. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/resolution/legacy/__init__.py +0 -0
  182. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/resolution/legacy/resolver.py +0 -0
  183. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/resolution/resolvelib/__init__.py +0 -0
  184. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/resolution/resolvelib/base.py +0 -0
  185. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/resolution/resolvelib/candidates.py +0 -0
  186. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/resolution/resolvelib/factory.py +0 -0
  187. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py +0 -0
  188. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/resolution/resolvelib/provider.py +0 -0
  189. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/resolution/resolvelib/reporter.py +0 -0
  190. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/resolution/resolvelib/requirements.py +0 -0
  191. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/resolution/resolvelib/resolver.py +0 -0
  192. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/self_outdated_check.py +0 -0
  193. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/utils/__init__.py +0 -0
  194. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/utils/_jaraco_text.py +0 -0
  195. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/utils/_log.py +0 -0
  196. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/utils/appdirs.py +0 -0
  197. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/utils/compat.py +0 -0
  198. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/utils/compatibility_tags.py +0 -0
  199. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/utils/datetime.py +0 -0
  200. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/utils/deprecation.py +0 -0
  201. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/utils/direct_url_helpers.py +0 -0
  202. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/utils/egg_link.py +0 -0
  203. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/utils/entrypoints.py +0 -0
  204. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/utils/filesystem.py +0 -0
  205. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/utils/filetypes.py +0 -0
  206. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/utils/glibc.py +0 -0
  207. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/utils/hashes.py +0 -0
  208. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/utils/logging.py +0 -0
  209. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/utils/misc.py +0 -0
  210. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/utils/packaging.py +0 -0
  211. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/utils/retry.py +0 -0
  212. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/utils/setuptools_build.py +0 -0
  213. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/utils/subprocess.py +0 -0
  214. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/utils/temp_dir.py +0 -0
  215. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/utils/unpacking.py +0 -0
  216. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/utils/urls.py +0 -0
  217. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/utils/virtualenv.py +0 -0
  218. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/utils/wheel.py +0 -0
  219. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/vcs/__init__.py +0 -0
  220. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/vcs/bazaar.py +0 -0
  221. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/vcs/git.py +0 -0
  222. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/vcs/mercurial.py +0 -0
  223. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/vcs/subversion.py +0 -0
  224. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/vcs/versioncontrol.py +0 -0
  225. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/wheel_builder.py +0 -0
  226. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/__init__.py +0 -0
  227. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/cachecontrol/__init__.py +0 -0
  228. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/cachecontrol/_cmd.py +0 -0
  229. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/cachecontrol/adapter.py +0 -0
  230. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/cachecontrol/cache.py +0 -0
  231. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/cachecontrol/caches/__init__.py +0 -0
  232. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py +0 -0
  233. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py +0 -0
  234. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/cachecontrol/controller.py +0 -0
  235. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/cachecontrol/filewrapper.py +0 -0
  236. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/cachecontrol/heuristics.py +0 -0
  237. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/cachecontrol/serialize.py +0 -0
  238. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/cachecontrol/wrapper.py +0 -0
  239. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/certifi/__init__.py +0 -0
  240. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/certifi/__main__.py +0 -0
  241. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/certifi/core.py +0 -0
  242. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/dependency_groups/__init__.py +0 -0
  243. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/dependency_groups/__main__.py +0 -0
  244. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/dependency_groups/_implementation.py +0 -0
  245. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/dependency_groups/_lint_dependency_groups.py +0 -0
  246. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/dependency_groups/_pip_wrapper.py +0 -0
  247. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/dependency_groups/_toml_compat.py +0 -0
  248. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/distlib/__init__.py +0 -0
  249. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/distlib/compat.py +0 -0
  250. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/distlib/resources.py +0 -0
  251. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/distlib/scripts.py +0 -0
  252. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/distlib/util.py +0 -0
  253. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/distro/__init__.py +0 -0
  254. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/distro/__main__.py +0 -0
  255. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/distro/distro.py +0 -0
  256. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/idna/__init__.py +0 -0
  257. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/idna/codec.py +0 -0
  258. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/idna/compat.py +0 -0
  259. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/idna/core.py +0 -0
  260. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/idna/idnadata.py +0 -0
  261. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/idna/intranges.py +0 -0
  262. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/idna/package_data.py +0 -0
  263. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/idna/uts46data.py +0 -0
  264. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/msgpack/__init__.py +0 -0
  265. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/msgpack/exceptions.py +0 -0
  266. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/msgpack/ext.py +0 -0
  267. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/msgpack/fallback.py +0 -0
  268. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/packaging/__init__.py +0 -0
  269. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/packaging/_elffile.py +0 -0
  270. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/packaging/_manylinux.py +0 -0
  271. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/packaging/_musllinux.py +0 -0
  272. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/packaging/_parser.py +0 -0
  273. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/packaging/_structures.py +0 -0
  274. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/packaging/_tokenizer.py +0 -0
  275. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/packaging/licenses/__init__.py +0 -0
  276. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/packaging/licenses/_spdx.py +0 -0
  277. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/packaging/markers.py +0 -0
  278. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/packaging/metadata.py +0 -0
  279. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/packaging/requirements.py +0 -0
  280. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/packaging/specifiers.py +0 -0
  281. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/packaging/tags.py +0 -0
  282. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/packaging/utils.py +0 -0
  283. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/packaging/version.py +0 -0
  284. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pkg_resources/__init__.py +0 -0
  285. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/platformdirs/__init__.py +0 -0
  286. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/platformdirs/__main__.py +0 -0
  287. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/platformdirs/android.py +0 -0
  288. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/platformdirs/api.py +0 -0
  289. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/platformdirs/macos.py +0 -0
  290. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/platformdirs/unix.py +0 -0
  291. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/platformdirs/version.py +0 -0
  292. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/platformdirs/windows.py +0 -0
  293. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pygments/__init__.py +0 -0
  294. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pygments/__main__.py +0 -0
  295. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pygments/console.py +0 -0
  296. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pygments/filter.py +0 -0
  297. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pygments/filters/__init__.py +0 -0
  298. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pygments/formatter.py +0 -0
  299. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pygments/formatters/__init__.py +0 -0
  300. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pygments/formatters/_mapping.py +0 -0
  301. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pygments/lexer.py +0 -0
  302. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pygments/lexers/__init__.py +0 -0
  303. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pygments/lexers/_mapping.py +0 -0
  304. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pygments/lexers/python.py +0 -0
  305. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pygments/modeline.py +0 -0
  306. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pygments/plugin.py +0 -0
  307. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pygments/regexopt.py +0 -0
  308. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pygments/scanner.py +0 -0
  309. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pygments/sphinxext.py +0 -0
  310. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pygments/style.py +0 -0
  311. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pygments/styles/__init__.py +0 -0
  312. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pygments/styles/_mapping.py +0 -0
  313. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pygments/token.py +0 -0
  314. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pygments/unistring.py +0 -0
  315. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pygments/util.py +0 -0
  316. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pyproject_hooks/__init__.py +0 -0
  317. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pyproject_hooks/_impl.py +0 -0
  318. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py +0 -0
  319. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py +0 -0
  320. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/requests/__init__.py +0 -0
  321. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/requests/__version__.py +0 -0
  322. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/requests/_internal_utils.py +0 -0
  323. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/requests/adapters.py +0 -0
  324. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/requests/api.py +0 -0
  325. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/requests/auth.py +0 -0
  326. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/requests/certs.py +0 -0
  327. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/requests/compat.py +0 -0
  328. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/requests/cookies.py +0 -0
  329. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/requests/exceptions.py +0 -0
  330. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/requests/help.py +0 -0
  331. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/requests/hooks.py +0 -0
  332. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/requests/models.py +0 -0
  333. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/requests/packages.py +0 -0
  334. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/requests/sessions.py +0 -0
  335. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/requests/status_codes.py +0 -0
  336. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/requests/structures.py +0 -0
  337. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/requests/utils.py +0 -0
  338. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/resolvelib/__init__.py +0 -0
  339. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/resolvelib/providers.py +0 -0
  340. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/resolvelib/reporters.py +0 -0
  341. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/resolvelib/resolvers/__init__.py +0 -0
  342. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/resolvelib/resolvers/abstract.py +0 -0
  343. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/resolvelib/resolvers/criterion.py +0 -0
  344. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/resolvelib/resolvers/exceptions.py +0 -0
  345. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/resolvelib/resolvers/resolution.py +0 -0
  346. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/resolvelib/structs.py +0 -0
  347. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/__init__.py +0 -0
  348. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/__main__.py +0 -0
  349. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/_cell_widths.py +0 -0
  350. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/_emoji_codes.py +0 -0
  351. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/_emoji_replace.py +0 -0
  352. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/_export_format.py +0 -0
  353. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/_extension.py +0 -0
  354. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/_fileno.py +0 -0
  355. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/_inspect.py +0 -0
  356. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/_log_render.py +0 -0
  357. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/_loop.py +0 -0
  358. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/_null_file.py +0 -0
  359. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/_palettes.py +0 -0
  360. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/_pick.py +0 -0
  361. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/_ratio.py +0 -0
  362. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/_spinners.py +0 -0
  363. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/_stack.py +0 -0
  364. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/_timer.py +0 -0
  365. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/_win32_console.py +0 -0
  366. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/_windows.py +0 -0
  367. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/_windows_renderer.py +0 -0
  368. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/_wrap.py +0 -0
  369. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/abc.py +0 -0
  370. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/align.py +0 -0
  371. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/ansi.py +0 -0
  372. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/bar.py +0 -0
  373. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/box.py +0 -0
  374. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/cells.py +0 -0
  375. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/color.py +0 -0
  376. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/color_triplet.py +0 -0
  377. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/columns.py +0 -0
  378. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/console.py +0 -0
  379. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/constrain.py +0 -0
  380. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/containers.py +0 -0
  381. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/control.py +0 -0
  382. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/default_styles.py +0 -0
  383. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/diagnose.py +0 -0
  384. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/emoji.py +0 -0
  385. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/errors.py +0 -0
  386. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/file_proxy.py +0 -0
  387. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/filesize.py +0 -0
  388. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/highlighter.py +0 -0
  389. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/json.py +0 -0
  390. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/jupyter.py +0 -0
  391. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/layout.py +0 -0
  392. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/live.py +0 -0
  393. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/live_render.py +0 -0
  394. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/logging.py +0 -0
  395. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/markup.py +0 -0
  396. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/measure.py +0 -0
  397. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/padding.py +0 -0
  398. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/pager.py +0 -0
  399. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/palette.py +0 -0
  400. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/panel.py +0 -0
  401. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/pretty.py +0 -0
  402. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/progress.py +0 -0
  403. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/progress_bar.py +0 -0
  404. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/prompt.py +0 -0
  405. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/protocol.py +0 -0
  406. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/region.py +0 -0
  407. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/repr.py +0 -0
  408. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/rule.py +0 -0
  409. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/scope.py +0 -0
  410. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/screen.py +0 -0
  411. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/segment.py +0 -0
  412. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/spinner.py +0 -0
  413. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/status.py +0 -0
  414. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/style.py +0 -0
  415. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/styled.py +0 -0
  416. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/syntax.py +0 -0
  417. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/table.py +0 -0
  418. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/terminal_theme.py +0 -0
  419. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/text.py +0 -0
  420. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/theme.py +0 -0
  421. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/themes.py +0 -0
  422. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/traceback.py +0 -0
  423. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/tree.py +0 -0
  424. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/tomli/__init__.py +0 -0
  425. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/tomli/_parser.py +0 -0
  426. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/tomli/_re.py +0 -0
  427. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/tomli/_types.py +0 -0
  428. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/tomli_w/__init__.py +0 -0
  429. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/tomli_w/_writer.py +0 -0
  430. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/truststore/__init__.py +0 -0
  431. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/truststore/_api.py +0 -0
  432. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/truststore/_macos.py +0 -0
  433. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/truststore/_openssl.py +0 -0
  434. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/truststore/_ssl_constants.py +0 -0
  435. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/truststore/_windows.py +0 -0
  436. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/__init__.py +0 -0
  437. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/_collections.py +0 -0
  438. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/_version.py +0 -0
  439. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/connection.py +0 -0
  440. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/connectionpool.py +0 -0
  441. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/contrib/__init__.py +0 -0
  442. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py +0 -0
  443. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py +0 -0
  444. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py +0 -0
  445. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py +0 -0
  446. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/contrib/appengine.py +0 -0
  447. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py +0 -0
  448. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py +0 -0
  449. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/contrib/securetransport.py +0 -0
  450. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/contrib/socks.py +0 -0
  451. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/exceptions.py +0 -0
  452. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/fields.py +0 -0
  453. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/filepost.py +0 -0
  454. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/packages/__init__.py +0 -0
  455. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py +0 -0
  456. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py +0 -0
  457. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py +0 -0
  458. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/packages/six.py +0 -0
  459. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/poolmanager.py +0 -0
  460. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/request.py +0 -0
  461. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/response.py +0 -0
  462. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/util/__init__.py +0 -0
  463. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/util/connection.py +0 -0
  464. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/util/proxy.py +0 -0
  465. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/util/queue.py +0 -0
  466. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/util/request.py +0 -0
  467. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/util/response.py +0 -0
  468. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/util/retry.py +0 -0
  469. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/util/ssl_.py +0 -0
  470. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py +0 -0
  471. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/util/ssltransport.py +0 -0
  472. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/util/timeout.py +0 -0
  473. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/util/url.py +0 -0
  474. {vibego-0.2.58 → vibego-1.0.7}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/util/wait.py +0 -0
  475. {vibego-0.2.58 → vibego-1.0.7}/setup.cfg +0 -0
  476. {vibego-0.2.58 → vibego-1.0.7}/vibego.egg-info/dependency_links.txt +0 -0
  477. {vibego-0.2.58 → vibego-1.0.7}/vibego.egg-info/entry_points.txt +0 -0
  478. {vibego-0.2.58 → vibego-1.0.7}/vibego.egg-info/requires.txt +0 -0
  479. {vibego-0.2.58 → vibego-1.0.7}/vibego.egg-info/top_level.txt +0 -0
  480. {vibego-0.2.58 → vibego-1.0.7}/vibego_cli/data/worker_requirements.txt +0 -0
vibego-1.0.7/LICENSE ADDED
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [yyyy] [name of copyright owner]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
vibego-1.0.7/PKG-INFO ADDED
@@ -0,0 +1,226 @@
1
+ Metadata-Version: 2.4
2
+ Name: vibego
3
+ Version: 1.0.7
4
+ Summary: vibego CLI: tools for bootstrapping and managing the Telegram Master Bot
5
+ Author: DavidChan
6
+ License-Expression: LicenseRef-Proprietary
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: Programming Language :: Python :: 3.11
9
+ Classifier: Operating System :: MacOS
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: Topic :: Software Development :: Build Tools
12
+ Classifier: Environment :: Console
13
+ Requires-Python: >=3.11
14
+ Description-Content-Type: text/markdown
15
+ License-File: LICENSE
16
+ Requires-Dist: aiogram<4.0.0,>=3.0.0
17
+ Requires-Dist: aiohttp-socks>=0.10.0
18
+ Requires-Dist: aiosqlite>=0.19.0
19
+ Requires-Dist: markdown-it-py<4.0.0,>=3.0.0
20
+ Dynamic: license-file
21
+
22
+ # vibego - vibe coding via Telegram anytime, anywhere
23
+
24
+ **Drive your terminal AI CLI via Telegram anytime and anywhere (supports Codex / ClaudeCode)**
25
+
26
+ For the Simplified Chinese version, see [中文文档](README-zh.md).
27
+
28
+ ## Features
29
+
30
+ 1. Control your terminal AI CLI through Telegram whenever you need it.
31
+ 2. Capture lightweight task management and bug reports directly inside Telegram.
32
+ 3. Switch between Codex / ClaudeCode terminal CLIs in one tap from Telegram.
33
+ 4. Send commands over the HTTPS channel provided by the Telegram Bot API, protected by end‑to‑end TLS.
34
+ 5. Keep runtime logs and state files under `~/.config/vibego/` so sensitive data never leaves the machine.
35
+
36
+ ## Environment Requirements
37
+
38
+ **The terminal environment has installed and login in codex / claudeCode**
39
+ ```bash
40
+ brew install python@3.11 tmux
41
+ python3 -m venv ~/.config/vibego/runtime/venv
42
+ source ~/.config/vibego/runtime/venv/bin/activate
43
+ ```
44
+
45
+ ## Quick Start
46
+
47
+ ### Create and retrieve a Telegram bot token
48
+
49
+ Use the official Telegram BotFather guide (<https://core.telegram.org/bots#botfather>):
50
+
51
+ 1. Search for `@BotFather` in the Telegram client and start a chat.
52
+ 2. Send `/start`, then `/newbot`, and follow the prompts for bot name and username.
53
+ 3. BotFather returns an HTTP API token resembling `123456789:ABC...`; store it safely.
54
+ 4. To regenerate or reset the token, send `/token` in the same chat and pick the bot.
55
+
56
+ ### Install and start vibego
57
+
58
+ Before continuing, make sure Codex / ClaudeCode CLIs are installed and logged in, and that you have a Telegram bot token
59
+ ready.
60
+
61
+ - Consider merging the contents of [AGENTS-en.md](AGENTS-en.md) into your `$HOME/.codex/AGENTS.md` or
62
+ `$HOME/.claude/CLAUDE.md`.
63
+
64
+ ```bash
65
+ pipx install vibego # or pip install --user vibego
66
+ vibego init # initialise the config directory and persist the Master Bot Token
67
+ vibego start # start the master service
68
+ ```
69
+
70
+ Then click on `/start` in the bot created by Telegram ,Enjoy it!
71
+
72
+ ## Directory Layout
73
+
74
+ - `bot.py`: aiogram 3 worker that supports multiple model sessions (Codex / ClaudeCode / reserved Gemini).
75
+ - `scripts/run_bot.sh`: one-click bootstrap (builds venv, starts tmux + model CLI + bot).
76
+ - `scripts/stop_bot.sh`: terminates the worker for a project (tmux session + bot process).
77
+ - `scripts/start_tmux_codex.sh`: low-level tmux/CLI launcher invoked by `run_bot.sh`, forces UTF‑8 via `tmux -u`.
78
+ - `scripts/models/`: model configuration modules (`common.sh` / `codex.sh` / `claudecode.sh` / `gemini.sh`).
79
+ - `logs/<model>/<project>/`: runtime logs (`run_bot.log`, `model.log`, `bot.pid`, `current_session.txt`), defaulted to
80
+ `~/.config/vibego/logs/`.
81
+ - `model.log` is rotated by `scripts/log_writer.py`, with 20 MB cap per file and 24-hour retention (override via
82
+ `MODEL_LOG_MAX_BYTES`, `MODEL_LOG_RETENTION_SECONDS`).
83
+ - `.env.example`: configuration template to copy to `.env` and adjust.
84
+
85
+ ## Logs & Directories
86
+
87
+ ```
88
+ ~/.config/vibego/logs/
89
+ └─ codex/
90
+ └─ mall-backend/
91
+ ├─ run_bot.log # output from run_bot.sh
92
+ ├─ model.log # model CLI output captured through tmux pipe-pane
93
+ ├─ bot.pid # current bot process PID (used by stop_bot.sh)
94
+ └─ current_session.txt # pointer to the latest JSONL session
95
+ ```
96
+
97
+ > Starting in 2025, all logs, databases, and state files default to `~/.config/vibego/`. Use
98
+ `./scripts/migrate_runtime.sh` to migrate legacy files created inside the repository back into the runtime directory.
99
+
100
+ ## Model Switching
101
+
102
+ - Supported model parameters: `codex`, `claudecode`, `gemini` (placeholder).
103
+ - Switch flow: `stop_bot.sh --model <old>` → `run_bot.sh --model <new>`.
104
+ - Each model keeps an isolated configuration in `scripts/models/<model>.sh`; shared logic lives in
105
+ `scripts/models/common.sh`.
106
+ - `ACTIVE_MODEL` is echoed in `/start` replies and logs, and exported to the environment for `bot.py`.
107
+
108
+ ### Codex
109
+
110
+ | Variable | Description |
111
+ |----------------------|----------------------------------------------------------------------------------|
112
+ | `CODEX_WORKDIR` | Codex CLI working directory (defaults to the value in `.env` or repository root) |
113
+ | `CODEX_CMD` | Launch command, default `codex --dangerously-bypass-...` |
114
+ | `CODEX_SESSION_ROOT` | JSONL root directory (default `~/.codex/sessions`) |
115
+ | `CODEX_SESSION_GLOB` | JSONL file pattern (default `rollout-*.jsonl`) |
116
+
117
+ ### ClaudeCode
118
+
119
+ | Variable | Description |
120
+ |-----------------------|--------------------------------------------------------------|
121
+ | `CLAUDE_WORKDIR` | Project directory (defaults to the same value used by Codex) |
122
+ | `CLAUDE_CMD` | CLI launch command, for example `claude --project <path>` |
123
+ | `CLAUDE_PROJECT_ROOT` | JSONL root directory (default `~/.claude/projects`) |
124
+ | `CLAUDE_SESSION_GLOB` | JSONL file pattern (default `*.jsonl`) |
125
+ | `CLAUDE_PROJECT_KEY` | Optional: explicitly set `~/.claude/projects/<key>` |
126
+
127
+ ### Gemini (placeholder)
128
+
129
+ - `scripts/models/gemini.sh` currently contains a placeholder command to be expanded once the official CLI is available.
130
+
131
+ ## aiogram Worker Behaviour
132
+
133
+ - `/start`: returns `chat_id`, `MODE`, and `ACTIVE_MODEL`; logs record `chat_id` and `user_id`.
134
+ - Text messages:
135
+ 1. Pick the `SessionAdapter` based on `ACTIVE_MODEL`, read `current_session.txt`, and search `MODEL_SESSION_ROOT` if
136
+ necessary.
137
+ 2. Inject the prompt into tmux (send `Esc` to clear modes, `Ctrl+J` for newline, `Enter` to submit).
138
+ 3. Initialise offsets from `SESSION_OFFSETS`; `_deliver_pending_messages()` streams tail updates from the JSONL log.
139
+ 4. During the watcher phase, the bot informs the user the `ACTIVE_MODEL` is processing and pushes the result once
140
+ ready (Markdown preserved).
141
+ - MODE = A still honours `AGENT_CMD` for direct CLI execution.
142
+
143
+ ## New Scripts
144
+
145
+ - `run_bot.sh`
146
+ - `--model <name>`: codex / claudecode / gemini.
147
+ - `--project <slug>`: directory name for logs/sessions; defaults to a slug derived from the working directory.
148
+ - `--foreground`: keep the process in the foreground (default: background via `nohup`).
149
+ - `--no-stop`: skip the pre-launch stop step (defaults to invoking `stop_bot.sh` for idempotency).
150
+ - `stop_bot.sh`
151
+ - Idempotent stop: issues `tmux kill-session`, terminates the process from `bot.pid`, and clears cached files.
152
+ - Example: `./scripts/stop_bot.sh --model codex --project mall-backend`.
153
+
154
+ ## Configuration Highlights
155
+
156
+ ### `.env` (master global configuration)
157
+
158
+ - Location: `~/.config/vibego/.env` (override with `VIBEGO_CONFIG_DIR`).
159
+ - `MASTER_BOT_TOKEN`: token for the master bot; collected by `vibego init` and required for startup.
160
+ - `MASTER_CHAT_ID` / `MASTER_USER_ID`: captured automatically the first time you interact with the master in Telegram to
161
+ mark authorised admins.
162
+ - `MASTER_WHITELIST`: comma-separated list of chat IDs. Leave empty to allow any chat; latest value always wins if auto
163
+ updates occur.
164
+ - You can add optional variables for proxies, log level, default model, etc. Scripts fall back to sensible defaults if
165
+ unspecified.
166
+
167
+ - Project definitions persist in `~/.config/vibego/config/master.db` (SQLite) with a JSON mirror at
168
+ `~/.config/vibego/config/projects.json`. For offline edits, use the `config/projects.json.example` template in the
169
+ repository.
170
+ - The master “⚙️ Project Management” menu can create/edit/delete projects; offline JSON edits are imported at startup
171
+ and synced to the database.
172
+ - Required fields: `bot_name`, `bot_token`, `project_slug`, `default_model`.
173
+ - Optional fields: `workdir` (project path), `allowed_chat_id` (pre-authorised chat). Leave blank to let the worker
174
+ capture the first valid chat and persist it to `~/.config/vibego/state/master_state.json`.
175
+ - Other custom fields are currently ignored.
176
+
177
+ ### Automatic Authorisation & State
178
+
179
+ - If `allowed_chat_id` is empty when the worker starts, the first authorised message writes to `state/state.json` and is
180
+ applied immediately.
181
+ - Master restarts: call `stop_bot.sh` first, then restore running projects from the saved state.
182
+
183
+ ## Roadmap
184
+
185
+ - Master bot will poll all project bots and invoke run/stop scripts to orchestrate workers; current version ships the
186
+ worker layout and logging standard first.
187
+ - Gemini CLI support will be added once an official integration path is available.
188
+
189
+ ## Notes
190
+
191
+ - `~/.config/vibego/.env` stores sensitive tokens and admin metadata—never commit it.
192
+ - To trim log size, clean up `logs/<model>/<project>/` as needed or adjust script thresholds.
193
+ - If you previously ran an old source checkout, run `./scripts/migrate_runtime.sh` and ensure only `.example` templates
194
+ remain in the repository to avoid committing databases or logs.
195
+ - The master caches version checks and reminds you once per release; rerun `/projects` or restart the master to force a
196
+ new check.
197
+
198
+ ## Master Control
199
+
200
+ - Launch the admin bot with `MASTER_BOT_TOKEN` (running `python master.py`).
201
+ - Master stores the project list in `~/.config/vibego/config/master.db`; use the project management menu or edit
202
+ `~/.config/vibego/config/projects.json` directly. Key fields:
203
+ - `bot_name`: Telegram bot username (with or without `@`; CLI adds `@` when displaying).
204
+ - `bot_token`: Telegram token for the worker.
205
+ - `default_model`: default model (codex / claudecode / gemini).
206
+ - `project_slug`: directory/log slug.
207
+ - `workdir`: project working directory (optional).
208
+ - `allowed_chat_id`: authorised chat injected into the runtime environment.
209
+ - State snapshot: `~/.config/vibego/state/master_state.json` records the active model and running status for each
210
+ project. On restart the master calls `stop_bot.sh`, then restores workers according to the state file.
211
+
212
+ ### Management Commands
213
+
214
+ | Command | Description |
215
+ |-----------------------------|-----------------------------------------------------------------------------|
216
+ | `/projects` | List all projects with their current status and model. |
217
+ | `/run <project> [model]` | Start a project worker; optional `model` overrides the default/current one. |
218
+ | `/stop <project>` | Stop the project worker. |
219
+ | `/switch <project> <model>` | Stop the worker and relaunch it with a new model. |
220
+ | `/start` | Show help and the total number of projects. |
221
+ | `/upgrade` | Run `pipx upgrade vibego && vibego stop && vibego start` to self-upgrade. |
222
+
223
+ - `<project>` accepts either the `project_slug` or `@bot_name`. Responses automatically render clickable `@` links.
224
+
225
+ > The master only interacts with the admin bot. Project bots continue to handle business traffic through the worker (
226
+ `bot.py`) launched by `run_bot.sh`.
vibego-1.0.7/README.md ADDED
@@ -0,0 +1,205 @@
1
+ # vibego - vibe coding via Telegram anytime, anywhere
2
+
3
+ **Drive your terminal AI CLI via Telegram anytime and anywhere (supports Codex / ClaudeCode)**
4
+
5
+ For the Simplified Chinese version, see [中文文档](README-zh.md).
6
+
7
+ ## Features
8
+
9
+ 1. Control your terminal AI CLI through Telegram whenever you need it.
10
+ 2. Capture lightweight task management and bug reports directly inside Telegram.
11
+ 3. Switch between Codex / ClaudeCode terminal CLIs in one tap from Telegram.
12
+ 4. Send commands over the HTTPS channel provided by the Telegram Bot API, protected by end‑to‑end TLS.
13
+ 5. Keep runtime logs and state files under `~/.config/vibego/` so sensitive data never leaves the machine.
14
+
15
+ ## Environment Requirements
16
+
17
+ **The terminal environment has installed and login in codex / claudeCode**
18
+ ```bash
19
+ brew install python@3.11 tmux
20
+ python3 -m venv ~/.config/vibego/runtime/venv
21
+ source ~/.config/vibego/runtime/venv/bin/activate
22
+ ```
23
+
24
+ ## Quick Start
25
+
26
+ ### Create and retrieve a Telegram bot token
27
+
28
+ Use the official Telegram BotFather guide (<https://core.telegram.org/bots#botfather>):
29
+
30
+ 1. Search for `@BotFather` in the Telegram client and start a chat.
31
+ 2. Send `/start`, then `/newbot`, and follow the prompts for bot name and username.
32
+ 3. BotFather returns an HTTP API token resembling `123456789:ABC...`; store it safely.
33
+ 4. To regenerate or reset the token, send `/token` in the same chat and pick the bot.
34
+
35
+ ### Install and start vibego
36
+
37
+ Before continuing, make sure Codex / ClaudeCode CLIs are installed and logged in, and that you have a Telegram bot token
38
+ ready.
39
+
40
+ - Consider merging the contents of [AGENTS-en.md](AGENTS-en.md) into your `$HOME/.codex/AGENTS.md` or
41
+ `$HOME/.claude/CLAUDE.md`.
42
+
43
+ ```bash
44
+ pipx install vibego # or pip install --user vibego
45
+ vibego init # initialise the config directory and persist the Master Bot Token
46
+ vibego start # start the master service
47
+ ```
48
+
49
+ Then click on `/start` in the bot created by Telegram ,Enjoy it!
50
+
51
+ ## Directory Layout
52
+
53
+ - `bot.py`: aiogram 3 worker that supports multiple model sessions (Codex / ClaudeCode / reserved Gemini).
54
+ - `scripts/run_bot.sh`: one-click bootstrap (builds venv, starts tmux + model CLI + bot).
55
+ - `scripts/stop_bot.sh`: terminates the worker for a project (tmux session + bot process).
56
+ - `scripts/start_tmux_codex.sh`: low-level tmux/CLI launcher invoked by `run_bot.sh`, forces UTF‑8 via `tmux -u`.
57
+ - `scripts/models/`: model configuration modules (`common.sh` / `codex.sh` / `claudecode.sh` / `gemini.sh`).
58
+ - `logs/<model>/<project>/`: runtime logs (`run_bot.log`, `model.log`, `bot.pid`, `current_session.txt`), defaulted to
59
+ `~/.config/vibego/logs/`.
60
+ - `model.log` is rotated by `scripts/log_writer.py`, with 20 MB cap per file and 24-hour retention (override via
61
+ `MODEL_LOG_MAX_BYTES`, `MODEL_LOG_RETENTION_SECONDS`).
62
+ - `.env.example`: configuration template to copy to `.env` and adjust.
63
+
64
+ ## Logs & Directories
65
+
66
+ ```
67
+ ~/.config/vibego/logs/
68
+ └─ codex/
69
+ └─ mall-backend/
70
+ ├─ run_bot.log # output from run_bot.sh
71
+ ├─ model.log # model CLI output captured through tmux pipe-pane
72
+ ├─ bot.pid # current bot process PID (used by stop_bot.sh)
73
+ └─ current_session.txt # pointer to the latest JSONL session
74
+ ```
75
+
76
+ > Starting in 2025, all logs, databases, and state files default to `~/.config/vibego/`. Use
77
+ `./scripts/migrate_runtime.sh` to migrate legacy files created inside the repository back into the runtime directory.
78
+
79
+ ## Model Switching
80
+
81
+ - Supported model parameters: `codex`, `claudecode`, `gemini` (placeholder).
82
+ - Switch flow: `stop_bot.sh --model <old>` → `run_bot.sh --model <new>`.
83
+ - Each model keeps an isolated configuration in `scripts/models/<model>.sh`; shared logic lives in
84
+ `scripts/models/common.sh`.
85
+ - `ACTIVE_MODEL` is echoed in `/start` replies and logs, and exported to the environment for `bot.py`.
86
+
87
+ ### Codex
88
+
89
+ | Variable | Description |
90
+ |----------------------|----------------------------------------------------------------------------------|
91
+ | `CODEX_WORKDIR` | Codex CLI working directory (defaults to the value in `.env` or repository root) |
92
+ | `CODEX_CMD` | Launch command, default `codex --dangerously-bypass-...` |
93
+ | `CODEX_SESSION_ROOT` | JSONL root directory (default `~/.codex/sessions`) |
94
+ | `CODEX_SESSION_GLOB` | JSONL file pattern (default `rollout-*.jsonl`) |
95
+
96
+ ### ClaudeCode
97
+
98
+ | Variable | Description |
99
+ |-----------------------|--------------------------------------------------------------|
100
+ | `CLAUDE_WORKDIR` | Project directory (defaults to the same value used by Codex) |
101
+ | `CLAUDE_CMD` | CLI launch command, for example `claude --project <path>` |
102
+ | `CLAUDE_PROJECT_ROOT` | JSONL root directory (default `~/.claude/projects`) |
103
+ | `CLAUDE_SESSION_GLOB` | JSONL file pattern (default `*.jsonl`) |
104
+ | `CLAUDE_PROJECT_KEY` | Optional: explicitly set `~/.claude/projects/<key>` |
105
+
106
+ ### Gemini (placeholder)
107
+
108
+ - `scripts/models/gemini.sh` currently contains a placeholder command to be expanded once the official CLI is available.
109
+
110
+ ## aiogram Worker Behaviour
111
+
112
+ - `/start`: returns `chat_id`, `MODE`, and `ACTIVE_MODEL`; logs record `chat_id` and `user_id`.
113
+ - Text messages:
114
+ 1. Pick the `SessionAdapter` based on `ACTIVE_MODEL`, read `current_session.txt`, and search `MODEL_SESSION_ROOT` if
115
+ necessary.
116
+ 2. Inject the prompt into tmux (send `Esc` to clear modes, `Ctrl+J` for newline, `Enter` to submit).
117
+ 3. Initialise offsets from `SESSION_OFFSETS`; `_deliver_pending_messages()` streams tail updates from the JSONL log.
118
+ 4. During the watcher phase, the bot informs the user the `ACTIVE_MODEL` is processing and pushes the result once
119
+ ready (Markdown preserved).
120
+ - MODE = A still honours `AGENT_CMD` for direct CLI execution.
121
+
122
+ ## New Scripts
123
+
124
+ - `run_bot.sh`
125
+ - `--model <name>`: codex / claudecode / gemini.
126
+ - `--project <slug>`: directory name for logs/sessions; defaults to a slug derived from the working directory.
127
+ - `--foreground`: keep the process in the foreground (default: background via `nohup`).
128
+ - `--no-stop`: skip the pre-launch stop step (defaults to invoking `stop_bot.sh` for idempotency).
129
+ - `stop_bot.sh`
130
+ - Idempotent stop: issues `tmux kill-session`, terminates the process from `bot.pid`, and clears cached files.
131
+ - Example: `./scripts/stop_bot.sh --model codex --project mall-backend`.
132
+
133
+ ## Configuration Highlights
134
+
135
+ ### `.env` (master global configuration)
136
+
137
+ - Location: `~/.config/vibego/.env` (override with `VIBEGO_CONFIG_DIR`).
138
+ - `MASTER_BOT_TOKEN`: token for the master bot; collected by `vibego init` and required for startup.
139
+ - `MASTER_CHAT_ID` / `MASTER_USER_ID`: captured automatically the first time you interact with the master in Telegram to
140
+ mark authorised admins.
141
+ - `MASTER_WHITELIST`: comma-separated list of chat IDs. Leave empty to allow any chat; latest value always wins if auto
142
+ updates occur.
143
+ - You can add optional variables for proxies, log level, default model, etc. Scripts fall back to sensible defaults if
144
+ unspecified.
145
+
146
+ - Project definitions persist in `~/.config/vibego/config/master.db` (SQLite) with a JSON mirror at
147
+ `~/.config/vibego/config/projects.json`. For offline edits, use the `config/projects.json.example` template in the
148
+ repository.
149
+ - The master “⚙️ Project Management” menu can create/edit/delete projects; offline JSON edits are imported at startup
150
+ and synced to the database.
151
+ - Required fields: `bot_name`, `bot_token`, `project_slug`, `default_model`.
152
+ - Optional fields: `workdir` (project path), `allowed_chat_id` (pre-authorised chat). Leave blank to let the worker
153
+ capture the first valid chat and persist it to `~/.config/vibego/state/master_state.json`.
154
+ - Other custom fields are currently ignored.
155
+
156
+ ### Automatic Authorisation & State
157
+
158
+ - If `allowed_chat_id` is empty when the worker starts, the first authorised message writes to `state/state.json` and is
159
+ applied immediately.
160
+ - Master restarts: call `stop_bot.sh` first, then restore running projects from the saved state.
161
+
162
+ ## Roadmap
163
+
164
+ - Master bot will poll all project bots and invoke run/stop scripts to orchestrate workers; current version ships the
165
+ worker layout and logging standard first.
166
+ - Gemini CLI support will be added once an official integration path is available.
167
+
168
+ ## Notes
169
+
170
+ - `~/.config/vibego/.env` stores sensitive tokens and admin metadata—never commit it.
171
+ - To trim log size, clean up `logs/<model>/<project>/` as needed or adjust script thresholds.
172
+ - If you previously ran an old source checkout, run `./scripts/migrate_runtime.sh` and ensure only `.example` templates
173
+ remain in the repository to avoid committing databases or logs.
174
+ - The master caches version checks and reminds you once per release; rerun `/projects` or restart the master to force a
175
+ new check.
176
+
177
+ ## Master Control
178
+
179
+ - Launch the admin bot with `MASTER_BOT_TOKEN` (running `python master.py`).
180
+ - Master stores the project list in `~/.config/vibego/config/master.db`; use the project management menu or edit
181
+ `~/.config/vibego/config/projects.json` directly. Key fields:
182
+ - `bot_name`: Telegram bot username (with or without `@`; CLI adds `@` when displaying).
183
+ - `bot_token`: Telegram token for the worker.
184
+ - `default_model`: default model (codex / claudecode / gemini).
185
+ - `project_slug`: directory/log slug.
186
+ - `workdir`: project working directory (optional).
187
+ - `allowed_chat_id`: authorised chat injected into the runtime environment.
188
+ - State snapshot: `~/.config/vibego/state/master_state.json` records the active model and running status for each
189
+ project. On restart the master calls `stop_bot.sh`, then restores workers according to the state file.
190
+
191
+ ### Management Commands
192
+
193
+ | Command | Description |
194
+ |-----------------------------|-----------------------------------------------------------------------------|
195
+ | `/projects` | List all projects with their current status and model. |
196
+ | `/run <project> [model]` | Start a project worker; optional `model` overrides the default/current one. |
197
+ | `/stop <project>` | Stop the project worker. |
198
+ | `/switch <project> <model>` | Stop the worker and relaunch it with a new model. |
199
+ | `/start` | Show help and the total number of projects. |
200
+ | `/upgrade` | Run `pipx upgrade vibego && vibego stop && vibego start` to self-upgrade. |
201
+
202
+ - `<project>` accepts either the `project_slug` or `@bot_name`. Responses automatically render clickable `@` links.
203
+
204
+ > The master only interacts with the admin bot. Project bots continue to handle business traffic through the worker (
205
+ `bot.py`) launched by `run_bot.sh`.