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 CHANGED
@@ -21,8 +21,7 @@ The package is organized around three lanes:
21
21
  CLI:
22
22
 
23
23
  ```bash
24
- npm i -g opensteer
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 through the upstream
42
- `skills` CLI. Use `opensteer skills install --agent claude-code` when you want to target
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, networkTag? })`
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, networkTag? })`
295
- - `hover({ element | selector | description, networkTag? })`
296
- - `input({ element | selector | description, text, networkTag? })`
297
- - `scroll({ element | selector | description, direction, amount, networkTag? })`
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?, actionId?, tag?, url?, hostname?, path?, method?, status?, resourceType?, pageRef?, includeBodies?, limit? })`
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?, networkTag? })`
316
+ - `computerExecute({ action, screenshot?, captureNetwork? })`
317
317
  - `disconnect()`
318
318
  - `close()`
319
319