@rudderhq/agent-runtime-opencode-local 0.5.1 → 0.5.2-canary.1

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 (37) hide show
  1. package/dist/server/browser-capability.test.js +12 -2
  2. package/dist/server/browser-capability.test.js.map +1 -1
  3. package/dist/server/execute.d.ts +1 -0
  4. package/dist/server/execute.d.ts.map +1 -1
  5. package/dist/server/execute.js +466 -419
  6. package/dist/server/execute.js.map +1 -1
  7. package/package.json +2 -2
  8. package/skills/browser/SKILL.md +172 -41
  9. package/skills/browser/agents/openai.yaml +12 -2
  10. package/skills/browser/evals/evals.json +41 -0
  11. package/skills/browser/references/interaction-guide.md +171 -0
  12. package/skills/browser/references/tool-contract.md +192 -68
  13. package/skills/rudder-docs/references/cli-reference.md +18 -1
  14. package/skills/skill-creator/CHANGELOG.md +26 -0
  15. package/skills/skill-creator/LICENSE.txt +202 -0
  16. package/skills/skill-creator/SKILL.md +544 -3
  17. package/skills/skill-creator/agents/analyzer.md +274 -0
  18. package/skills/skill-creator/agents/comparator.md +202 -0
  19. package/skills/skill-creator/agents/grader.md +223 -0
  20. package/skills/skill-creator/assets/eval_review.html +146 -0
  21. package/skills/skill-creator/eval-viewer/generate_review.py +471 -0
  22. package/skills/skill-creator/eval-viewer/viewer.html +1325 -0
  23. package/skills/skill-creator/references/compatibility/claudecode.md +29 -0
  24. package/skills/skill-creator/references/compatibility/codex.md +69 -0
  25. package/skills/skill-creator/references/compatibility/other.md +41 -0
  26. package/skills/skill-creator/references/rudder.md +96 -0
  27. package/skills/skill-creator/references/schemas.md +430 -0
  28. package/skills/skill-creator/scripts/__init__.py +0 -0
  29. package/skills/skill-creator/scripts/aggregate_benchmark.py +401 -0
  30. package/skills/skill-creator/scripts/generate_report.py +335 -0
  31. package/skills/skill-creator/scripts/improve_description.py +197 -0
  32. package/skills/skill-creator/scripts/model_backends.py +115 -0
  33. package/skills/skill-creator/scripts/package_skill.py +136 -0
  34. package/skills/skill-creator/scripts/quick_validate.py +103 -0
  35. package/skills/skill-creator/scripts/run_eval.py +363 -0
  36. package/skills/skill-creator/scripts/run_loop.py +319 -0
  37. package/skills/skill-creator/scripts/utils.py +223 -0
@@ -1,73 +1,197 @@
1
1
  # Rudder Browser Tool Contract
2
2
 
3
- Browser tools are exposed by the first-party `rudder-tools` transport
4
- only when the deployment is `local_trusted`, the instance Browser capability is
5
- enabled, and the current adapter is `claude_local`, `codex_local`,
6
- `opencode_local`, or `pi_local`. Runtime fallback recomputes this gate and removes
7
- the Browser skill, capability flag, and tools together when the target runtime is
8
- not eligible.
9
-
10
- ## Tools
11
-
12
- - `rudder_browser_tabs`: list tabs owned by the current run.
13
- - `rudder_browser_open`: open an HTTP(S) URL and return its `tabId`.
14
- - `rudder_browser_navigate`: navigate a run-owned `tabId` to an HTTP(S) URL.
15
- - `rudder_browser_read`: return the current URL, title, readable text, and
16
- interactive elements with opaque `ref` values.
17
- - `rudder_browser_click`: click one `ref` from the latest page snapshot.
18
- - `rudder_browser_type`: replace the value at one `ref`; optional `submit`
19
- submits the owning form after input events are dispatched.
20
- - `rudder_browser_screenshot`: return a PNG capture for the current tab.
21
- - `rudder_browser_close`: close one run-owned tab.
22
-
23
- All tools derive `orgId`, `agentId`, and `runId` from Rudder runtime context.
24
- Those values are never valid model arguments. Browser authorization requires a
25
- run-scoped Agent JWT; the JWT's signed run is authoritative and any transport
26
- run header is only a matching assertion.
3
+ This reference describes the separate first-party `rudder-browser` transport.
4
+ It is available only when deployment is `local_trusted`, the instance Browser
5
+ setting is enabled, and the runtime is `claude_local`, `codex_local`,
6
+ `opencode_local`, or `pi_local`. Runtime fallback removes the Browser skill,
7
+ capability flag, and server or native bridge together. `rudder-tools`
8
+ never exposes Browser tools.
9
+
10
+ The transport polls a Broker-free, run-authenticated liveness endpoint. Live
11
+ disable or run termination aborts active Browser HTTP work, suppresses queued
12
+ stdio responses, revokes Browser state, and permanently exits that process.
13
+ Re-enable requires a fresh Browser server.
14
+
15
+ ## Codex In-App Browser Parity
16
+
17
+ The baseline is the complete dynamic documentation returned by the Codex
18
+ In-app Browser bundle `26.707.91948` on 2026-07-17. That IAB advertises only the
19
+ Browser `visibility` and `viewport` capabilities plus the Tab `pageAssets`
20
+ capability. Rudder uses typed MCP tools instead of the JavaScript object API and
21
+ targets the mapped core task outcomes below.
22
+
23
+ | Codex In-app Browser API | Rudder Browser MCP |
24
+ | --- | --- |
25
+ | `browser.user.openTabs()` | `rudder_browser_user_tabs` (coarse origin discovery only) |
26
+ | `browser.tabs.list()`, `selected()`, `get()` | `rudder_browser_tabs` |
27
+ | `browser.tabs.new()`, `tab.goto()` | `rudder_browser_open`, `rudder_browser_navigate` |
28
+ | `tab.back()`, `forward()`, `reload()`, `close()` | matching navigation tools and `rudder_browser_close` |
29
+ | `tab.title()`, `tab.url()` | tab results, locator reads, and `rudder_browser_read` |
30
+ | `tab.playwright.domSnapshot()` | `rudder_browser_snapshot` |
31
+ | Playwright locator builders, filters, reads, and waits | read-only `rudder_browser_locator` |
32
+ | `frameLocator(...)` | locator `frame` chain |
33
+ | `playwright.evaluate(...)`, `locator.evaluate(...)` | intentionally unavailable; use bounded declarative reads |
34
+ | URL/load waits | `rudder_browser_wait` |
35
+ | `tab.cua.*` | `rudder_browser_cua` |
36
+ | `tab.dom_cua.*` | `rudder_browser_dom_cua` |
37
+ | `tab.getJsDialog()` and dialog methods | `rudder_browser_dialog` |
38
+ | `tab.screenshot(...)` | `rudder_browser_screenshot` |
39
+ | `tab.clipboard.*` | `rudder_browser_clipboard` |
40
+ | `tab.dev.logs(...)` | `rudder_browser_logs` |
41
+ | Browser `visibility` capability | `rudder_browser_visibility` |
42
+ | Browser `viewport` capability | `rudder_browser_viewport` |
43
+ | Tab `pageAssets` capability | `rudder_browser_assets` |
44
+
45
+ `browser.nameSession()` has no separate MCP action because every Rudder Browser
46
+ session is already identified by its signed organization, Agent, and run. User
47
+ tab ids are read-only context. Unlike Codex, Rudder returns only hostname and
48
+ origin summaries for operator tabs because the Desktop profile can serve more
49
+ than one organization. Titles, paths, queries, fragments, and credentials are
50
+ never exposed to an Agent. This is shape/discovery parity, not exact user-tab
51
+ inspection parity. The current IAB does not advertise extension-only tab
52
+ claiming, history, finalize/handoff, browser authentication, raw CDP, bot-
53
+ detection, or secure credential handoff, so those are not IAB parity blockers.
54
+ Rudder also intentionally rejects arbitrary `file:` navigation; both the
55
+ origin-only user-tab view and local-file boundary require an explicit product
56
+ permission decision before literal parity would be safe.
57
+
58
+ Rudder additionally provides read-only explicit-media download, text/PDF and
59
+ Google Workspace export, element-at-coordinate inspection,
60
+ and a compact legacy ref flow.
61
+
62
+ ## Tool Inventory
63
+
64
+ ### Tabs And Navigation
65
+
66
+ - `rudder_browser_user_tabs {}` lists live user-visible tabs in Rudder's
67
+ built-in Browser as hostname and origin-only summaries. Results use opaque
68
+ ids and are never controllable Agent tab ids. Ask for the exact URL when an
69
+ origin alone cannot identify the requested page.
70
+ - `rudder_browser_tabs {}` lists tabs owned by the signed run and returns its
71
+ selected tab id.
72
+ - `rudder_browser_open { url }` opens an HTTP(S) URL.
73
+ - `rudder_browser_navigate { tabId, url }` replaces a run-owned tab's page.
74
+ - `rudder_browser_back`, `rudder_browser_forward`, and
75
+ `rudder_browser_reload` accept `{ tabId }`.
76
+ - `rudder_browser_close { tabId }` closes one run-owned tab.
77
+ - `rudder_browser_visibility { visible? }` reads or changes whether the run's
78
+ selected tab is shown to the local operator.
79
+ - `rudder_browser_viewport { action, width?, height? }` gets, sets, or resets a
80
+ run-wide viewport override. Set requires width 320-3840 and height 240-2160.
81
+
82
+ V1 permits eight tabs per run and 32 Agent Browser tabs per Desktop process.
83
+ User-visible tabs do not consume this Agent tab quota.
84
+
85
+ ### Page Understanding
86
+
87
+ - `rudder_browser_snapshot { tabId, boxes?, depth?, maxNodes? }` returns a
88
+ bounded accessibility-oriented DOM tree, same-origin frame boundaries,
89
+ optional boxes, and ephemeral DOM-CUA node ids. Depth is at most 30 and node
90
+ count at most 3000; Chromium full-tree capture is never materialized.
91
+ - `rudder_browser_locator` accepts a locator strategy of `css`, `testId`,
92
+ `href`, `role`, `label`, `placeholder`, or `text`. Locators may use a frame
93
+ chain, a scoped parent, filters, `and`, `or`, and an explicit index or
94
+ first/last position.
95
+ - Locator read actions are `count`, `allTextContents`, `textContent`,
96
+ `innerText`, `attribute`, `visible`, `enabled`, `checked`, and
97
+ `selected`, plus `wait` for attached, detached, visible, or hidden state.
98
+ - Locator operations are read-only. Mutating or event-generating actions such
99
+ as click, double-click, hover, fill, type, press, check, select, scroll, drag,
100
+ focus, and file assignment are rejected before Desktop dispatch.
101
+ - Arbitrary page or locator JavaScript evaluation is intentionally unavailable
102
+ because side-effect checks do not prevent credential reads.
103
+ - `rudder_browser_read { tabId }` returns bounded visible text and opaque refs
104
+ for the legacy compact flow.
105
+
106
+ ### Interaction
107
+
108
+ - File upload is disabled until Rudder can bind a run-owned staged handle rather
109
+ than trusting a model-supplied filesystem path.
110
+ - `rudder_browser_cua` supports coordinate `click`, `doubleClick`, `move`,
111
+ `scroll`, `drag`, `keypress`, `type`, and read-only `elementInfo`.
112
+ - `rudder_browser_dom_cua` supports only the read-only `get` action. Node ids
113
+ cannot be used for click, scroll, keyboard, or text input; use a high-level
114
+ ref or explicit coordinate action instead.
115
+ - `rudder_browser_click` and `rudder_browser_type` operate only on refs from
116
+ the latest `rudder_browser_read` result.
117
+
118
+ ### Dialogs, Evidence, And Artifacts
119
+
120
+ - `rudder_browser_dialog { tabId, action, promptText? }` gets, accepts, or
121
+ dismisses an alert, confirm, or before-unload dialog. JavaScript prompts are
122
+ dismissal-only in Electron; acceptance fails closed after dismissal.
123
+ - `rudder_browser_screenshot` supports viewport, full-page, explicit clip, or
124
+ unique-locator PNG/JPEG captures. Decoded image bytes are capped at 10 MB.
125
+ Full-page dimensions beyond Chromium's 16384-pixel limit fail explicitly
126
+ instead of returning a silently truncated image marked `fullPage`.
127
+ - `rudder_browser_logs` reads at most 500 buffered log entries and can filter by
128
+ level or substring and clear the buffer.
129
+ - `rudder_browser_clipboard` reads, writes, or clears a virtual run clipboard.
130
+ Text, binary Base64 entries, MIME types, and presentation style are bounded.
131
+ State remains in Desktop memory and is never installed on
132
+ `navigator.clipboard`. Explicit CUA copy, cut, and paste chords transfer only
133
+ the focused selection and never reach the native OS clipboard path.
134
+ - `rudder_browser_download` downloads explicit locator media without firing a
135
+ page event. Locator-triggered click downloads are rejected. Each artifact is
136
+ capped at 25 MB.
137
+ - `rudder_browser_assets` first creates an inventory, then bundles an explicit
138
+ `assetIds` or `kinds` selection. Each asset is capped at 25 MB, each bundle at
139
+ 100 MB, and each run at 250 MB. Response bodies are canceled while streaming
140
+ as soon as a byte limit is crossed; bundle admission is serialized per run.
141
+ Navigation makes an inventory stale and unknown requested ids are rejected;
142
+ callers must list the current page again. Inline SVGs are inventory metadata
143
+ only (`id`, media `type`, `origin`, `width`, and `height`); raw markup and page
144
+ attributes are never returned or bundled.
145
+ - `rudder_browser_content` exports text or PDF, or an eligible Google
146
+ Doc, Sheet, or Slides page to `pdf`, `md`, `docx`, `xlsx`, `csv`, or `pptx`.
147
+ Content exports are capped at 25 MB.
148
+ - `rudder_browser_wait` waits for a URL substring, text, text disappearance, or
149
+ bounded time. URL input is never treated as a regular expression.
150
+
151
+ All returned paths are temporary run-owned artifacts. Explicit tab close,
152
+ Browser disable, run cleanup, and Desktop shutdown await artifact deletion.
153
+
154
+ ## Identity And Logging
155
+
156
+ Every tool derives `orgId`, `agentId`, and `runId` only from the signed runtime
157
+ credential. Model arguments cannot select another identity, Broker, profile,
158
+ API URL, or key. Browser authorization requires a run-scoped Agent JWT; a run
159
+ header is only a matching assertion.
160
+
161
+ Browser request bodies are marked sensitive before HTTP error logging. Values,
162
+ clipboard data, prompt text, and Broker tokens
163
+ are never written as durable request-body diagnostics. Activity records contain
164
+ only action, status, safe origin, tab id, and stable error code.
27
165
 
28
166
  ## Stable Errors
29
167
 
30
- - `browser_disabled` (`409`): Browser is disabled in instance Settings. Do not
31
- retry until the operator enables it.
32
- - `browser_unavailable` (`503`): no live Rudder Desktop Browser Broker is
33
- accepting commands. Retry only after Desktop reconnects.
34
- - `browser_runtime_unsupported` (`403`): the current Agent runtime is not one of
35
- the supported local Browser adapters. Do not retry through the same runtime.
36
- - `browser_run_required` (`400`): the runtime did not provide a run id.
37
- - `agent_run_context_mismatch` (`403`): a transport run header does not match
38
- the run signed into the runtime credential. Do not retry with another run id.
39
- - `browser_run_credential_required` (`403`): the request used a credential that
40
- is not bound to one run. Browser cannot be authorized with a long-lived Agent
41
- API key plus a caller-supplied run id.
42
- - `browser_run_forbidden` (`403`): the run identity does not match the authenticated
43
- organization and Agent. Do not retry with guessed identity.
44
- - `browser_run_inactive` (`409`): the run has already ended. Do not retry from
45
- that run.
46
- - `browser_tab_not_found` (`404`): the tab no longer exists. List tabs and open
47
- a replacement when needed.
48
- - `browser_tab_forbidden` (`403`): the tab belongs to another run. Never probe
49
- or reuse it.
50
- - `browser_ref_not_found` (`404`): the element ref is stale, changed, hidden,
51
- covered, disabled, or no longer belongs to the latest snapshot. Read again;
52
- refs are intentionally invalidated after every click or type action.
53
- - `browser_unsafe_url` (`422`): the URL, protocol, or Rudder
54
- origin is not allowed. Correct the URL instead of retrying it unchanged.
55
- - `browser_invalid_argument` (`400` or `422`): a tool argument is malformed or
56
- outside its bound. Correct the request before retrying.
57
- - `browser_navigation_failed` (`502`): Chromium could not complete navigation.
58
- Inspect or list the tab before deciding whether to retry.
59
- - `browser_tab_limit` (`429`): the run or Desktop tab limit was reached. Reuse
60
- or close an owned tab before opening another. V1 permits eight tabs per run
61
- and 32 Agent Browser tabs per Desktop process.
62
- - `browser_timeout` (`504`): the command expired in a queue or timed out during
63
- execution. List tabs before retrying because an active timed-out tab is
64
- closed to prevent late side effects.
65
- - `browser_result_too_large` (`413`): the screenshot exceeded the bounded
66
- response size. Use `read` or another narrower evidence path.
67
- - `browser_broker_protocol_error` / `browser_broker_error` (`502`): Desktop
68
- returned an invalid or internal Broker result. Do not blindly retry a
69
- consequential action; inspect the tab or report the failure.
70
-
71
- The Browser profile may contain sessions shared by organizations in the same
72
- local Rudder instance. Tab ownership remains isolated by organization, Agent,
73
- and run. Shared login state never broadens the task's authorization boundary.
168
+ - `browser_disabled` (409): Browser is disabled. Do not retry from the old MCP
169
+ process.
170
+ - `browser_unavailable` (503): Desktop has no live Browser Broker.
171
+ - `browser_runtime_unsupported` (403): the runtime adapter is not eligible.
172
+ - `browser_run_required` (400): runtime context has no run id.
173
+ - `agent_run_context_mismatch` (403): transport and signed run differ.
174
+ - `browser_run_credential_required` (403): the credential is not run-scoped.
175
+ - `browser_run_forbidden` (403): signed organization, Agent, and run ownership
176
+ do not match.
177
+ - `browser_run_inactive` (409): the run has ended.
178
+ - `browser_tab_not_found` (404): the run tab no longer exists.
179
+ - `browser_tab_forbidden` (403): the tab belongs to another run.
180
+ - `browser_ref_not_found` (404): the ref, node, or locator is stale, missing,
181
+ hidden, covered, disabled, or ambiguous.
182
+ - `browser_unsafe_url` (422): protocol, URL, or Rudder app origin is
183
+ blocked.
184
+ - `browser_invalid_argument` (400 or 422): arguments exceed schema bounds.
185
+ - `browser_navigation_failed` (502): Chromium could not complete navigation.
186
+ - `browser_tab_limit` (429): reuse or close an owned tab.
187
+ - `browser_timeout` (504): the operation expired; active timed-out tabs close
188
+ to prevent late side effects.
189
+ - `browser_result_too_large` (413): narrow the result or artifact selection.
190
+ - `browser_action_failed` (502): the bounded Electron action failed.
191
+ - `browser_broker_protocol_error` or `browser_broker_error` (502): Desktop
192
+ returned an invalid or internal Broker result.
193
+
194
+ Website login state may be shared by organizations using the same local Rudder
195
+ instance. Tab, clipboard, viewport, dialog, download, asset, and artifact state
196
+ remain isolated by organization, Agent, and run. Shared login state never
197
+ expands authorization.
@@ -84,12 +84,29 @@ operating-practices guide for operating behavior:
84
84
  | `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 |
85
85
  | `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 |
86
86
  | `rudder_browser_tabs` | `rudder browser tabs` | List Browser tabs owned by the current Rudder agent run. | no | required | required | required |
87
+ | `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 |
87
88
  | `rudder_browser_open` | `rudder browser open <url>` | Open a run-owned tab in the Rudder Browser. | yes | required | required | required |
88
89
  | `rudder_browser_navigate` | `rudder browser navigate <tab-id> <url>` | Navigate a run-owned Rudder Browser tab. | yes | required | required | required |
90
+ | `rudder_browser_back` | `rudder browser back <tab-id>` | Navigate a run-owned Rudder Browser tab back in history. | yes | required | required | required |
91
+ | `rudder_browser_forward` | `rudder browser forward <tab-id>` | Navigate a run-owned Rudder Browser tab forward in history. | yes | required | required | required |
92
+ | `rudder_browser_reload` | `rudder browser reload <tab-id>` | Reload a run-owned Rudder Browser tab. | yes | required | required | required |
93
+ | `rudder_browser_viewport` | `rudder browser viewport --action <get|set|reset> [--width <px> --height <px>]` | Inspect, set, or reset the responsive viewport for the current Rudder Browser run. | yes | required | required | required |
94
+ | `rudder_browser_visibility` | `rudder browser visibility [--visible <true|false>]` | Inspect or change whether the current run's selected Rudder Browser tab is visible. | yes | required | required | required |
95
+ | `rudder_browser_snapshot` | `rudder browser snapshot <tab-id> [--input <json>]` | Capture a bounded DOM and accessibility-oriented snapshot, including frame structure and ephemeral node ids. | no | required | required | required |
96
+ | `rudder_browser_locator` | `rudder browser locator <tab-id> --input <json>` | Perform read-only bounded Browser locator text, attribute, state, count, or wait operations. | no | required | required | required |
97
+ | `rudder_browser_cua` | `rudder browser cua <tab-id> --input <json>` | Perform trusted coordinate mouse, scroll, drag, keyboard, and text input in a run-owned Browser tab. | yes | required | required | required |
98
+ | `rudder_browser_dom_cua` | `rudder browser dom-cua <tab-id> --input <json>` | Inspect a bounded read-only DOM snapshot with ephemeral node ids. | no | required | required | required |
99
+ | `rudder_browser_dialog` | `rudder browser dialog <tab-id> --input <json>` | Inspect, accept, or dismiss the active JavaScript dialog in a run-owned Browser tab. | yes | required | required | required |
100
+ | `rudder_browser_clipboard` | `rudder browser clipboard --input <json>` | Read or write the isolated virtual clipboard for the current Browser run without touching the OS clipboard. | yes | required | required | required |
101
+ | `rudder_browser_logs` | `rudder browser logs <tab-id> [--input <json>]` | Read bounded console and runtime logs captured for a run-owned Browser tab. | yes | required | required | required |
102
+ | `rudder_browser_download` | `rudder browser download <tab-id> --input <json>` | Download explicit locator media without dispatching page input into a bounded run-owned artifact. | yes | required | required | required |
103
+ | `rudder_browser_assets` | `rudder browser assets <tab-id> --input <json>` | List page assets or bundle an explicit bounded selection into a run-owned temporary artifact. | yes | required | required | required |
104
+ | `rudder_browser_content` | `rudder browser content <tab-id> --input <json>` | Export current page content or an eligible Google Workspace document into a bounded run-owned artifact. | yes | required | required | required |
105
+ | `rudder_browser_wait` | `rudder browser wait <tab-id> --input <json>` | Wait for bounded URL, text, disappearance, or time conditions in a run-owned Browser tab. | no | required | required | required |
89
106
  | `rudder_browser_read` | `rudder browser read <tab-id>` | Read a structured snapshot from a run-owned Rudder Browser tab. | no | required | required | required |
90
107
  | `rudder_browser_click` | `rudder browser click <tab-id> <ref>` | Click an element reference returned by Rudder Browser read. | yes | required | required | required |
91
108
  | `rudder_browser_type` | `rudder browser type <tab-id> <ref> --text <text>` | Type into an element reference in a run-owned Rudder Browser tab. | yes | required | required | required |
92
- | `rudder_browser_screenshot` | `rudder browser screenshot <tab-id>` | Capture a screenshot of a run-owned Rudder Browser tab. | no | required | required | required |
109
+ | `rudder_browser_screenshot` | `rudder browser screenshot <tab-id> [--input <json>]` | Capture a screenshot of a run-owned Rudder Browser tab. | no | required | required | required |
93
110
  | `rudder_browser_close` | `rudder browser close <tab-id>` | Close a run-owned Rudder Browser tab. | yes | required | required | required |
94
111
  | `rudder_automation_list` | `rudder automation list --org-id <id>` | List automations for an organization with compact local filters. | no | required | no | no |
95
112
  | `rudder_automation_get` | `rudder automation get <automation-id>` | Read one automation detail including triggers and recent runs. | no | no | no | no |
@@ -0,0 +1,26 @@
1
+ # Changelog
2
+
3
+ Notable changes to the `skill-creator` skill.
4
+
5
+ ## 2026-07-23
6
+
7
+ - Made Rudder compatibility the default inside Rudder and limited host-specific
8
+ guides to explicitly requested provider-native or cross-host work.
9
+
10
+ ## 2026-07-22
11
+
12
+ - Restored the complete self-contained skill creator package in Rudder.
13
+ - Added Rudder-specific ownership, installation, enablement, permission, and
14
+ evaluation-workspace guidance while preserving the upstream workflow.
15
+
16
+ ## 2026-06-25
17
+
18
+ - Added this changelog so future skill-maintenance work has a durable change history.
19
+
20
+ ## 2026-06-24
21
+
22
+ - Split host compatibility guidance from a single `references/compatibility.md` file into host-specific guides under `references/compatibility/`.
23
+ - Added `references/compatibility/claudecode.md` for Claude Code behavior, real trigger measurement, and baseline mechanics.
24
+ - Added `references/compatibility/codex.md` for Codex/OpenAI behavior, judged trigger proxy expectations, and `agents/openai.yaml` metadata guidance.
25
+ - Added `references/compatibility/other.md` for generic shell agents, chat-only hosts, and headless worker adaptations.
26
+ - Updated `SKILL.md` to direct agents to read exactly one host-specific compatibility guide unless evaluating or packaging across multiple hosts.
@@ -0,0 +1,202 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "[]"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. We also recommend that a
186
+ file or class name and description of purpose be included on the
187
+ same "printed page" as the copyright notice for easier
188
+ identification within third-party archives.
189
+
190
+ Copyright [yyyy] [name of copyright owner]
191
+
192
+ Licensed under the Apache License, Version 2.0 (the "License");
193
+ you may not use this file except in compliance with the License.
194
+ You may obtain a copy of the License at
195
+
196
+ http://www.apache.org/licenses/LICENSE-2.0
197
+
198
+ Unless required by applicable law or agreed to in writing, software
199
+ distributed under the License is distributed on an "AS IS" BASIS,
200
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
+ See the License for the specific language governing permissions and
202
+ limitations under the License.