vibesurf 0.1.22__py3-none-any.whl → 0.1.23__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.
- vibe_surf/_version.py +2 -2
- vibe_surf/agents/prompts/vibe_surf_prompt.py +10 -0
- vibe_surf/agents/vibe_surf_agent.py +13 -2
- vibe_surf/backend/api/agent.py +38 -0
- vibe_surf/backend/api/task.py +1 -1
- vibe_surf/backend/main.py +2 -0
- vibe_surf/browser/agent_browser_session.py +5 -5
- vibe_surf/chrome_extension/scripts/api-client.js +5 -0
- vibe_surf/chrome_extension/scripts/main.js +1 -1
- vibe_surf/chrome_extension/scripts/ui-manager.js +397 -20
- vibe_surf/chrome_extension/sidepanel.html +13 -1
- vibe_surf/chrome_extension/styles/input.css +115 -0
- vibe_surf/tools/browser_use_tools.py +0 -90
- vibe_surf/tools/vibesurf_registry.py +52 -0
- vibe_surf/tools/vibesurf_tools.py +954 -5
- vibe_surf/tools/views.py +60 -0
- {vibesurf-0.1.22.dist-info → vibesurf-0.1.23.dist-info}/METADATA +1 -1
- {vibesurf-0.1.22.dist-info → vibesurf-0.1.23.dist-info}/RECORD +22 -20
- {vibesurf-0.1.22.dist-info → vibesurf-0.1.23.dist-info}/WHEEL +0 -0
- {vibesurf-0.1.22.dist-info → vibesurf-0.1.23.dist-info}/entry_points.txt +0 -0
- {vibesurf-0.1.22.dist-info → vibesurf-0.1.23.dist-info}/licenses/LICENSE +0 -0
- {vibesurf-0.1.22.dist-info → vibesurf-0.1.23.dist-info}/top_level.txt +0 -0
vibe_surf/tools/views.py
CHANGED
|
@@ -118,3 +118,63 @@ class VibeSurfDoneAction(BaseModel):
|
|
|
118
118
|
description='Optional list of 1-3 suggested follow-up tasks. Each task can only be described in one sentence, and each task must be strongly related to or extended from the original task.',
|
|
119
119
|
max_length=3,
|
|
120
120
|
)
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
class SkillSearchAction(BaseModel):
|
|
124
|
+
"""Parameters for skill_search action"""
|
|
125
|
+
query: str = Field(
|
|
126
|
+
description='Search query to generate multiple search tasks and find relevant information',
|
|
127
|
+
)
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
class SkillCrawlAction(BaseModel):
|
|
131
|
+
"""Parameters for skill_crawl action"""
|
|
132
|
+
query: str = Field(
|
|
133
|
+
description='Query describing what structured information to extract from the webpage',
|
|
134
|
+
)
|
|
135
|
+
tab_id: str | None = Field(
|
|
136
|
+
default=None,
|
|
137
|
+
min_length=4,
|
|
138
|
+
max_length=4,
|
|
139
|
+
description='Optional 4 character Tab ID to extract from specific tab',
|
|
140
|
+
)
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
class SkillSummaryAction(BaseModel):
|
|
144
|
+
"""Parameters for skill_summary action"""
|
|
145
|
+
tab_id: str | None = Field(
|
|
146
|
+
default=None,
|
|
147
|
+
min_length=4,
|
|
148
|
+
max_length=4,
|
|
149
|
+
description='Optional 4 character Tab ID to summarize specific tab',
|
|
150
|
+
)
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
class SkillTakeScreenshotAction(BaseModel):
|
|
154
|
+
"""Parameters for skill_take_screenshot action"""
|
|
155
|
+
tab_id: str | None = Field(
|
|
156
|
+
default=None,
|
|
157
|
+
min_length=4,
|
|
158
|
+
max_length=4,
|
|
159
|
+
description='Optional 4 character Tab ID to take screenshot of specific tab',
|
|
160
|
+
)
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
class SkillDeepResearchAction(BaseModel):
|
|
164
|
+
"""Parameters for skill_deep_research action"""
|
|
165
|
+
topic: str = Field(
|
|
166
|
+
description='Research topic for deep investigation',
|
|
167
|
+
)
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
class SkillCodeAction(BaseModel):
|
|
171
|
+
"""Parameters for skill_code action"""
|
|
172
|
+
code_requirement: str = Field(
|
|
173
|
+
description='Functional requirement or code prompt describing what the JavaScript code should accomplish. Can be a description like "extract products with price over $100", requirements, or complete/incomplete JavaScript code snippets that will be processed by LLM to generate proper executable code.',
|
|
174
|
+
)
|
|
175
|
+
tab_id: str | None = Field(
|
|
176
|
+
default=None,
|
|
177
|
+
min_length=4,
|
|
178
|
+
max_length=4,
|
|
179
|
+
description='Optional 4 character Tab ID to execute code on specific tab',
|
|
180
|
+
)
|
|
@@ -1,28 +1,29 @@
|
|
|
1
1
|
vibe_surf/__init__.py,sha256=WtduuMFGauMD_9dpk4fnRnLTAP6ka9Lfu0feAFNzLfo,339
|
|
2
|
-
vibe_surf/_version.py,sha256=
|
|
2
|
+
vibe_surf/_version.py,sha256=eZj6tqY-zTtH5r_8y6a4Vovz6LQ_hDHSesTIiwuyahQ,706
|
|
3
3
|
vibe_surf/cli.py,sha256=pbep2dBeQqralZ8AggkH4h2nayBarbdN8lhZxo35gNU,16689
|
|
4
4
|
vibe_surf/common.py,sha256=_WWMxen5wFwzUjEShn3yDVC1OBFUiJ6Vccadi6tuG6w,1215
|
|
5
5
|
vibe_surf/logger.py,sha256=k53MFA96QX6t9OfcOf1Zws8PP0OOqjVJfhUD3Do9lKw,3043
|
|
6
6
|
vibe_surf/agents/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
7
|
vibe_surf/agents/browser_use_agent.py,sha256=jeUYV7yk6vyycw6liju_597GdjB3CW_B2wEhn2F0ekk,45957
|
|
8
8
|
vibe_surf/agents/report_writer_agent.py,sha256=pCF2k6VLyO-sSviGBqqIyVD3SLqaZtSqiW3kvNfPY1I,20967
|
|
9
|
-
vibe_surf/agents/vibe_surf_agent.py,sha256=
|
|
9
|
+
vibe_surf/agents/vibe_surf_agent.py,sha256=V1H7BquR0zIderpBw5ArY8d_6oLphSAxoiE6_ABTJyk,74301
|
|
10
10
|
vibe_surf/agents/views.py,sha256=yHjNJloa-aofVTGyuRy08tBYP_Y3XLqt1DUWOUmHRng,4825
|
|
11
11
|
vibe_surf/agents/prompts/__init__.py,sha256=l4ieA0D8kLJthyNN85FKLNe4ExBa3stY3l-aImLDRD0,36
|
|
12
12
|
vibe_surf/agents/prompts/report_writer_prompt.py,sha256=sZE8MUT1CDLmRzbnbEQzAvTwJjpITgh2Q8g1_eXmkzE,4454
|
|
13
|
-
vibe_surf/agents/prompts/vibe_surf_prompt.py,sha256=
|
|
13
|
+
vibe_surf/agents/prompts/vibe_surf_prompt.py,sha256=hubN49_aD5LpkDGa0Z2AxGmUL04M7cigyDegDd-n8iE,6907
|
|
14
14
|
vibe_surf/backend/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
15
|
vibe_surf/backend/llm_config.py,sha256=9V8Gg065TQALbOKQnOqFWd8RzOJjegOD8w6YOf90Q7Y,5036
|
|
16
|
-
vibe_surf/backend/main.py,sha256=
|
|
16
|
+
vibe_surf/backend/main.py,sha256=K57Bk7JtG1xTu2zmMZwPd5oUuReHDHzrRzsarcggCwg,7402
|
|
17
17
|
vibe_surf/backend/shared_state.py,sha256=8tKfG9kHS7Rg4U0z7PSXqeS-Nr4MDJuGiCw6XrtSTqw,23478
|
|
18
18
|
vibe_surf/backend/voice_model_config.py,sha256=oee4fvOexXKzKRDv2-FEKQj7Z2OznACrj6mfWRGy7h0,567
|
|
19
19
|
vibe_surf/backend/api/__init__.py,sha256=XxF1jUOORpLYCfFuPrrnUGRnOrr6ClH0_MNPU-4RnSs,68
|
|
20
20
|
vibe_surf/backend/api/activity.py,sha256=_cnHusqolt5Hf3KdAf6FK-3sBc-TSaadmb5dJxGI57A,9398
|
|
21
|
+
vibe_surf/backend/api/agent.py,sha256=ISsG3FUIYoUCGcoQAfV3T6mtJSKHxC809p4bqjzjqlU,1199
|
|
21
22
|
vibe_surf/backend/api/browser.py,sha256=NXedyZG3NIVRIx5O7d9mHwVWX-Q4_KsX5mSgfKt8UEA,2122
|
|
22
23
|
vibe_surf/backend/api/config.py,sha256=EwzxYvC6HlaVo2OFWjtBmBMjX4eW2q8hp7l2LO2GZV0,27124
|
|
23
24
|
vibe_surf/backend/api/files.py,sha256=kJMG9MWECKXwGh64Q6xvAzNjeZGcLhIEnn65HiMZHKE,11762
|
|
24
25
|
vibe_surf/backend/api/models.py,sha256=n_bu8vavvO8bIKA1WUAbaGPFeZKeamMJelDWU3DlFJc,10533
|
|
25
|
-
vibe_surf/backend/api/task.py,sha256=
|
|
26
|
+
vibe_surf/backend/api/task.py,sha256=vpQMOn6YBuD_16jzfUajUvBYaydC0jj8Ny3WOJDVuck,14359
|
|
26
27
|
vibe_surf/backend/api/voices.py,sha256=YfPCqnR7EAYh2nfMRIpB0xEo6_giTtxrcSeobU3HQHg,17098
|
|
27
28
|
vibe_surf/backend/database/__init__.py,sha256=XhmcscnhgMhUyXML7m4SnuQIqkFpyY_zJ0D3yYa2RqQ,239
|
|
28
29
|
vibe_surf/backend/database/manager.py,sha256=Okmr6yG2aycmatONRMyRbHe6l53RkFIPeMxxPSD3ycY,11884
|
|
@@ -38,7 +39,7 @@ vibe_surf/backend/utils/encryption.py,sha256=CjLNh_n0Luhfa-6BB-icfzkiiDqj5b4Gu6M
|
|
|
38
39
|
vibe_surf/backend/utils/llm_factory.py,sha256=mNy8o3sw7vYJ8gwiTsrgXbG7Ri_B11ylE4KGcfHULp8,8972
|
|
39
40
|
vibe_surf/browser/__init__.py,sha256=_UToO2fZfSCrfjOcxhn4Qq7ZLbYeyPuUUEmqIva-Yv8,325
|
|
40
41
|
vibe_surf/browser/agen_browser_profile.py,sha256=J06hCBJSJ-zAFVM9yDFz8UpmiLuFyWke1EMekpU45eo,5871
|
|
41
|
-
vibe_surf/browser/agent_browser_session.py,sha256=
|
|
42
|
+
vibe_surf/browser/agent_browser_session.py,sha256=xV0nHo_TCb7b7QYhIee4cLzH-1rqJswYwH7GEwyQmqc,33980
|
|
42
43
|
vibe_surf/browser/browser_manager.py,sha256=PFJ9flmqR2uokuRZ3PDh_Dy6_6qcQ6kH_eRc1yT6Iq8,11257
|
|
43
44
|
vibe_surf/browser/utils.py,sha256=bBtpMiyz2ixWOr31GbJwZ8pVYcnxztKjTJJO92z1BDY,35742
|
|
44
45
|
vibe_surf/browser/watchdogs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -52,20 +53,20 @@ vibe_surf/chrome_extension/manifest.json,sha256=B08nHuU-bPc-pUr30Y-of39TjMlrE7D5
|
|
|
52
53
|
vibe_surf/chrome_extension/permission-iframe.html,sha256=R6VM1JfrzkfXTTD5mGCKui1dDWTqHEe9n8TtVdZNPNg,948
|
|
53
54
|
vibe_surf/chrome_extension/permission-request.html,sha256=ct1LTl_9euABiHcqNU6AFcvpCAfANWO0y_dDEAjtwfE,2905
|
|
54
55
|
vibe_surf/chrome_extension/popup.html,sha256=n3dI_-WbILm0q8O_za6xX0WvOofz5lwT_7YXs0u9RAE,4248
|
|
55
|
-
vibe_surf/chrome_extension/sidepanel.html,sha256
|
|
56
|
+
vibe_surf/chrome_extension/sidepanel.html,sha256=iivQHX867_xLDaiNCmeYveXnE6WpEV6YuMkXi9ek4qg,39706
|
|
56
57
|
vibe_surf/chrome_extension/icons/logo.icns,sha256=ZzY1eIKF4dNhNW4CeE1UBQloxNVC7bQx3qcClo3CnMQ,1569615
|
|
57
58
|
vibe_surf/chrome_extension/icons/logo.png,sha256=PLmv1E6sCGXUE5ZDxr-pFPQd9Gvaw_f1TnYmF8VIssU,566385
|
|
58
|
-
vibe_surf/chrome_extension/scripts/api-client.js,sha256=
|
|
59
|
+
vibe_surf/chrome_extension/scripts/api-client.js,sha256=MkIKaTRU923QvHMLbhRNB1MgxIypi-Lau1wwg3lH-wU,15819
|
|
59
60
|
vibe_surf/chrome_extension/scripts/file-manager.js,sha256=dtaYJNrpUnKH9zCsIpAAEkFN43ownDRtkyUhV8zxGZ0,17585
|
|
60
61
|
vibe_surf/chrome_extension/scripts/history-manager.js,sha256=J_EiBKrRp2cTxuy0Sq5oCju5YuX0_2pGG6NWrJSjC24,22218
|
|
61
|
-
vibe_surf/chrome_extension/scripts/main.js,sha256=
|
|
62
|
+
vibe_surf/chrome_extension/scripts/main.js,sha256=jf1Tsi-5ZgjLyDl5ToqkI9c3tElWBsvSL9_c-HD6seA,18524
|
|
62
63
|
vibe_surf/chrome_extension/scripts/markdown-it.min.js,sha256=gZ3xe0BdCJplNiHWTKrm6AGZydPy34jJKZqFIf-7hIw,102948
|
|
63
64
|
vibe_surf/chrome_extension/scripts/modal-manager.js,sha256=9ekFaTmy8sk94KK9HZJ7739ObsZ6ssllmRLP9rQxUKU,14187
|
|
64
65
|
vibe_surf/chrome_extension/scripts/permission-iframe-request.js,sha256=JTin53qSN8PqH4yoXluoK_llGJl1UlOgswp_9ojqxuk,8541
|
|
65
66
|
vibe_surf/chrome_extension/scripts/permission-request.js,sha256=9WEeTqMD0tHm1aX2ySkZgJ23siVZLZWAjVQe2dSmnoI,5168
|
|
66
67
|
vibe_surf/chrome_extension/scripts/session-manager.js,sha256=rOPGDTyV1oK-qYfqJKK8mpvQFSdnz0_F0wCcbxPfTSw,21887
|
|
67
68
|
vibe_surf/chrome_extension/scripts/settings-manager.js,sha256=9UGJFxQ1DbDbfndEBDv32MHfAW8YdfZmwg0vW6ABXOQ,77257
|
|
68
|
-
vibe_surf/chrome_extension/scripts/ui-manager.js,sha256=
|
|
69
|
+
vibe_surf/chrome_extension/scripts/ui-manager.js,sha256=1q-UFVQp_yFEtabKLtjvWegQo5d2C-zhL0e6ilVjzDI,122476
|
|
69
70
|
vibe_surf/chrome_extension/scripts/user-settings-storage.js,sha256=5aGuHXwTokX5wKjdNnu3rVkZv9XoD15FmgCELRRE3Xw,14191
|
|
70
71
|
vibe_surf/chrome_extension/scripts/voice-recorder.js,sha256=rIq9Rhyq-QyeCxJxxZGbnbPC0MCjQtNx6T2UC1g_al4,16852
|
|
71
72
|
vibe_surf/chrome_extension/styles/activity.css,sha256=aEFa_abskrDQvwsesPVOyJW3rUQUEBQpMKPHhY94CoA,19601
|
|
@@ -73,7 +74,7 @@ vibe_surf/chrome_extension/styles/animations.css,sha256=TLAet_xXBxCA-H36BWP4xBGB
|
|
|
73
74
|
vibe_surf/chrome_extension/styles/base.css,sha256=d8nt7Wej1r57G6pnBIGKEVkepFxlq8Ets0isngCf5w8,1296
|
|
74
75
|
vibe_surf/chrome_extension/styles/components.css,sha256=k8OkCJlTs5JuuU8p9tXeNeIpmTiRaQJJyG3Fk_6sE_A,19114
|
|
75
76
|
vibe_surf/chrome_extension/styles/history-modal.css,sha256=xCg0EPz1N4kg47jnz9q9E1M4zGag8lJMt_msAOkZi3M,16583
|
|
76
|
-
vibe_surf/chrome_extension/styles/input.css,sha256=
|
|
77
|
+
vibe_surf/chrome_extension/styles/input.css,sha256=Dmj0LGeV6usZc6DeoD4x71AJt08DpTfOCC48836V-b4,16689
|
|
77
78
|
vibe_surf/chrome_extension/styles/layout.css,sha256=HikLtMB4IxPdwjq8bDmJ7E3B0rArYVlQ4VK3HXez8yQ,4524
|
|
78
79
|
vibe_surf/chrome_extension/styles/responsive.css,sha256=a_SFX-PeOcenG4xMeoru5XFnnXdf0YhEyRzvTVVZHdI,8529
|
|
79
80
|
vibe_surf/chrome_extension/styles/settings-environment.css,sha256=UpjdTdGszUtNrrLF-T9sIhBBWrnY6oNVvrPcgkB9S8A,6215
|
|
@@ -86,16 +87,17 @@ vibe_surf/chrome_extension/styles/variables.css,sha256=enjyhsa0PeU3b-3uiXa-VkV-1
|
|
|
86
87
|
vibe_surf/llm/__init__.py,sha256=_vDVPo6STf343p1SgMQrF5023hicAx0g83pK2Gbk4Ek,601
|
|
87
88
|
vibe_surf/llm/openai_compatible.py,sha256=8v0LW_-ZoKv4gcO--6_SmU_BLF8XCJaiPxZ6kXFgM4I,14998
|
|
88
89
|
vibe_surf/tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
89
|
-
vibe_surf/tools/browser_use_tools.py,sha256=
|
|
90
|
+
vibe_surf/tools/browser_use_tools.py,sha256=tacxKUJL6uOt04f52_iIw1cs-FT-mBgIPmAsIc4Hww0,23730
|
|
90
91
|
vibe_surf/tools/file_system.py,sha256=PKRHe3EuOl78zzrA4SFiz1DDJotzx7OmszZqQMipQ-k,19317
|
|
91
92
|
vibe_surf/tools/mcp_client.py,sha256=OeCoTgyx4MoY7JxXndK6pGHIoyFOhf5r7XCbx25y1Ec,2446
|
|
92
93
|
vibe_surf/tools/report_writer_tools.py,sha256=sUqUFr-_Rs8RJ0Bs77Hrp07kNwRIvHv7ErzSPYSlbTg,705
|
|
93
|
-
vibe_surf/tools/
|
|
94
|
-
vibe_surf/tools/
|
|
94
|
+
vibe_surf/tools/vibesurf_registry.py,sha256=Z-8d9BrJl3RFMEK0Tw1Q5xNHX2kZGsnIGCTBZ3RM-pw,2159
|
|
95
|
+
vibe_surf/tools/vibesurf_tools.py,sha256=oeByep_Ud1V0n6pBayvLZJBUXch_iVVwOzUx8Rmsbqo,74350
|
|
96
|
+
vibe_surf/tools/views.py,sha256=QyOjbEL4VwJvyFnYytP6r-Nju9ufvrAllSK2U8kwrGU,6183
|
|
95
97
|
vibe_surf/tools/voice_asr.py,sha256=AJG0yq_Jq-j8ulDlbPhVFfK1jch9_ASesis73iki9II,4702
|
|
96
|
-
vibesurf-0.1.
|
|
97
|
-
vibesurf-0.1.
|
|
98
|
-
vibesurf-0.1.
|
|
99
|
-
vibesurf-0.1.
|
|
100
|
-
vibesurf-0.1.
|
|
101
|
-
vibesurf-0.1.
|
|
98
|
+
vibesurf-0.1.23.dist-info/licenses/LICENSE,sha256=czn6QYya0-jhLnStD9JqnMS-hwP5wRByipkrGTvoXLI,11355
|
|
99
|
+
vibesurf-0.1.23.dist-info/METADATA,sha256=De_G65fKEOpXevnlZu6IEyQ8W4F1KoxIif2yn8CJjqk,5158
|
|
100
|
+
vibesurf-0.1.23.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
101
|
+
vibesurf-0.1.23.dist-info/entry_points.txt,sha256=UxqpvMocL-PR33S6vLF2OmXn-kVzM-DneMeZeHcPMM8,48
|
|
102
|
+
vibesurf-0.1.23.dist-info/top_level.txt,sha256=VPZGHqSb6EEqcJ4ZX6bHIuWfon5f6HXl3c7BYpbRqnY,10
|
|
103
|
+
vibesurf-0.1.23.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|