@opentabs-dev/opentabs-plugin-temporal-cloud 0.0.85

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 +53 -0
  2. package/dist/adapter.iife.js +15747 -0
  3. package/dist/adapter.iife.js.map +7 -0
  4. package/dist/index.d.ts +14 -0
  5. package/dist/index.d.ts.map +1 -0
  6. package/dist/index.js +34 -0
  7. package/dist/index.js.map +1 -0
  8. package/dist/temporal-api.d.ts +5 -0
  9. package/dist/temporal-api.d.ts.map +1 -0
  10. package/dist/temporal-api.js +87 -0
  11. package/dist/temporal-api.js.map +1 -0
  12. package/dist/tools/count-workflows.d.ts +8 -0
  13. package/dist/tools/count-workflows.d.ts.map +1 -0
  14. package/dist/tools/count-workflows.js +30 -0
  15. package/dist/tools/count-workflows.js.map +1 -0
  16. package/dist/tools/get-schedule.d.ts +25 -0
  17. package/dist/tools/get-schedule.d.ts.map +1 -0
  18. package/dist/tools/get-schedule.js +23 -0
  19. package/dist/tools/get-schedule.js.map +1 -0
  20. package/dist/tools/get-settings.d.ts +15 -0
  21. package/dist/tools/get-settings.d.ts.map +1 -0
  22. package/dist/tools/get-settings.js +42 -0
  23. package/dist/tools/get-settings.js.map +1 -0
  24. package/dist/tools/get-task-queue.d.ts +15 -0
  25. package/dist/tools/get-task-queue.d.ts.map +1 -0
  26. package/dist/tools/get-task-queue.js +31 -0
  27. package/dist/tools/get-task-queue.js.map +1 -0
  28. package/dist/tools/get-workflow-history.d.ts +18 -0
  29. package/dist/tools/get-workflow-history.d.ts.map +1 -0
  30. package/dist/tools/get-workflow-history.js +38 -0
  31. package/dist/tools/get-workflow-history.js.map +1 -0
  32. package/dist/tools/get-workflow.d.ts +27 -0
  33. package/dist/tools/get-workflow.d.ts.map +1 -0
  34. package/dist/tools/get-workflow.js +24 -0
  35. package/dist/tools/get-workflow.js.map +1 -0
  36. package/dist/tools/list-schedules.d.ts +19 -0
  37. package/dist/tools/list-schedules.d.ts.map +1 -0
  38. package/dist/tools/list-schedules.js +33 -0
  39. package/dist/tools/list-schedules.js.map +1 -0
  40. package/dist/tools/list-workflows.d.ts +26 -0
  41. package/dist/tools/list-workflows.d.ts.map +1 -0
  42. package/dist/tools/list-workflows.js +38 -0
  43. package/dist/tools/list-workflows.js.map +1 -0
  44. package/dist/tools/schemas.d.ts +290 -0
  45. package/dist/tools/schemas.d.ts.map +1 -0
  46. package/dist/tools/schemas.js +234 -0
  47. package/dist/tools/schemas.js.map +1 -0
  48. package/dist/tools.json +790 -0
  49. package/package.json +56 -0
package/README.md ADDED
@@ -0,0 +1,53 @@
1
+ # Temporal Cloud
2
+
3
+ OpenTabs plugin for Temporal Cloud — gives AI agents access to Temporal Cloud through your authenticated browser session.
4
+
5
+ ## Install
6
+
7
+ ```bash
8
+ opentabs plugin install temporal-cloud
9
+ ```
10
+
11
+ Or install globally via npm:
12
+
13
+ ```bash
14
+ npm install -g @opentabs-dev/opentabs-plugin-temporal-cloud
15
+ ```
16
+
17
+ ## Setup
18
+
19
+ 1. Open [cloud.temporal.io](https://cloud.temporal.io) in Chrome and log in
20
+ 2. Open the OpenTabs side panel — the Temporal Cloud plugin should appear as **ready**
21
+
22
+ ## Tools (8)
23
+
24
+ ### Workflows (4)
25
+
26
+ | Tool | Description | Type |
27
+ |---|---|---|
28
+ | `list_workflows` | List workflow executions with optional filtering | Read |
29
+ | `get_workflow` | Get workflow execution details | Read |
30
+ | `get_workflow_history` | Get workflow event history for debugging | Read |
31
+ | `count_workflows` | Count workflows matching a query | Write |
32
+
33
+ ### Schedules (2)
34
+
35
+ | Tool | Description | Type |
36
+ |---|---|---|
37
+ | `list_schedules` | List all schedules in the namespace | Read |
38
+ | `get_schedule` | Get schedule details and recent actions | Read |
39
+
40
+ ### Infrastructure (2)
41
+
42
+ | Tool | Description | Type |
43
+ |---|---|---|
44
+ | `get_task_queue` | Get task queue pollers and worker info | Read |
45
+ | `get_settings` | Get namespace UI settings and capabilities | Read |
46
+
47
+ ## How It Works
48
+
49
+ This plugin runs inside your Temporal Cloud 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.
50
+
51
+ ## License
52
+
53
+ MIT