@rudderhq/agent-runtime-cursor-local 0.3.4-canary.11 → 0.3.4-canary.13
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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rudderhq/agent-runtime-cursor-local",
|
|
3
|
-
"version": "0.3.4-canary.
|
|
3
|
+
"version": "0.3.4-canary.13",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE",
|
|
5
5
|
"homepage": "https://github.com/Undertone0809/rudder",
|
|
6
6
|
"bugs": {
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"typecheck": "tsc --noEmit"
|
|
68
68
|
},
|
|
69
69
|
"dependencies": {
|
|
70
|
-
"@rudderhq/agent-runtime-utils": "0.3.4-canary.
|
|
70
|
+
"@rudderhq/agent-runtime-utils": "0.3.4-canary.13",
|
|
71
71
|
"picocolors": "^1.1.1"
|
|
72
72
|
},
|
|
73
73
|
"devDependencies": {
|
|
@@ -60,6 +60,32 @@ Direct API fallback is allowed for heartbeat close-out only when a required CLI
|
|
|
60
60
|
| `rudder skill import --org-id <id> --source <source>` | Import a skill package into the organization skill library. | yes | required | no | attached when available |
|
|
61
61
|
| `rudder skill scan-local --org-id <id> [--roots <csv>]` | Scan local roots for skill packages and import new ones. | yes | required | no | attached when available |
|
|
62
62
|
| `rudder skill scan-projects --org-id <id> [--project-ids <csv>] [--workspace-ids <csv>]` | Scan the org workspace and any legacy project workspace records for skill packages and import new ones. | yes | required | no | attached when available |
|
|
63
|
+
| `rudder automation list --org-id <id>` | List automations for an organization with compact local filters. | no | required | no | no |
|
|
64
|
+
| `rudder automation get <automation-id>` | Read one automation detail including triggers and recent runs. | no | no | no | no |
|
|
65
|
+
| `rudder automation runs <automation-id>` | List recent runs for one automation. | no | no | no | no |
|
|
66
|
+
| `rudder automation triggers list <automation-id>` | List triggers configured for one automation. | no | no | no | no |
|
|
67
|
+
| `rudder automation create --org-id <id> --title <title> --assignee-agent-id <id>` | Create an automation through the governed automation API. | yes | required | no | attached when available |
|
|
68
|
+
| `rudder automation update <automation-id>` | Update automation fields through the governed automation API. | yes | no | no | attached when available |
|
|
69
|
+
| `rudder automation enable <automation-id>` | Enable an automation by setting status to active. | yes | no | no | attached when available |
|
|
70
|
+
| `rudder automation disable <automation-id>` | Disable an automation by setting status to paused. | yes | no | no | attached when available |
|
|
71
|
+
| `rudder automation run <automation-id>` | Trigger a manual automation run. | yes | no | no | attached when available |
|
|
72
|
+
| `rudder chat list --org-id <id>` | List chat conversations without dumping full message history. | no | required | no | no |
|
|
73
|
+
| `rudder chat search <query> --org-id <id>` | Search chats with bounded snippets and optional scope filtering. | no | required | no | no |
|
|
74
|
+
| `rudder chat get <chat-id>` | Read one chat conversation record. | no | no | no | no |
|
|
75
|
+
| `rudder chat messages <chat-id>` | Read bounded chat messages, with transcript omitted unless requested. | no | no | no | no |
|
|
76
|
+
| `rudder chat transcript <chat-id>` | Read chat messages with assistant transcript entries clipped in human output. | no | no | no | no |
|
|
77
|
+
| `rudder chat read <chat-id>` | Read a bounded recent-message snapshot for one chat. | no | no | no | no |
|
|
78
|
+
| `rudder chat create --org-id <id>` | Create a chat conversation. | yes | required | no | attached when available |
|
|
79
|
+
| `rudder chat send <chat-id> --body <text>` | Send a chat message and persist the assistant reply through the server. | yes | no | no | attached when available |
|
|
80
|
+
| `rudder chat archive <chat-id>` | Archive a chat conversation without deleting it. | yes | no | no | attached when available |
|
|
81
|
+
| `rudder runs list --org-id <id>` | List observed agent runs with filters for status, agent, issue, runtime, and time. | no | required | no | no |
|
|
82
|
+
| `rudder runs get <run-id>` | Read one observed run detail. | no | no | no | no |
|
|
83
|
+
| `rudder runs events <run-id>` | List persisted run events. | no | no | no | no |
|
|
84
|
+
| `rudder runs log <run-id>` | Read stored run log content with clipped human output. | no | no | no | no |
|
|
85
|
+
| `rudder runs transcript <run-id>` | Read the server-normalized run transcript, newest-first by default. | no | no | no | no |
|
|
86
|
+
| `rudder runs errors <run-id>` | List failed tool calls, stderr, runtime failures, and jump-to-context commands. | no | no | no | no |
|
|
87
|
+
| `rudder runs cancel <run-id>` | Cancel a heartbeat run through the governed server route. | yes | no | no | attached when available |
|
|
88
|
+
| `rudder runs retry <run-id>` | Retry a failed, timed out, or cancelled run through the governed server route. | yes | no | no | attached when available |
|
|
63
89
|
|
|
64
90
|
## Issue Close-Out Signals
|
|
65
91
|
|