@rudderhq/agent-runtime-opencode-local 0.7.14 → 0.7.16

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-opencode-local",
3
- "version": "0.7.14",
3
+ "version": "0.7.16",
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.7.14",
70
+ "@rudderhq/agent-runtime-utils": "0.7.16",
71
71
  "picocolors": "^1.1.1"
72
72
  },
73
73
  "devDependencies": {
@@ -87,11 +87,14 @@ operating-practices guide for operating behavior:
87
87
  | `rudder_approval_issues` | `rudder approval issues <approval-id>` | List the issues linked to an approval. | no | no | no | no |
88
88
  | `rudder_approval_comment` | `rudder approval comment <approval-id> --body-file <path>` | Add a comment to an approval. | yes | no | no | attached when available |
89
89
  | `rudder_skill_list` | `rudder skill list --org-id <id>` | List organization-visible skills. | no | required | no | no |
90
+ | `rudder_skill_search` | `rudder skill search <query> --org-id <id>` | Search organization-visible skills by name, slug, description, or source. | no | required | no | no |
90
91
  | `rudder_skill_get` | `rudder skill get <skill-id> --org-id <id>` | Read one organization skill detail. | no | required | no | no |
91
92
  | `rudder_skill_file` | `rudder skill file <skill-id> --org-id <id> [--path SKILL.md]` | Read one file from an organization skill package. | no | required | no | no |
92
93
  | `rudder_skill_import` | `rudder skill import --org-id <id> --source <source>` | Import a skill package into the organization skill library. | yes | required | no | attached when available |
93
94
  | `rudder_skill_scan_local` | `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 |
94
95
  | `rudder_skill_scan_projects` | `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 |
96
+ | `rudder_plugin_search` | `rudder plugin search <query> --org-id <id>` | Search installed, local, and discoverable Rudder plugins. | no | required | no | no |
97
+ | `rudder_plugin_get` | `rudder plugin get <plugin-id> --org-id <id>` | Read an installed plugin, including its components and current setup state; use this to resolve plugin:// references. | no | required | no | no |
95
98
  | `rudder_browser_tabs` | `rudder browser tabs` | List Browser tabs owned by the current Rudder agent run. | no | required | required | required |
96
99
  | `rudder_browser_user_tabs` | `rudder browser user-tabs` | List user-visible tabs currently open in Rudder's built-in Browser without taking control of them. | no | required | required | required |
97
100
  | `rudder_browser_open` | `rudder browser open <url>` | Open a run-owned tab in the Rudder Browser. | yes | required | required | required |
@@ -148,6 +151,7 @@ operating-practices guide for operating behavior:
148
151
  | `rudder_runs_errors` | `rudder runs errors <run-id>` | List failed tool calls, stderr, runtime failures, and jump-to-context commands. | no | no | no | no |
149
152
  | `rudder_runs_cancel` | `rudder runs cancel <run-id>` | Cancel a heartbeat run through the governed server route. | yes | no | no | attached when available |
150
153
  | `rudder_runs_retry` | `rudder runs retry <run-id>` | Retry a failed, timed out, or cancelled run through the governed server route. | yes | no | no | attached when available |
154
+ | `rudder_runs_create` | `rudder runs create --task <text> --idempotency-key <key> [--target-agent-id <id>]` | Create an independently governed Delegation Run for the current or another same-organization Agent. | yes | no | required | required |
151
155
 
152
156
  ## Issue Command I/O And Shapes
153
157