opensteer 0.8.7 → 0.8.9
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 +11 -11
- package/dist/{chunk-IAA57HNW.js → chunk-RO6WAWWG.js} +1948 -1008
- package/dist/chunk-RO6WAWWG.js.map +1 -0
- package/dist/cli/bin.cjs +1938 -1080
- package/dist/cli/bin.cjs.map +1 -1
- package/dist/cli/bin.js +14 -72
- package/dist/cli/bin.js.map +1 -1
- package/dist/index.cjs +1991 -1052
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +207 -24
- package/dist/index.d.ts +207 -24
- package/dist/index.js +9 -6
- package/dist/index.js.map +1 -1
- package/package.json +7 -7
- package/skills/opensteer/SKILL.md +29 -72
- package/skills/opensteer/references/cli-reference.md +6 -4
- package/skills/opensteer/references/request-workflow.md +21 -34
- package/skills/opensteer/references/sdk-reference.md +16 -14
- package/dist/chunk-IAA57HNW.js.map +0 -1
package/README.md
CHANGED
|
@@ -21,8 +21,7 @@ The package is organized around three lanes:
|
|
|
21
21
|
CLI:
|
|
22
22
|
|
|
23
23
|
```bash
|
|
24
|
-
|
|
25
|
-
opensteer skills install
|
|
24
|
+
npx --yes opensteer@latest skills install
|
|
26
25
|
```
|
|
27
26
|
|
|
28
27
|
SDK:
|
|
@@ -38,8 +37,9 @@ npm install opensteer
|
|
|
38
37
|
pnpm add @opensteer/engine-abp
|
|
39
38
|
```
|
|
40
39
|
|
|
41
|
-
`opensteer skills install` installs the packaged first-party skill pack
|
|
42
|
-
`skills` CLI. Use
|
|
40
|
+
`npx --yes opensteer@latest skills install` installs the packaged first-party skill pack
|
|
41
|
+
through the upstream `skills` CLI. Use
|
|
42
|
+
`npx --yes opensteer@latest skills install --agent claude-code` when you want to target
|
|
43
43
|
Claude Code explicitly.
|
|
44
44
|
|
|
45
45
|
`opensteer` installs the Playwright-backed local engine by default. Add
|
|
@@ -280,7 +280,7 @@ Important subtrees:
|
|
|
280
280
|
- `inspectLocalBrowserProfile({ userDataDir? })`
|
|
281
281
|
- `unlockLocalBrowserProfile({ userDataDir })`
|
|
282
282
|
- `open(url | { url?, name?, browser?, context? })`
|
|
283
|
-
- `goto(url | { url,
|
|
283
|
+
- `goto(url | { url, captureNetwork? })`
|
|
284
284
|
- `evaluate(script | { script, pageRef?, args? })`
|
|
285
285
|
- `evaluateJson({ script, pageRef?, args? })`
|
|
286
286
|
- `waitForNetwork({ ...filters, pageRef?, includeBodies?, timeoutMs? })`
|
|
@@ -291,12 +291,12 @@ Important subtrees:
|
|
|
291
291
|
- `closePage({ pageRef })`
|
|
292
292
|
- `waitForPage({ openerPageRef?, urlIncludes?, timeoutMs? })`
|
|
293
293
|
- `snapshot("action" | "extraction")`
|
|
294
|
-
- `click({ element | selector | description,
|
|
295
|
-
- `hover({ element | selector | description,
|
|
296
|
-
- `input({ element | selector | description, text,
|
|
297
|
-
- `scroll({ element | selector | description, direction, amount,
|
|
294
|
+
- `click({ element | selector | description, captureNetwork? })`
|
|
295
|
+
- `hover({ element | selector | description, captureNetwork? })`
|
|
296
|
+
- `input({ element | selector | description, text, captureNetwork? })`
|
|
297
|
+
- `scroll({ element | selector | description, direction, amount, captureNetwork? })`
|
|
298
298
|
- `extract({ description, schema? })`
|
|
299
|
-
- `queryNetwork({ recordId?, requestId?,
|
|
299
|
+
- `queryNetwork({ recordId?, requestId?, capture?, tag?, url?, hostname?, path?, method?, status?, resourceType?, pageRef?, includeBodies?, limit? })`
|
|
300
300
|
- `tagNetwork({ tag, ...filters })`
|
|
301
301
|
- `clearNetwork({ tag? })`
|
|
302
302
|
- `captureScripts({ pageRef?, includeInline?, includeExternal?, includeDynamic?, includeWorkers?, urlFilter?, persist? })`
|
|
@@ -313,7 +313,7 @@ Important subtrees:
|
|
|
313
313
|
- `listRecipes({ key? })`
|
|
314
314
|
- `runRecipe({ key, version?, input? })`
|
|
315
315
|
- `request(key, { path?, query?, headers?, body? })`
|
|
316
|
-
- `computerExecute({ action, screenshot?,
|
|
316
|
+
- `computerExecute({ action, screenshot?, captureNetwork? })`
|
|
317
317
|
- `disconnect()`
|
|
318
318
|
- `close()`
|
|
319
319
|
|