browserforce 1.0.6 → 1.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +99 -1
  2. package/package.json +2 -1
package/README.md CHANGED
@@ -241,7 +241,105 @@ Get started with simple prompts. The AI generates code and does the work.
241
241
 
242
242
  </details>
243
243
 
244
- **8+ more examples** available in the [User Guide](GUIDE.md#examples).
244
+ ### Multi-Tab Workflows
245
+
246
+ <details>
247
+ <summary><b>Example 3: Search → Extract → Return</b></summary>
248
+
249
+ **Prompt to AI:**
250
+ > Search ProductHunt for "AI tools" and give me the top 5 products with their taglines and upvote counts.
251
+
252
+ **What the AI does:** Navigates ProductHunt, searches, extracts product info, returns structured data.
253
+
254
+ **Use case:** Market research, finding tools, competitive analysis.
255
+
256
+ </details>
257
+
258
+ <details>
259
+ <summary><b>Example 4: Open result in new tab, process there</b></summary>
260
+
261
+ **Prompt to AI:**
262
+ > Find the #1 product from your last ProductHunt search, click into it, and read the full description. Tell me what it does.
263
+
264
+ **What the AI does:** Opens the product page from previous results, reads the description, summarizes it.
265
+
266
+ **Use case:** Deep-dive research, understanding competitors, due diligence.
267
+
268
+ </details>
269
+
270
+ <details>
271
+ <summary><b>Example 5: Debugging workflow (inspect + verify)</b></summary>
272
+
273
+ **Prompt to AI:**
274
+ > Go to my staging site at staging.myapp.com/checkout and take a labeled screenshot. Tell me if the "Complete Purchase" button is visible and what's around it.
275
+
276
+ **What the AI does:** Navigates, takes screenshot with interactive labels, analyzes button state and layout.
277
+
278
+ **Use case:** Visual debugging, QA checks, spotting broken elements.
279
+
280
+ </details>
281
+
282
+ <details>
283
+ <summary><b>Example 6: Test form with data</b></summary>
284
+
285
+ **Prompt to AI:**
286
+ > Sign up for Substack using the email test.user@example.com. Tell me if the signup completes successfully.
287
+
288
+ **What the AI does:** Fills the form, submits, waits for confirmation, reports success/failure.
289
+
290
+ **Use case:** Testing sign-up flows, QA automation, form validation.
291
+
292
+ </details>
293
+
294
+ <details>
295
+ <summary><b>Example 7: Content pipeline (search → extract → compare)</b></summary>
296
+
297
+ **Prompt to AI:**
298
+ > Search for "AI regulation" on both X.com and LinkedIn. Give me the top 5 trending posts from each and tell me which topics overlap.
299
+
300
+ **What the AI does:** Searches both platforms, extracts posts, compares content, returns analysis.
301
+
302
+ **Use case:** Multi-source research, trend analysis, market sentiment.
303
+
304
+ </details>
305
+
306
+ <details>
307
+ <summary><b>Example 8: Data extraction → CSV pipeline</b></summary>
308
+
309
+ **Prompt to AI:**
310
+ > Go to Hacker News and extract the top 10 stories with their titles and vote counts. Format as CSV so I can import into a spreadsheet.
311
+
312
+ **What the AI does:** Navigates HN, extracts story data, formats as CSV, returns it ready to paste.
313
+
314
+ **Use case:** Data workflows, trend tracking, content curation.
315
+
316
+ </details>
317
+
318
+ <details>
319
+ <summary><b>Example 9: A/B testing across variants</b></summary>
320
+
321
+ **Prompt to AI:**
322
+ > Visit myapp.com/?variant=red and myapp.com/?variant=blue. Compare the two designs and tell me which button color is more prominent and what other differences exist.
323
+
324
+ **What the AI does:** Opens both variants, compares layouts/colors/text, reports visual differences.
325
+
326
+ **Use case:** Design QA, A/B testing, variant comparison.
327
+
328
+ </details>
329
+
330
+ <details>
331
+ <summary><b>Example 10: Monitor + alert workflow</b></summary>
332
+
333
+ **Prompt to AI:**
334
+ > Check our status page at status.myapp.com every few minutes. Tell me the current status of the API and database. Alert me if anything changes from green to red.
335
+
336
+ **What the AI does:** Monitors status page, reads indicators, alerts on degradation.
337
+
338
+ **Use case:** Uptime monitoring, incident detection, SLA tracking.
339
+
340
+ </details>
341
+
342
+ **More examples** and detailed walkthrough available in the [User Guide](GUIDE.md#examples).
245
343
 
246
344
  ## How It Works
247
345
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "browserforce",
3
- "version": "1.0.6",
3
+ "version": "1.0.8",
4
4
  "type": "module",
5
5
  "description": "Give AI agents your real Chrome browser with progressive examples: simple reads, form interactions, multi-tab workflows, and state persistence. Search X and GitHub, extract ProductHunt data, test forms, compare A/B variants, monitor status pages. Works with OpenClaw, Claude, and any MCP agent.",
6
6
  "homepage": "https://github.com/ivalsaraj/browserforce",
@@ -27,6 +27,7 @@
27
27
  "browserforce": "./bin.js"
28
28
  },
29
29
  "files": [
30
+ "README.md",
30
31
  "bin.js",
31
32
  "relay/src/",
32
33
  "relay/package.json",