vibego 0.2.59__tar.gz → 1.0.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


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

Files changed (476) hide show
  1. vibego-1.0.0/LICENSE +201 -0
  2. vibego-1.0.0/PKG-INFO +236 -0
  3. vibego-1.0.0/README.md +215 -0
  4. {vibego-0.2.59 → vibego-1.0.0}/bot.py +1053 -1025
  5. {vibego-0.2.59 → vibego-1.0.0}/logging_setup.py +25 -18
  6. {vibego-0.2.59 → vibego-1.0.0}/master.py +799 -508
  7. {vibego-0.2.59 → vibego-1.0.0}/project_repository.py +42 -40
  8. {vibego-0.2.59 → vibego-1.0.0}/pyproject.toml +4 -4
  9. vibego-1.0.0/scripts/__init__.py +1 -0
  10. vibego-1.0.0/scripts/bump_version.sh +154 -0
  11. {vibego-0.2.59 → vibego-1.0.0}/scripts/log_writer.py +19 -16
  12. {vibego-0.2.59 → vibego-1.0.0}/scripts/master_healthcheck.py +44 -44
  13. {vibego-0.2.59 → vibego-1.0.0}/scripts/models/claudecode.sh +4 -4
  14. {vibego-0.2.59 → vibego-1.0.0}/scripts/models/codex.sh +1 -1
  15. {vibego-0.2.59 → vibego-1.0.0}/scripts/models/common.sh +24 -6
  16. {vibego-0.2.59 → vibego-1.0.0}/scripts/models/gemini.sh +2 -2
  17. vibego-1.0.0/scripts/publish.sh +126 -0
  18. {vibego-0.2.59 → vibego-1.0.0}/scripts/run_bot.sh +38 -17
  19. vibego-1.0.0/scripts/start.sh +466 -0
  20. {vibego-0.2.59 → vibego-1.0.0}/scripts/start_tmux_codex.sh +8 -8
  21. {vibego-0.2.59 → vibego-1.0.0}/scripts/stop_all.sh +21 -21
  22. {vibego-0.2.59 → vibego-1.0.0}/scripts/stop_bot.sh +31 -10
  23. vibego-1.0.0/scripts/test_deps_check.sh +70 -0
  24. {vibego-0.2.59 → vibego-1.0.0}/tasks/__init__.py +1 -1
  25. {vibego-0.2.59 → vibego-1.0.0}/tasks/commands.py +4 -4
  26. {vibego-0.2.59 → vibego-1.0.0}/tasks/constants.py +1 -1
  27. {vibego-0.2.59 → vibego-1.0.0}/tasks/fsm.py +9 -9
  28. {vibego-0.2.59 → vibego-1.0.0}/tasks/models.py +7 -7
  29. {vibego-0.2.59 → vibego-1.0.0}/tasks/service.py +56 -56
  30. {vibego-0.2.59 → vibego-1.0.0}/tests/test_attachment_prompt_format.py +10 -7
  31. {vibego-0.2.59 → vibego-1.0.0}/tests/test_auto_compact.py +19 -19
  32. {vibego-0.2.59 → vibego-1.0.0}/tests/test_chat_menu_buttons.py +5 -5
  33. {vibego-0.2.59 → vibego-1.0.0}/tests/test_claudecode_jsonl.py +8 -8
  34. {vibego-0.2.59 → vibego-1.0.0}/tests/test_long_poll_mechanism.py +68 -68
  35. {vibego-0.2.59 → vibego-1.0.0}/tests/test_markdown_guard.py +19 -19
  36. {vibego-0.2.59 → vibego-1.0.0}/tests/test_master_project_management.py +61 -57
  37. {vibego-0.2.59 → vibego-1.0.0}/tests/test_master_restart.py +65 -65
  38. vibego-1.0.0/tests/test_master_update_notifications.py +216 -0
  39. {vibego-0.2.59 → vibego-1.0.0}/tests/test_numbered_reply_inputs.py +29 -25
  40. {vibego-0.2.59 → vibego-1.0.0}/tests/test_plan_progress.py +39 -39
  41. {vibego-0.2.59 → vibego-1.0.0}/tests/test_task_create_flow.py +46 -46
  42. {vibego-0.2.59 → vibego-1.0.0}/tests/test_task_description.py +334 -334
  43. {vibego-0.2.59 → vibego-1.0.0}/tests/test_task_detail_back.py +31 -31
  44. {vibego-0.2.59 → vibego-1.0.0}/tests/test_task_list_entry.py +74 -74
  45. {vibego-0.2.59 → vibego-1.0.0}/tests/test_telegram_markdown_renderer.py +5 -5
  46. vibego-1.0.0/tests/test_unescape_markdown.py +340 -0
  47. vibego-1.0.0/tests/test_version_display.py +55 -0
  48. vibego-1.0.0/vibego.egg-info/PKG-INFO +236 -0
  49. {vibego-0.2.59 → vibego-1.0.0}/vibego.egg-info/SOURCES.txt +2 -0
  50. vibego-1.0.0/vibego_cli/__init__.py +13 -0
  51. {vibego-0.2.59 → vibego-1.0.0}/vibego_cli/__main__.py +1 -2
  52. {vibego-0.2.59 → vibego-1.0.0}/vibego_cli/config.py +9 -9
  53. {vibego-0.2.59 → vibego-1.0.0}/vibego_cli/deps.py +8 -9
  54. {vibego-0.2.59 → vibego-1.0.0}/vibego_cli/main.py +63 -63
  55. vibego-0.2.59/PKG-INFO +0 -197
  56. vibego-0.2.59/README.md +0 -178
  57. vibego-0.2.59/scripts/__init__.py +0 -2
  58. vibego-0.2.59/scripts/bump_version.sh +0 -152
  59. vibego-0.2.59/scripts/publish.sh +0 -126
  60. vibego-0.2.59/scripts/start.sh +0 -446
  61. vibego-0.2.59/scripts/test_deps_check.sh +0 -66
  62. vibego-0.2.59/tests/test_unescape_markdown.py +0 -340
  63. vibego-0.2.59/tests/test_version_display.py +0 -56
  64. vibego-0.2.59/vibego.egg-info/PKG-INFO +0 -197
  65. vibego-0.2.59/vibego_cli/__init__.py +0 -12
  66. {vibego-0.2.59 → vibego-1.0.0}/MANIFEST.in +0 -0
  67. {vibego-0.2.59 → vibego-1.0.0}/config/projects.json.example +0 -0
  68. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/__init__.py +0 -0
  69. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/__main__.py +0 -0
  70. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/__pip-runner__.py +0 -0
  71. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/__init__.py +0 -0
  72. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/build_env.py +0 -0
  73. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/cache.py +0 -0
  74. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/cli/__init__.py +0 -0
  75. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/cli/autocompletion.py +0 -0
  76. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/cli/base_command.py +0 -0
  77. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/cli/cmdoptions.py +0 -0
  78. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/cli/command_context.py +0 -0
  79. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/cli/index_command.py +0 -0
  80. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/cli/main.py +0 -0
  81. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/cli/main_parser.py +0 -0
  82. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/cli/parser.py +0 -0
  83. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/cli/progress_bars.py +0 -0
  84. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/cli/req_command.py +0 -0
  85. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/cli/spinners.py +0 -0
  86. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/cli/status_codes.py +0 -0
  87. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/commands/__init__.py +0 -0
  88. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/commands/cache.py +0 -0
  89. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/commands/check.py +0 -0
  90. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/commands/completion.py +0 -0
  91. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/commands/configuration.py +0 -0
  92. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/commands/debug.py +0 -0
  93. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/commands/download.py +0 -0
  94. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/commands/freeze.py +0 -0
  95. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/commands/hash.py +0 -0
  96. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/commands/help.py +0 -0
  97. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/commands/index.py +0 -0
  98. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/commands/inspect.py +0 -0
  99. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/commands/install.py +0 -0
  100. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/commands/list.py +0 -0
  101. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/commands/lock.py +0 -0
  102. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/commands/search.py +0 -0
  103. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/commands/show.py +0 -0
  104. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/commands/uninstall.py +0 -0
  105. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/commands/wheel.py +0 -0
  106. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/configuration.py +0 -0
  107. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/distributions/__init__.py +0 -0
  108. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/distributions/base.py +0 -0
  109. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/distributions/installed.py +0 -0
  110. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/distributions/sdist.py +0 -0
  111. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/distributions/wheel.py +0 -0
  112. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/exceptions.py +0 -0
  113. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/index/__init__.py +0 -0
  114. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/index/collector.py +0 -0
  115. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/index/package_finder.py +0 -0
  116. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/index/sources.py +0 -0
  117. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/locations/__init__.py +0 -0
  118. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/locations/_distutils.py +0 -0
  119. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/locations/_sysconfig.py +0 -0
  120. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/locations/base.py +0 -0
  121. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/main.py +0 -0
  122. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/metadata/__init__.py +0 -0
  123. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/metadata/_json.py +0 -0
  124. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/metadata/base.py +0 -0
  125. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/metadata/importlib/__init__.py +0 -0
  126. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/metadata/importlib/_compat.py +0 -0
  127. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/metadata/importlib/_dists.py +0 -0
  128. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/metadata/importlib/_envs.py +0 -0
  129. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/metadata/pkg_resources.py +0 -0
  130. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/models/__init__.py +0 -0
  131. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/models/candidate.py +0 -0
  132. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/models/direct_url.py +0 -0
  133. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/models/format_control.py +0 -0
  134. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/models/index.py +0 -0
  135. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/models/installation_report.py +0 -0
  136. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/models/link.py +0 -0
  137. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/models/pylock.py +0 -0
  138. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/models/scheme.py +0 -0
  139. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/models/search_scope.py +0 -0
  140. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/models/selection_prefs.py +0 -0
  141. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/models/target_python.py +0 -0
  142. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/models/wheel.py +0 -0
  143. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/network/__init__.py +0 -0
  144. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/network/auth.py +0 -0
  145. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/network/cache.py +0 -0
  146. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/network/download.py +0 -0
  147. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/network/lazy_wheel.py +0 -0
  148. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/network/session.py +0 -0
  149. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/network/utils.py +0 -0
  150. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/network/xmlrpc.py +0 -0
  151. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/operations/__init__.py +0 -0
  152. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/operations/build/__init__.py +0 -0
  153. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/operations/build/build_tracker.py +0 -0
  154. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/operations/build/metadata.py +0 -0
  155. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/operations/build/metadata_editable.py +0 -0
  156. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/operations/build/metadata_legacy.py +0 -0
  157. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/operations/build/wheel.py +0 -0
  158. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/operations/build/wheel_editable.py +0 -0
  159. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/operations/build/wheel_legacy.py +0 -0
  160. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/operations/check.py +0 -0
  161. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/operations/freeze.py +0 -0
  162. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/operations/install/__init__.py +0 -0
  163. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/operations/install/editable_legacy.py +0 -0
  164. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/operations/install/wheel.py +0 -0
  165. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/operations/prepare.py +0 -0
  166. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/pyproject.py +0 -0
  167. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/req/__init__.py +0 -0
  168. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/req/constructors.py +0 -0
  169. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/req/req_dependency_group.py +0 -0
  170. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/req/req_file.py +0 -0
  171. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/req/req_install.py +0 -0
  172. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/req/req_set.py +0 -0
  173. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/req/req_uninstall.py +0 -0
  174. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/resolution/__init__.py +0 -0
  175. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/resolution/base.py +0 -0
  176. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/resolution/legacy/__init__.py +0 -0
  177. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/resolution/legacy/resolver.py +0 -0
  178. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/resolution/resolvelib/__init__.py +0 -0
  179. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/resolution/resolvelib/base.py +0 -0
  180. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/resolution/resolvelib/candidates.py +0 -0
  181. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/resolution/resolvelib/factory.py +0 -0
  182. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py +0 -0
  183. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/resolution/resolvelib/provider.py +0 -0
  184. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/resolution/resolvelib/reporter.py +0 -0
  185. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/resolution/resolvelib/requirements.py +0 -0
  186. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/resolution/resolvelib/resolver.py +0 -0
  187. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/self_outdated_check.py +0 -0
  188. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/utils/__init__.py +0 -0
  189. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/utils/_jaraco_text.py +0 -0
  190. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/utils/_log.py +0 -0
  191. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/utils/appdirs.py +0 -0
  192. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/utils/compat.py +0 -0
  193. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/utils/compatibility_tags.py +0 -0
  194. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/utils/datetime.py +0 -0
  195. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/utils/deprecation.py +0 -0
  196. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/utils/direct_url_helpers.py +0 -0
  197. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/utils/egg_link.py +0 -0
  198. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/utils/entrypoints.py +0 -0
  199. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/utils/filesystem.py +0 -0
  200. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/utils/filetypes.py +0 -0
  201. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/utils/glibc.py +0 -0
  202. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/utils/hashes.py +0 -0
  203. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/utils/logging.py +0 -0
  204. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/utils/misc.py +0 -0
  205. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/utils/packaging.py +0 -0
  206. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/utils/retry.py +0 -0
  207. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/utils/setuptools_build.py +0 -0
  208. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/utils/subprocess.py +0 -0
  209. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/utils/temp_dir.py +0 -0
  210. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/utils/unpacking.py +0 -0
  211. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/utils/urls.py +0 -0
  212. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/utils/virtualenv.py +0 -0
  213. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/utils/wheel.py +0 -0
  214. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/vcs/__init__.py +0 -0
  215. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/vcs/bazaar.py +0 -0
  216. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/vcs/git.py +0 -0
  217. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/vcs/mercurial.py +0 -0
  218. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/vcs/subversion.py +0 -0
  219. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/vcs/versioncontrol.py +0 -0
  220. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_internal/wheel_builder.py +0 -0
  221. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/__init__.py +0 -0
  222. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/cachecontrol/__init__.py +0 -0
  223. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/cachecontrol/_cmd.py +0 -0
  224. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/cachecontrol/adapter.py +0 -0
  225. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/cachecontrol/cache.py +0 -0
  226. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/cachecontrol/caches/__init__.py +0 -0
  227. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py +0 -0
  228. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py +0 -0
  229. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/cachecontrol/controller.py +0 -0
  230. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/cachecontrol/filewrapper.py +0 -0
  231. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/cachecontrol/heuristics.py +0 -0
  232. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/cachecontrol/serialize.py +0 -0
  233. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/cachecontrol/wrapper.py +0 -0
  234. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/certifi/__init__.py +0 -0
  235. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/certifi/__main__.py +0 -0
  236. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/certifi/core.py +0 -0
  237. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/dependency_groups/__init__.py +0 -0
  238. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/dependency_groups/__main__.py +0 -0
  239. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/dependency_groups/_implementation.py +0 -0
  240. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/dependency_groups/_lint_dependency_groups.py +0 -0
  241. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/dependency_groups/_pip_wrapper.py +0 -0
  242. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/dependency_groups/_toml_compat.py +0 -0
  243. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/distlib/__init__.py +0 -0
  244. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/distlib/compat.py +0 -0
  245. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/distlib/resources.py +0 -0
  246. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/distlib/scripts.py +0 -0
  247. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/distlib/util.py +0 -0
  248. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/distro/__init__.py +0 -0
  249. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/distro/__main__.py +0 -0
  250. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/distro/distro.py +0 -0
  251. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/idna/__init__.py +0 -0
  252. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/idna/codec.py +0 -0
  253. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/idna/compat.py +0 -0
  254. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/idna/core.py +0 -0
  255. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/idna/idnadata.py +0 -0
  256. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/idna/intranges.py +0 -0
  257. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/idna/package_data.py +0 -0
  258. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/idna/uts46data.py +0 -0
  259. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/msgpack/__init__.py +0 -0
  260. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/msgpack/exceptions.py +0 -0
  261. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/msgpack/ext.py +0 -0
  262. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/msgpack/fallback.py +0 -0
  263. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/packaging/__init__.py +0 -0
  264. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/packaging/_elffile.py +0 -0
  265. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/packaging/_manylinux.py +0 -0
  266. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/packaging/_musllinux.py +0 -0
  267. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/packaging/_parser.py +0 -0
  268. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/packaging/_structures.py +0 -0
  269. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/packaging/_tokenizer.py +0 -0
  270. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/packaging/licenses/__init__.py +0 -0
  271. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/packaging/licenses/_spdx.py +0 -0
  272. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/packaging/markers.py +0 -0
  273. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/packaging/metadata.py +0 -0
  274. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/packaging/requirements.py +0 -0
  275. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/packaging/specifiers.py +0 -0
  276. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/packaging/tags.py +0 -0
  277. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/packaging/utils.py +0 -0
  278. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/packaging/version.py +0 -0
  279. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pkg_resources/__init__.py +0 -0
  280. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/platformdirs/__init__.py +0 -0
  281. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/platformdirs/__main__.py +0 -0
  282. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/platformdirs/android.py +0 -0
  283. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/platformdirs/api.py +0 -0
  284. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/platformdirs/macos.py +0 -0
  285. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/platformdirs/unix.py +0 -0
  286. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/platformdirs/version.py +0 -0
  287. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/platformdirs/windows.py +0 -0
  288. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pygments/__init__.py +0 -0
  289. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pygments/__main__.py +0 -0
  290. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pygments/console.py +0 -0
  291. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pygments/filter.py +0 -0
  292. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pygments/filters/__init__.py +0 -0
  293. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pygments/formatter.py +0 -0
  294. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pygments/formatters/__init__.py +0 -0
  295. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pygments/formatters/_mapping.py +0 -0
  296. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pygments/lexer.py +0 -0
  297. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pygments/lexers/__init__.py +0 -0
  298. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pygments/lexers/_mapping.py +0 -0
  299. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pygments/lexers/python.py +0 -0
  300. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pygments/modeline.py +0 -0
  301. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pygments/plugin.py +0 -0
  302. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pygments/regexopt.py +0 -0
  303. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pygments/scanner.py +0 -0
  304. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pygments/sphinxext.py +0 -0
  305. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pygments/style.py +0 -0
  306. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pygments/styles/__init__.py +0 -0
  307. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pygments/styles/_mapping.py +0 -0
  308. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pygments/token.py +0 -0
  309. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pygments/unistring.py +0 -0
  310. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pygments/util.py +0 -0
  311. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pyproject_hooks/__init__.py +0 -0
  312. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pyproject_hooks/_impl.py +0 -0
  313. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py +0 -0
  314. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py +0 -0
  315. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/requests/__init__.py +0 -0
  316. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/requests/__version__.py +0 -0
  317. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/requests/_internal_utils.py +0 -0
  318. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/requests/adapters.py +0 -0
  319. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/requests/api.py +0 -0
  320. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/requests/auth.py +0 -0
  321. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/requests/certs.py +0 -0
  322. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/requests/compat.py +0 -0
  323. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/requests/cookies.py +0 -0
  324. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/requests/exceptions.py +0 -0
  325. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/requests/help.py +0 -0
  326. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/requests/hooks.py +0 -0
  327. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/requests/models.py +0 -0
  328. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/requests/packages.py +0 -0
  329. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/requests/sessions.py +0 -0
  330. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/requests/status_codes.py +0 -0
  331. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/requests/structures.py +0 -0
  332. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/requests/utils.py +0 -0
  333. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/resolvelib/__init__.py +0 -0
  334. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/resolvelib/providers.py +0 -0
  335. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/resolvelib/reporters.py +0 -0
  336. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/resolvelib/resolvers/__init__.py +0 -0
  337. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/resolvelib/resolvers/abstract.py +0 -0
  338. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/resolvelib/resolvers/criterion.py +0 -0
  339. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/resolvelib/resolvers/exceptions.py +0 -0
  340. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/resolvelib/resolvers/resolution.py +0 -0
  341. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/resolvelib/structs.py +0 -0
  342. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/__init__.py +0 -0
  343. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/__main__.py +0 -0
  344. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/_cell_widths.py +0 -0
  345. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/_emoji_codes.py +0 -0
  346. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/_emoji_replace.py +0 -0
  347. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/_export_format.py +0 -0
  348. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/_extension.py +0 -0
  349. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/_fileno.py +0 -0
  350. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/_inspect.py +0 -0
  351. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/_log_render.py +0 -0
  352. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/_loop.py +0 -0
  353. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/_null_file.py +0 -0
  354. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/_palettes.py +0 -0
  355. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/_pick.py +0 -0
  356. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/_ratio.py +0 -0
  357. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/_spinners.py +0 -0
  358. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/_stack.py +0 -0
  359. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/_timer.py +0 -0
  360. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/_win32_console.py +0 -0
  361. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/_windows.py +0 -0
  362. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/_windows_renderer.py +0 -0
  363. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/_wrap.py +0 -0
  364. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/abc.py +0 -0
  365. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/align.py +0 -0
  366. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/ansi.py +0 -0
  367. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/bar.py +0 -0
  368. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/box.py +0 -0
  369. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/cells.py +0 -0
  370. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/color.py +0 -0
  371. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/color_triplet.py +0 -0
  372. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/columns.py +0 -0
  373. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/console.py +0 -0
  374. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/constrain.py +0 -0
  375. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/containers.py +0 -0
  376. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/control.py +0 -0
  377. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/default_styles.py +0 -0
  378. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/diagnose.py +0 -0
  379. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/emoji.py +0 -0
  380. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/errors.py +0 -0
  381. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/file_proxy.py +0 -0
  382. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/filesize.py +0 -0
  383. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/highlighter.py +0 -0
  384. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/json.py +0 -0
  385. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/jupyter.py +0 -0
  386. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/layout.py +0 -0
  387. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/live.py +0 -0
  388. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/live_render.py +0 -0
  389. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/logging.py +0 -0
  390. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/markup.py +0 -0
  391. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/measure.py +0 -0
  392. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/padding.py +0 -0
  393. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/pager.py +0 -0
  394. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/palette.py +0 -0
  395. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/panel.py +0 -0
  396. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/pretty.py +0 -0
  397. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/progress.py +0 -0
  398. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/progress_bar.py +0 -0
  399. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/prompt.py +0 -0
  400. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/protocol.py +0 -0
  401. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/region.py +0 -0
  402. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/repr.py +0 -0
  403. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/rule.py +0 -0
  404. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/scope.py +0 -0
  405. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/screen.py +0 -0
  406. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/segment.py +0 -0
  407. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/spinner.py +0 -0
  408. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/status.py +0 -0
  409. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/style.py +0 -0
  410. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/styled.py +0 -0
  411. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/syntax.py +0 -0
  412. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/table.py +0 -0
  413. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/terminal_theme.py +0 -0
  414. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/text.py +0 -0
  415. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/theme.py +0 -0
  416. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/themes.py +0 -0
  417. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/traceback.py +0 -0
  418. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/rich/tree.py +0 -0
  419. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/tomli/__init__.py +0 -0
  420. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/tomli/_parser.py +0 -0
  421. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/tomli/_re.py +0 -0
  422. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/tomli/_types.py +0 -0
  423. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/tomli_w/__init__.py +0 -0
  424. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/tomli_w/_writer.py +0 -0
  425. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/truststore/__init__.py +0 -0
  426. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/truststore/_api.py +0 -0
  427. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/truststore/_macos.py +0 -0
  428. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/truststore/_openssl.py +0 -0
  429. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/truststore/_ssl_constants.py +0 -0
  430. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/truststore/_windows.py +0 -0
  431. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/__init__.py +0 -0
  432. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/_collections.py +0 -0
  433. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/_version.py +0 -0
  434. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/connection.py +0 -0
  435. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/connectionpool.py +0 -0
  436. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/contrib/__init__.py +0 -0
  437. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py +0 -0
  438. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py +0 -0
  439. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py +0 -0
  440. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py +0 -0
  441. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/contrib/appengine.py +0 -0
  442. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py +0 -0
  443. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py +0 -0
  444. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/contrib/securetransport.py +0 -0
  445. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/contrib/socks.py +0 -0
  446. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/exceptions.py +0 -0
  447. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/fields.py +0 -0
  448. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/filepost.py +0 -0
  449. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/packages/__init__.py +0 -0
  450. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py +0 -0
  451. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py +0 -0
  452. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py +0 -0
  453. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/packages/six.py +0 -0
  454. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/poolmanager.py +0 -0
  455. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/request.py +0 -0
  456. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/response.py +0 -0
  457. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/util/__init__.py +0 -0
  458. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/util/connection.py +0 -0
  459. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/util/proxy.py +0 -0
  460. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/util/queue.py +0 -0
  461. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/util/request.py +0 -0
  462. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/util/response.py +0 -0
  463. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/util/retry.py +0 -0
  464. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/util/ssl_.py +0 -0
  465. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py +0 -0
  466. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/util/ssltransport.py +0 -0
  467. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/util/timeout.py +0 -0
  468. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/util/url.py +0 -0
  469. {vibego-0.2.59 → vibego-1.0.0}/scripts/.venv/lib/python3.14/site-packages/pip/_vendor/urllib3/util/wait.py +0 -0
  470. {vibego-0.2.59 → vibego-1.0.0}/scripts/requirements.txt +0 -0
  471. {vibego-0.2.59 → vibego-1.0.0}/setup.cfg +0 -0
  472. {vibego-0.2.59 → vibego-1.0.0}/vibego.egg-info/dependency_links.txt +0 -0
  473. {vibego-0.2.59 → vibego-1.0.0}/vibego.egg-info/entry_points.txt +0 -0
  474. {vibego-0.2.59 → vibego-1.0.0}/vibego.egg-info/requires.txt +0 -0
  475. {vibego-0.2.59 → vibego-1.0.0}/vibego.egg-info/top_level.txt +0 -0
  476. {vibego-0.2.59 → vibego-1.0.0}/vibego_cli/data/worker_requirements.txt +0 -0
vibego-1.0.0/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.0/PKG-INFO ADDED
@@ -0,0 +1,236 @@
1
+ Metadata-Version: 2.4
2
+ Name: vibego
3
+ Version: 1.0.0
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](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
+ - Install the core CLI dependencies with Homebrew to keep scripts aligned:
39
+ ```bash
40
+ brew install python@3.11 tmux
41
+ ```
42
+ The CLI verifies Python >= 3.11 when you run `vibego start` (see `pyproject.toml` `requires-python` and the Python
43
+ guard in `vibego_cli/main.py`). Validate with `python3 --version` (must show 3.11+) and `tmux -V`.
44
+ - To run the Codex model you also need the Codex CLI:
45
+ ```bash
46
+ brew install codex
47
+ ```
48
+ `scripts/run_bot.sh` checks for the `codex` executable before the worker launches. Confirm with `codex --version`.
49
+ - The scripts use the `python3` available on your `PATH` and automatically create `~/.config/vibego/runtime/venv` on
50
+ first launch to install Python dependencies. If you prefer to bootstrap manually:
51
+ ```bash
52
+ python3 -m venv ~/.config/vibego/runtime/venv
53
+ source ~/.config/vibego/runtime/venv/bin/activate
54
+ ```
55
+ Set `VIBEGO_RUNTIME_ROOT` if you need a custom runtime location (pipx users typically do not).
56
+
57
+ ## Quick Start
58
+
59
+ ### Create and retrieve a Telegram bot token
60
+
61
+ Use the official Telegram BotFather guide (<https://core.telegram.org/bots#botfather>):
62
+
63
+ 1. Search for `@BotFather` in the Telegram client and start a chat.
64
+ 2. Send `/start`, then `/newbot`, and follow the prompts for bot name and username.
65
+ 3. BotFather returns an HTTP API token resembling `123456789:ABC...`; store it safely.
66
+ 4. To regenerate or reset the token, send `/token` in the same chat and pick the bot.
67
+
68
+ ### Install and start vibego
69
+
70
+ Before continuing, make sure Codex / ClaudeCode CLIs are installed and logged in, and that you have a Telegram bot token
71
+ ready.
72
+
73
+ - Consider merging the contents of [AGENTS-en.md](AGENTS-en.md) into your `$HOME/.codex/AGENTS.md` or
74
+ `$HOME/.claude/CLAUDE.md`.
75
+
76
+ ```bash
77
+ pipx install vibego # or pip install --user vibego
78
+ vibego init # initialise the config directory and persist the Master Bot Token
79
+ vibego start # start the master service
80
+ ```
81
+
82
+ ## Directory Layout
83
+
84
+ - `bot.py`: aiogram 3 worker that supports multiple model sessions (Codex / ClaudeCode / reserved Gemini).
85
+ - `scripts/run_bot.sh`: one-click bootstrap (builds venv, starts tmux + model CLI + bot).
86
+ - `scripts/stop_bot.sh`: terminates the worker for a project (tmux session + bot process).
87
+ - `scripts/start_tmux_codex.sh`: low-level tmux/CLI launcher invoked by `run_bot.sh`, forces UTF‑8 via `tmux -u`.
88
+ - `scripts/models/`: model configuration modules (`common.sh` / `codex.sh` / `claudecode.sh` / `gemini.sh`).
89
+ - `logs/<model>/<project>/`: runtime logs (`run_bot.log`, `model.log`, `bot.pid`, `current_session.txt`), defaulted to
90
+ `~/.config/vibego/logs/`.
91
+ - `model.log` is rotated by `scripts/log_writer.py`, with 20 MB cap per file and 24-hour retention (override via
92
+ `MODEL_LOG_MAX_BYTES`, `MODEL_LOG_RETENTION_SECONDS`).
93
+ - `.env.example`: configuration template to copy to `.env` and adjust.
94
+
95
+ ## Logs & Directories
96
+
97
+ ```
98
+ ~/.config/vibego/logs/
99
+ └─ codex/
100
+ └─ mall-backend/
101
+ ├─ run_bot.log # output from run_bot.sh
102
+ ├─ model.log # model CLI output captured through tmux pipe-pane
103
+ ├─ bot.pid # current bot process PID (used by stop_bot.sh)
104
+ └─ current_session.txt # pointer to the latest JSONL session
105
+ ```
106
+
107
+ > Starting in 2025, all logs, databases, and state files default to `~/.config/vibego/`. Use
108
+ `./scripts/migrate_runtime.sh` to migrate legacy files created inside the repository back into the runtime directory.
109
+
110
+ ## Model Switching
111
+
112
+ - Supported model parameters: `codex`, `claudecode`, `gemini` (placeholder).
113
+ - Switch flow: `stop_bot.sh --model <old>` → `run_bot.sh --model <new>`.
114
+ - Each model keeps an isolated configuration in `scripts/models/<model>.sh`; shared logic lives in
115
+ `scripts/models/common.sh`.
116
+ - `ACTIVE_MODEL` is echoed in `/start` replies and logs, and exported to the environment for `bot.py`.
117
+
118
+ ### Codex
119
+
120
+ | Variable | Description |
121
+ |----------------------|----------------------------------------------------------------------------------|
122
+ | `CODEX_WORKDIR` | Codex CLI working directory (defaults to the value in `.env` or repository root) |
123
+ | `CODEX_CMD` | Launch command, default `codex --dangerously-bypass-...` |
124
+ | `CODEX_SESSION_ROOT` | JSONL root directory (default `~/.codex/sessions`) |
125
+ | `CODEX_SESSION_GLOB` | JSONL file pattern (default `rollout-*.jsonl`) |
126
+
127
+ ### ClaudeCode
128
+
129
+ | Variable | Description |
130
+ |-----------------------|--------------------------------------------------------------|
131
+ | `CLAUDE_WORKDIR` | Project directory (defaults to the same value used by Codex) |
132
+ | `CLAUDE_CMD` | CLI launch command, for example `claude --project <path>` |
133
+ | `CLAUDE_PROJECT_ROOT` | JSONL root directory (default `~/.claude/projects`) |
134
+ | `CLAUDE_SESSION_GLOB` | JSONL file pattern (default `*.jsonl`) |
135
+ | `CLAUDE_PROJECT_KEY` | Optional: explicitly set `~/.claude/projects/<key>` |
136
+
137
+ ### Gemini (placeholder)
138
+
139
+ - `scripts/models/gemini.sh` currently contains a placeholder command to be expanded once the official CLI is available.
140
+
141
+ ## aiogram Worker Behaviour
142
+
143
+ - `/start`: returns `chat_id`, `MODE`, and `ACTIVE_MODEL`; logs record `chat_id` and `user_id`.
144
+ - Text messages:
145
+ 1. Pick the `SessionAdapter` based on `ACTIVE_MODEL`, read `current_session.txt`, and search `MODEL_SESSION_ROOT` if
146
+ necessary.
147
+ 2. Inject the prompt into tmux (send `Esc` to clear modes, `Ctrl+J` for newline, `Enter` to submit).
148
+ 3. Initialise offsets from `SESSION_OFFSETS`; `_deliver_pending_messages()` streams tail updates from the JSONL log.
149
+ 4. During the watcher phase, the bot informs the user the `ACTIVE_MODEL` is processing and pushes the result once
150
+ ready (Markdown preserved).
151
+ - MODE = A still honours `AGENT_CMD` for direct CLI execution.
152
+
153
+ ## New Scripts
154
+
155
+ - `run_bot.sh`
156
+ - `--model <name>`: codex / claudecode / gemini.
157
+ - `--project <slug>`: directory name for logs/sessions; defaults to a slug derived from the working directory.
158
+ - `--foreground`: keep the process in the foreground (default: background via `nohup`).
159
+ - `--no-stop`: skip the pre-launch stop step (defaults to invoking `stop_bot.sh` for idempotency).
160
+ - `stop_bot.sh`
161
+ - Idempotent stop: issues `tmux kill-session`, terminates the process from `bot.pid`, and clears cached files.
162
+ - Example: `./scripts/stop_bot.sh --model codex --project mall-backend`.
163
+
164
+ ## Configuration Highlights
165
+
166
+ ### `.env` (master global configuration)
167
+
168
+ - Location: `~/.config/vibego/.env` (override with `VIBEGO_CONFIG_DIR`).
169
+ - `MASTER_BOT_TOKEN`: token for the master bot; collected by `vibego init` and required for startup.
170
+ - `MASTER_CHAT_ID` / `MASTER_USER_ID`: captured automatically the first time you interact with the master in Telegram to
171
+ mark authorised admins.
172
+ - `MASTER_WHITELIST`: comma-separated list of chat IDs. Leave empty to allow any chat; latest value always wins if auto
173
+ updates occur.
174
+ - You can add optional variables for proxies, log level, default model, etc. Scripts fall back to sensible defaults if
175
+ unspecified.
176
+
177
+ - Project definitions persist in `~/.config/vibego/config/master.db` (SQLite) with a JSON mirror at
178
+ `~/.config/vibego/config/projects.json`. For offline edits, use the `config/projects.json.example` template in the
179
+ repository.
180
+ - The master “⚙️ Project Management” menu can create/edit/delete projects; offline JSON edits are imported at startup
181
+ and synced to the database.
182
+ - Required fields: `bot_name`, `bot_token`, `project_slug`, `default_model`.
183
+ - Optional fields: `workdir` (project path), `allowed_chat_id` (pre-authorised chat). Leave blank to let the worker
184
+ capture the first valid chat and persist it to `~/.config/vibego/state/master_state.json`.
185
+ - Other custom fields are currently ignored.
186
+
187
+ ### Automatic Authorisation & State
188
+
189
+ - If `allowed_chat_id` is empty when the worker starts, the first authorised message writes to `state/state.json` and is
190
+ applied immediately.
191
+ - Master restarts: call `stop_bot.sh` first, then restore running projects from the saved state.
192
+
193
+ ## Roadmap
194
+
195
+ - Master bot will poll all project bots and invoke run/stop scripts to orchestrate workers; current version ships the
196
+ worker layout and logging standard first.
197
+ - Gemini CLI support will be added once an official integration path is available.
198
+
199
+ ## Notes
200
+
201
+ - `~/.config/vibego/.env` stores sensitive tokens and admin metadata—never commit it.
202
+ - To trim log size, clean up `logs/<model>/<project>/` as needed or adjust script thresholds.
203
+ - If you previously ran an old source checkout, run `./scripts/migrate_runtime.sh` and ensure only `.example` templates
204
+ remain in the repository to avoid committing databases or logs.
205
+ - The master caches version checks and reminds you once per release; rerun `/projects` or restart the master to force a
206
+ new check.
207
+
208
+ ## Master Control
209
+
210
+ - Launch the admin bot with `MASTER_BOT_TOKEN` (running `python master.py`).
211
+ - Master stores the project list in `~/.config/vibego/config/master.db`; use the project management menu or edit
212
+ `~/.config/vibego/config/projects.json` directly. Key fields:
213
+ - `bot_name`: Telegram bot username (with or without `@`; CLI adds `@` when displaying).
214
+ - `bot_token`: Telegram token for the worker.
215
+ - `default_model`: default model (codex / claudecode / gemini).
216
+ - `project_slug`: directory/log slug.
217
+ - `workdir`: project working directory (optional).
218
+ - `allowed_chat_id`: authorised chat injected into the runtime environment.
219
+ - State snapshot: `~/.config/vibego/state/master_state.json` records the active model and running status for each
220
+ project. On restart the master calls `stop_bot.sh`, then restores workers according to the state file.
221
+
222
+ ### Management Commands
223
+
224
+ | Command | Description |
225
+ |-----------------------------|-----------------------------------------------------------------------------|
226
+ | `/projects` | List all projects with their current status and model. |
227
+ | `/run <project> [model]` | Start a project worker; optional `model` overrides the default/current one. |
228
+ | `/stop <project>` | Stop the project worker. |
229
+ | `/switch <project> <model>` | Stop the worker and relaunch it with a new model. |
230
+ | `/start` | Show help and the total number of projects. |
231
+ | `/upgrade` | Run `pipx upgrade vibego && vibego stop && vibego start` to self-upgrade. |
232
+
233
+ - `<project>` accepts either the `project_slug` or `@bot_name`. Responses automatically render clickable `@` links.
234
+
235
+ > The master only interacts with the admin bot. Project bots continue to handle business traffic through the worker (
236
+ `bot.py`) launched by `run_bot.sh`.
vibego-1.0.0/README.md ADDED
@@ -0,0 +1,215 @@
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](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
+ - Install the core CLI dependencies with Homebrew to keep scripts aligned:
18
+ ```bash
19
+ brew install python@3.11 tmux
20
+ ```
21
+ The CLI verifies Python >= 3.11 when you run `vibego start` (see `pyproject.toml` `requires-python` and the Python
22
+ guard in `vibego_cli/main.py`). Validate with `python3 --version` (must show 3.11+) and `tmux -V`.
23
+ - To run the Codex model you also need the Codex CLI:
24
+ ```bash
25
+ brew install codex
26
+ ```
27
+ `scripts/run_bot.sh` checks for the `codex` executable before the worker launches. Confirm with `codex --version`.
28
+ - The scripts use the `python3` available on your `PATH` and automatically create `~/.config/vibego/runtime/venv` on
29
+ first launch to install Python dependencies. If you prefer to bootstrap manually:
30
+ ```bash
31
+ python3 -m venv ~/.config/vibego/runtime/venv
32
+ source ~/.config/vibego/runtime/venv/bin/activate
33
+ ```
34
+ Set `VIBEGO_RUNTIME_ROOT` if you need a custom runtime location (pipx users typically do not).
35
+
36
+ ## Quick Start
37
+
38
+ ### Create and retrieve a Telegram bot token
39
+
40
+ Use the official Telegram BotFather guide (<https://core.telegram.org/bots#botfather>):
41
+
42
+ 1. Search for `@BotFather` in the Telegram client and start a chat.
43
+ 2. Send `/start`, then `/newbot`, and follow the prompts for bot name and username.
44
+ 3. BotFather returns an HTTP API token resembling `123456789:ABC...`; store it safely.
45
+ 4. To regenerate or reset the token, send `/token` in the same chat and pick the bot.
46
+
47
+ ### Install and start vibego
48
+
49
+ Before continuing, make sure Codex / ClaudeCode CLIs are installed and logged in, and that you have a Telegram bot token
50
+ ready.
51
+
52
+ - Consider merging the contents of [AGENTS-en.md](AGENTS-en.md) into your `$HOME/.codex/AGENTS.md` or
53
+ `$HOME/.claude/CLAUDE.md`.
54
+
55
+ ```bash
56
+ pipx install vibego # or pip install --user vibego
57
+ vibego init # initialise the config directory and persist the Master Bot Token
58
+ vibego start # start the master service
59
+ ```
60
+
61
+ ## Directory Layout
62
+
63
+ - `bot.py`: aiogram 3 worker that supports multiple model sessions (Codex / ClaudeCode / reserved Gemini).
64
+ - `scripts/run_bot.sh`: one-click bootstrap (builds venv, starts tmux + model CLI + bot).
65
+ - `scripts/stop_bot.sh`: terminates the worker for a project (tmux session + bot process).
66
+ - `scripts/start_tmux_codex.sh`: low-level tmux/CLI launcher invoked by `run_bot.sh`, forces UTF‑8 via `tmux -u`.
67
+ - `scripts/models/`: model configuration modules (`common.sh` / `codex.sh` / `claudecode.sh` / `gemini.sh`).
68
+ - `logs/<model>/<project>/`: runtime logs (`run_bot.log`, `model.log`, `bot.pid`, `current_session.txt`), defaulted to
69
+ `~/.config/vibego/logs/`.
70
+ - `model.log` is rotated by `scripts/log_writer.py`, with 20 MB cap per file and 24-hour retention (override via
71
+ `MODEL_LOG_MAX_BYTES`, `MODEL_LOG_RETENTION_SECONDS`).
72
+ - `.env.example`: configuration template to copy to `.env` and adjust.
73
+
74
+ ## Logs & Directories
75
+
76
+ ```
77
+ ~/.config/vibego/logs/
78
+ └─ codex/
79
+ └─ mall-backend/
80
+ ├─ run_bot.log # output from run_bot.sh
81
+ ├─ model.log # model CLI output captured through tmux pipe-pane
82
+ ├─ bot.pid # current bot process PID (used by stop_bot.sh)
83
+ └─ current_session.txt # pointer to the latest JSONL session
84
+ ```
85
+
86
+ > Starting in 2025, all logs, databases, and state files default to `~/.config/vibego/`. Use
87
+ `./scripts/migrate_runtime.sh` to migrate legacy files created inside the repository back into the runtime directory.
88
+
89
+ ## Model Switching
90
+
91
+ - Supported model parameters: `codex`, `claudecode`, `gemini` (placeholder).
92
+ - Switch flow: `stop_bot.sh --model <old>` → `run_bot.sh --model <new>`.
93
+ - Each model keeps an isolated configuration in `scripts/models/<model>.sh`; shared logic lives in
94
+ `scripts/models/common.sh`.
95
+ - `ACTIVE_MODEL` is echoed in `/start` replies and logs, and exported to the environment for `bot.py`.
96
+
97
+ ### Codex
98
+
99
+ | Variable | Description |
100
+ |----------------------|----------------------------------------------------------------------------------|
101
+ | `CODEX_WORKDIR` | Codex CLI working directory (defaults to the value in `.env` or repository root) |
102
+ | `CODEX_CMD` | Launch command, default `codex --dangerously-bypass-...` |
103
+ | `CODEX_SESSION_ROOT` | JSONL root directory (default `~/.codex/sessions`) |
104
+ | `CODEX_SESSION_GLOB` | JSONL file pattern (default `rollout-*.jsonl`) |
105
+
106
+ ### ClaudeCode
107
+
108
+ | Variable | Description |
109
+ |-----------------------|--------------------------------------------------------------|
110
+ | `CLAUDE_WORKDIR` | Project directory (defaults to the same value used by Codex) |
111
+ | `CLAUDE_CMD` | CLI launch command, for example `claude --project <path>` |
112
+ | `CLAUDE_PROJECT_ROOT` | JSONL root directory (default `~/.claude/projects`) |
113
+ | `CLAUDE_SESSION_GLOB` | JSONL file pattern (default `*.jsonl`) |
114
+ | `CLAUDE_PROJECT_KEY` | Optional: explicitly set `~/.claude/projects/<key>` |
115
+
116
+ ### Gemini (placeholder)
117
+
118
+ - `scripts/models/gemini.sh` currently contains a placeholder command to be expanded once the official CLI is available.
119
+
120
+ ## aiogram Worker Behaviour
121
+
122
+ - `/start`: returns `chat_id`, `MODE`, and `ACTIVE_MODEL`; logs record `chat_id` and `user_id`.
123
+ - Text messages:
124
+ 1. Pick the `SessionAdapter` based on `ACTIVE_MODEL`, read `current_session.txt`, and search `MODEL_SESSION_ROOT` if
125
+ necessary.
126
+ 2. Inject the prompt into tmux (send `Esc` to clear modes, `Ctrl+J` for newline, `Enter` to submit).
127
+ 3. Initialise offsets from `SESSION_OFFSETS`; `_deliver_pending_messages()` streams tail updates from the JSONL log.
128
+ 4. During the watcher phase, the bot informs the user the `ACTIVE_MODEL` is processing and pushes the result once
129
+ ready (Markdown preserved).
130
+ - MODE = A still honours `AGENT_CMD` for direct CLI execution.
131
+
132
+ ## New Scripts
133
+
134
+ - `run_bot.sh`
135
+ - `--model <name>`: codex / claudecode / gemini.
136
+ - `--project <slug>`: directory name for logs/sessions; defaults to a slug derived from the working directory.
137
+ - `--foreground`: keep the process in the foreground (default: background via `nohup`).
138
+ - `--no-stop`: skip the pre-launch stop step (defaults to invoking `stop_bot.sh` for idempotency).
139
+ - `stop_bot.sh`
140
+ - Idempotent stop: issues `tmux kill-session`, terminates the process from `bot.pid`, and clears cached files.
141
+ - Example: `./scripts/stop_bot.sh --model codex --project mall-backend`.
142
+
143
+ ## Configuration Highlights
144
+
145
+ ### `.env` (master global configuration)
146
+
147
+ - Location: `~/.config/vibego/.env` (override with `VIBEGO_CONFIG_DIR`).
148
+ - `MASTER_BOT_TOKEN`: token for the master bot; collected by `vibego init` and required for startup.
149
+ - `MASTER_CHAT_ID` / `MASTER_USER_ID`: captured automatically the first time you interact with the master in Telegram to
150
+ mark authorised admins.
151
+ - `MASTER_WHITELIST`: comma-separated list of chat IDs. Leave empty to allow any chat; latest value always wins if auto
152
+ updates occur.
153
+ - You can add optional variables for proxies, log level, default model, etc. Scripts fall back to sensible defaults if
154
+ unspecified.
155
+
156
+ - Project definitions persist in `~/.config/vibego/config/master.db` (SQLite) with a JSON mirror at
157
+ `~/.config/vibego/config/projects.json`. For offline edits, use the `config/projects.json.example` template in the
158
+ repository.
159
+ - The master “⚙️ Project Management” menu can create/edit/delete projects; offline JSON edits are imported at startup
160
+ and synced to the database.
161
+ - Required fields: `bot_name`, `bot_token`, `project_slug`, `default_model`.
162
+ - Optional fields: `workdir` (project path), `allowed_chat_id` (pre-authorised chat). Leave blank to let the worker
163
+ capture the first valid chat and persist it to `~/.config/vibego/state/master_state.json`.
164
+ - Other custom fields are currently ignored.
165
+
166
+ ### Automatic Authorisation & State
167
+
168
+ - If `allowed_chat_id` is empty when the worker starts, the first authorised message writes to `state/state.json` and is
169
+ applied immediately.
170
+ - Master restarts: call `stop_bot.sh` first, then restore running projects from the saved state.
171
+
172
+ ## Roadmap
173
+
174
+ - Master bot will poll all project bots and invoke run/stop scripts to orchestrate workers; current version ships the
175
+ worker layout and logging standard first.
176
+ - Gemini CLI support will be added once an official integration path is available.
177
+
178
+ ## Notes
179
+
180
+ - `~/.config/vibego/.env` stores sensitive tokens and admin metadata—never commit it.
181
+ - To trim log size, clean up `logs/<model>/<project>/` as needed or adjust script thresholds.
182
+ - If you previously ran an old source checkout, run `./scripts/migrate_runtime.sh` and ensure only `.example` templates
183
+ remain in the repository to avoid committing databases or logs.
184
+ - The master caches version checks and reminds you once per release; rerun `/projects` or restart the master to force a
185
+ new check.
186
+
187
+ ## Master Control
188
+
189
+ - Launch the admin bot with `MASTER_BOT_TOKEN` (running `python master.py`).
190
+ - Master stores the project list in `~/.config/vibego/config/master.db`; use the project management menu or edit
191
+ `~/.config/vibego/config/projects.json` directly. Key fields:
192
+ - `bot_name`: Telegram bot username (with or without `@`; CLI adds `@` when displaying).
193
+ - `bot_token`: Telegram token for the worker.
194
+ - `default_model`: default model (codex / claudecode / gemini).
195
+ - `project_slug`: directory/log slug.
196
+ - `workdir`: project working directory (optional).
197
+ - `allowed_chat_id`: authorised chat injected into the runtime environment.
198
+ - State snapshot: `~/.config/vibego/state/master_state.json` records the active model and running status for each
199
+ project. On restart the master calls `stop_bot.sh`, then restores workers according to the state file.
200
+
201
+ ### Management Commands
202
+
203
+ | Command | Description |
204
+ |-----------------------------|-----------------------------------------------------------------------------|
205
+ | `/projects` | List all projects with their current status and model. |
206
+ | `/run <project> [model]` | Start a project worker; optional `model` overrides the default/current one. |
207
+ | `/stop <project>` | Stop the project worker. |
208
+ | `/switch <project> <model>` | Stop the worker and relaunch it with a new model. |
209
+ | `/start` | Show help and the total number of projects. |
210
+ | `/upgrade` | Run `pipx upgrade vibego && vibego stop && vibego start` to self-upgrade. |
211
+
212
+ - `<project>` accepts either the `project_slug` or `@bot_name`. Responses automatically render clickable `@` links.
213
+
214
+ > The master only interacts with the admin bot. Project bots continue to handle business traffic through the worker (
215
+ `bot.py`) launched by `run_bot.sh`.