@opentabs-dev/opentabs-plugin-fiverr 0.0.109

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 (49) hide show
  1. package/README.md +58 -0
  2. package/dist/adapter.iife.js +15641 -0
  3. package/dist/adapter.iife.js.map +7 -0
  4. package/dist/fiverr-api.d.ts +23 -0
  5. package/dist/fiverr-api.d.ts.map +1 -0
  6. package/dist/fiverr-api.js +106 -0
  7. package/dist/fiverr-api.js.map +1 -0
  8. package/dist/index.d.ts +14 -0
  9. package/dist/index.d.ts.map +1 -0
  10. package/dist/index.js +38 -0
  11. package/dist/index.js.map +1 -0
  12. package/dist/tools/draft-message.d.ts +12 -0
  13. package/dist/tools/draft-message.d.ts.map +1 -0
  14. package/dist/tools/draft-message.js +37 -0
  15. package/dist/tools/draft-message.js.map +1 -0
  16. package/dist/tools/get-conversation.d.ts +22 -0
  17. package/dist/tools/get-conversation.d.ts.map +1 -0
  18. package/dist/tools/get-conversation.js +28 -0
  19. package/dist/tools/get-conversation.js.map +1 -0
  20. package/dist/tools/get-current-page-context.d.ts +12 -0
  21. package/dist/tools/get-current-page-context.d.ts.map +1 -0
  22. package/dist/tools/get-current-page-context.js +39 -0
  23. package/dist/tools/get-current-page-context.js.map +1 -0
  24. package/dist/tools/get-gig-details.d.ts +41 -0
  25. package/dist/tools/get-gig-details.d.ts.map +1 -0
  26. package/dist/tools/get-gig-details.js +34 -0
  27. package/dist/tools/get-gig-details.js.map +1 -0
  28. package/dist/tools/get-seller-profile.d.ts +20 -0
  29. package/dist/tools/get-seller-profile.d.ts.map +1 -0
  30. package/dist/tools/get-seller-profile.js +27 -0
  31. package/dist/tools/get-seller-profile.js.map +1 -0
  32. package/dist/tools/list-conversations.d.ts +16 -0
  33. package/dist/tools/list-conversations.d.ts.map +1 -0
  34. package/dist/tools/list-conversations.js +24 -0
  35. package/dist/tools/list-conversations.js.map +1 -0
  36. package/dist/tools/schemas.d.ts +355 -0
  37. package/dist/tools/schemas.d.ts.map +1 -0
  38. package/dist/tools/schemas.js +223 -0
  39. package/dist/tools/schemas.js.map +1 -0
  40. package/dist/tools/search-gigs.d.ts +26 -0
  41. package/dist/tools/search-gigs.d.ts.map +1 -0
  42. package/dist/tools/search-gigs.js +42 -0
  43. package/dist/tools/search-gigs.js.map +1 -0
  44. package/dist/tools/send-message.d.ts +9 -0
  45. package/dist/tools/send-message.d.ts.map +1 -0
  46. package/dist/tools/send-message.js +31 -0
  47. package/dist/tools/send-message.js.map +1 -0
  48. package/dist/tools.json +819 -0
  49. package/package.json +67 -0
package/README.md ADDED
@@ -0,0 +1,58 @@
1
+ # Fiverr
2
+
3
+ OpenTabs plugin for Fiverr — gives AI agents access to Fiverr through your authenticated browser session.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ opentabs plugin install fiverr
9
+ ```
10
+
11
+ Or install globally via npm:
12
+
13
+ ```bash
14
+ npm install -g @opentabs-dev/opentabs-plugin-fiverr
15
+ ```
16
+
17
+ ## Setup
18
+
19
+ 1. Open [fiverr.com](https://www.fiverr.com) in Chrome and log in
20
+ 2. Open the OpenTabs side panel — the Fiverr plugin should appear as **ready**
21
+
22
+ ## Tools (8)
23
+
24
+ ### Account (1)
25
+
26
+ | Tool | Description | Type |
27
+ |---|---|---|
28
+ | `get_current_page_context` | Identify the logged-in user and current page | Read |
29
+
30
+ ### Gigs (2)
31
+
32
+ | Tool | Description | Type |
33
+ |---|---|---|
34
+ | `search_gigs` | Search Fiverr gigs by keyword | Read |
35
+ | `get_gig_details` | Get full details for a gig | Read |
36
+
37
+ ### Sellers (1)
38
+
39
+ | Tool | Description | Type |
40
+ |---|---|---|
41
+ | `get_seller_profile` | Get a seller’s public profile | Read |
42
+
43
+ ### Messages (4)
44
+
45
+ | Tool | Description | Type |
46
+ |---|---|---|
47
+ | `list_conversations` | List Fiverr inbox conversations | Read |
48
+ | `get_conversation` | Read a conversation thread | Read |
49
+ | `draft_message` | Compose a message preview without sending | Write |
50
+ | `send_message` | Send a message to a Fiverr user | Write |
51
+
52
+ ## How It Works
53
+
54
+ This plugin runs inside your Fiverr tab through the [OpenTabs](https://opentabs.dev) Chrome extension. It uses your existing browser session — no API tokens or OAuth apps required. All operations happen as you, with your permissions.
55
+
56
+ ## License
57
+
58
+ MIT