opensteer 0.8.0 → 0.8.3
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/README.md +5 -4
- package/dist/{chunk-2UMBR4XO.js → chunk-JK4NMMM2.js} +1519 -420
- package/dist/chunk-JK4NMMM2.js.map +1 -0
- package/dist/cli/bin.cjs +17071 -15997
- package/dist/cli/bin.cjs.map +1 -1
- package/dist/cli/bin.js +1 -1
- package/dist/index.cjs +1535 -420
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +363 -447
- package/dist/index.d.ts +363 -447
- package/dist/index.js +13 -4
- package/dist/index.js.map +1 -1
- package/package.json +5 -4
- package/skills/README.md +13 -1
- package/skills/opensteer/SKILL.md +10 -2
- package/skills/opensteer/references/cli-reference.md +8 -0
- package/skills/opensteer/references/request-workflow.md +11 -0
- package/skills/opensteer/references/sdk-reference.md +9 -0
- package/dist/chunk-2UMBR4XO.js.map +0 -1
package/README.md
CHANGED
|
@@ -39,7 +39,8 @@ pnpm add @opensteer/engine-abp
|
|
|
39
39
|
```
|
|
40
40
|
|
|
41
41
|
`opensteer skills install` installs the packaged first-party skill pack through the upstream
|
|
42
|
-
`skills` CLI.
|
|
42
|
+
`skills` CLI. Use `opensteer skills install --agent claude-code` when you want to target
|
|
43
|
+
Claude Code explicitly.
|
|
43
44
|
|
|
44
45
|
`opensteer` installs the Playwright-backed local engine by default. Add
|
|
45
46
|
`@opensteer/engine-abp` only when you need the ABP backend.
|
|
@@ -333,6 +334,6 @@ The reverse-engineering workflow is: perform a browser action, inspect traffic w
|
|
|
333
334
|
`captureScripts()`, experiment with `rawRequest()`, promote a record with
|
|
334
335
|
`inferRequestPlan()`, then replay with `request()`.
|
|
335
336
|
|
|
336
|
-
`route()` and `interceptScript()` are
|
|
337
|
-
They
|
|
338
|
-
|
|
337
|
+
`route()` and `interceptScript()` are available on owned local sessions and
|
|
338
|
+
cloud-managed sessions. They remain unavailable on attached sessions because
|
|
339
|
+
attached browsers do not provide an owned routing surface.
|