vibesurf 0.1.9a6__py3-none-any.whl → 0.1.11__py3-none-any.whl

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 vibesurf might be problematic. Click here for more details.

Files changed (69) hide show
  1. vibe_surf/_version.py +2 -2
  2. vibe_surf/agents/browser_use_agent.py +68 -45
  3. vibe_surf/agents/prompts/report_writer_prompt.py +73 -0
  4. vibe_surf/agents/prompts/vibe_surf_prompt.py +85 -172
  5. vibe_surf/agents/report_writer_agent.py +380 -226
  6. vibe_surf/agents/vibe_surf_agent.py +878 -814
  7. vibe_surf/agents/views.py +130 -0
  8. vibe_surf/backend/api/activity.py +3 -1
  9. vibe_surf/backend/api/browser.py +70 -0
  10. vibe_surf/backend/api/config.py +8 -5
  11. vibe_surf/backend/api/files.py +59 -50
  12. vibe_surf/backend/api/models.py +2 -2
  13. vibe_surf/backend/api/task.py +47 -13
  14. vibe_surf/backend/database/manager.py +24 -18
  15. vibe_surf/backend/database/queries.py +199 -192
  16. vibe_surf/backend/database/schemas.py +1 -1
  17. vibe_surf/backend/main.py +80 -3
  18. vibe_surf/backend/shared_state.py +30 -35
  19. vibe_surf/backend/utils/encryption.py +3 -1
  20. vibe_surf/backend/utils/llm_factory.py +41 -36
  21. vibe_surf/browser/agent_browser_session.py +308 -62
  22. vibe_surf/browser/browser_manager.py +71 -100
  23. vibe_surf/browser/utils.py +5 -3
  24. vibe_surf/browser/watchdogs/dom_watchdog.py +0 -45
  25. vibe_surf/chrome_extension/background.js +88 -0
  26. vibe_surf/chrome_extension/manifest.json +3 -1
  27. vibe_surf/chrome_extension/scripts/api-client.js +13 -0
  28. vibe_surf/chrome_extension/scripts/file-manager.js +482 -0
  29. vibe_surf/chrome_extension/scripts/history-manager.js +658 -0
  30. vibe_surf/chrome_extension/scripts/modal-manager.js +487 -0
  31. vibe_surf/chrome_extension/scripts/session-manager.js +52 -11
  32. vibe_surf/chrome_extension/scripts/settings-manager.js +1214 -0
  33. vibe_surf/chrome_extension/scripts/ui-manager.js +1530 -3163
  34. vibe_surf/chrome_extension/sidepanel.html +47 -7
  35. vibe_surf/chrome_extension/styles/activity.css +934 -0
  36. vibe_surf/chrome_extension/styles/base.css +76 -0
  37. vibe_surf/chrome_extension/styles/history-modal.css +791 -0
  38. vibe_surf/chrome_extension/styles/input.css +568 -0
  39. vibe_surf/chrome_extension/styles/layout.css +186 -0
  40. vibe_surf/chrome_extension/styles/responsive.css +454 -0
  41. vibe_surf/chrome_extension/styles/settings-environment.css +165 -0
  42. vibe_surf/chrome_extension/styles/settings-forms.css +389 -0
  43. vibe_surf/chrome_extension/styles/settings-modal.css +141 -0
  44. vibe_surf/chrome_extension/styles/settings-profiles.css +244 -0
  45. vibe_surf/chrome_extension/styles/settings-responsive.css +144 -0
  46. vibe_surf/chrome_extension/styles/settings-utilities.css +25 -0
  47. vibe_surf/chrome_extension/styles/variables.css +54 -0
  48. vibe_surf/cli.py +5 -22
  49. vibe_surf/common.py +35 -0
  50. vibe_surf/llm/openai_compatible.py +148 -93
  51. vibe_surf/logger.py +99 -0
  52. vibe_surf/{controller/vibesurf_tools.py → tools/browser_use_tools.py} +233 -221
  53. vibe_surf/tools/file_system.py +415 -0
  54. vibe_surf/{controller → tools}/mcp_client.py +4 -3
  55. vibe_surf/tools/report_writer_tools.py +21 -0
  56. vibe_surf/tools/vibesurf_tools.py +657 -0
  57. vibe_surf/tools/views.py +120 -0
  58. {vibesurf-0.1.9a6.dist-info → vibesurf-0.1.11.dist-info}/METADATA +23 -3
  59. vibesurf-0.1.11.dist-info/RECORD +93 -0
  60. vibe_surf/chrome_extension/styles/main.css +0 -2338
  61. vibe_surf/chrome_extension/styles/settings.css +0 -1100
  62. vibe_surf/controller/file_system.py +0 -53
  63. vibe_surf/controller/views.py +0 -37
  64. vibesurf-0.1.9a6.dist-info/RECORD +0 -71
  65. /vibe_surf/{controller → tools}/__init__.py +0 -0
  66. {vibesurf-0.1.9a6.dist-info → vibesurf-0.1.11.dist-info}/WHEEL +0 -0
  67. {vibesurf-0.1.9a6.dist-info → vibesurf-0.1.11.dist-info}/entry_points.txt +0 -0
  68. {vibesurf-0.1.9a6.dist-info → vibesurf-0.1.11.dist-info}/licenses/LICENSE +0 -0
  69. {vibesurf-0.1.9a6.dist-info → vibesurf-0.1.11.dist-info}/top_level.txt +0 -0
@@ -4,10 +4,27 @@
4
4
  <meta charset="UTF-8">
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
6
  <title>VibeSurf Extension</title>
7
- <link rel="stylesheet" href="styles/main.css">
7
+ <!-- Core Styles -->
8
+ <link rel="stylesheet" href="styles/variables.css">
9
+ <link rel="stylesheet" href="styles/base.css">
10
+ <link rel="stylesheet" href="styles/layout.css">
11
+
12
+ <!-- Feature Styles -->
13
+ <link rel="stylesheet" href="styles/activity.css">
14
+ <link rel="stylesheet" href="styles/input.css">
15
+ <link rel="stylesheet" href="styles/history-modal.css">
8
16
  <link rel="stylesheet" href="styles/components.css">
9
17
  <link rel="stylesheet" href="styles/animations.css">
10
- <link rel="stylesheet" href="styles/settings.css">
18
+ <!-- Settings Styles (Modular) -->
19
+ <link rel="stylesheet" href="styles/settings-modal.css">
20
+ <link rel="stylesheet" href="styles/settings-profiles.css">
21
+ <link rel="stylesheet" href="styles/settings-forms.css">
22
+ <link rel="stylesheet" href="styles/settings-environment.css">
23
+ <link rel="stylesheet" href="styles/settings-utilities.css">
24
+ <link rel="stylesheet" href="styles/settings-responsive.css">
25
+
26
+ <!-- Responsive Styles -->
27
+ <link rel="stylesheet" href="styles/responsive.css">
11
28
  </head>
12
29
  <body>
13
30
  <div id="app" class="vibesurf-container">
@@ -93,9 +110,9 @@
93
110
  <div id="control-panel" class="control-panel hidden">
94
111
  <button id="cancel-btn" class="control-btn cancel-btn">
95
112
  <svg width="16" height="16" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
96
- <path d="M6 6L18 18M6 18L18 6" stroke="currentColor" stroke-width="2" stroke-linecap="round"/>
113
+ <path d="M6 4H10V20H6V4ZM14 4H18V20H14V4Z" fill="currentColor"/>
97
114
  </svg>
98
- Cancel
115
+ Pause
99
116
  </button>
100
117
  <button id="resume-btn" class="control-btn resume-btn hidden">
101
118
  <svg width="16" height="16" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
@@ -117,11 +134,28 @@
117
134
  <div class="input-container">
118
135
  <div class="input-main">
119
136
  <div class="textarea-container">
120
- <textarea
121
- id="task-input"
122
- class="task-input"
137
+ <textarea
138
+ id="task-input"
139
+ class="task-input"
123
140
  placeholder="Describe your browsing task..."
124
141
  rows="3"></textarea>
142
+ <!-- Tab Selection Dropdown -->
143
+ <div id="tab-selector-dropdown" class="tab-selector-dropdown hidden">
144
+ <div class="tab-selector-header">
145
+ <span class="tab-selector-title">Select Tabs</span>
146
+ </div>
147
+ <div class="tab-selector-content">
148
+ <div class="tab-selector-controls">
149
+ <label class="tab-option select-all-option">
150
+ <input type="radio" id="select-all-tabs" name="tab-selection" class="tab-radio">
151
+ <span class="tab-name">Select All</span>
152
+ </label>
153
+ </div>
154
+ <div id="tab-options-list" class="tab-options-list">
155
+ <!-- Tab options will be populated here -->
156
+ </div>
157
+ </div>
158
+ </div>
125
159
  <div class="input-actions">
126
160
  <button id="attach-file-btn" class="action-btn attach-btn" title="Attach Files">
127
161
  <svg width="16" height="16" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
@@ -341,6 +375,12 @@
341
375
  <script src="scripts/markdown-it.min.js"></script>
342
376
  <script src="scripts/api-client.js"></script>
343
377
  <script src="scripts/session-manager.js"></script>
378
+ <!-- Specialized UI Managers -->
379
+ <script src="scripts/modal-manager.js"></script>
380
+ <script src="scripts/settings-manager.js"></script>
381
+ <script src="scripts/history-manager.js"></script>
382
+ <script src="scripts/file-manager.js"></script>
383
+ <!-- Core UI Manager -->
344
384
  <script src="scripts/ui-manager.js"></script>
345
385
  <script src="scripts/main.js"></script>
346
386
  </body>