opensteer 0.8.2 → 0.8.4
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 +7 -6
- package/dist/{chunk-X3G6QSCF.js → chunk-C7GWMSTV.js} +1700 -577
- package/dist/chunk-C7GWMSTV.js.map +1 -0
- package/dist/cli/bin.cjs +6115 -4757
- package/dist/cli/bin.cjs.map +1 -1
- package/dist/cli/bin.js +320 -52
- package/dist/cli/bin.js.map +1 -1
- package/dist/index.cjs +1751 -614
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +484 -539
- package/dist/index.d.ts +484 -539
- package/dist/index.js +30 -26
- package/dist/index.js.map +1 -1
- package/package.json +5 -4
- package/skills/opensteer/SKILL.md +66 -13
- package/skills/opensteer/references/cli-reference.md +115 -20
- package/skills/opensteer/references/request-workflow.md +35 -15
- package/skills/opensteer/references/sdk-reference.md +85 -21
- package/dist/chunk-X3G6QSCF.js.map +0 -1
package/README.md
CHANGED
|
@@ -304,8 +304,8 @@ Important subtrees:
|
|
|
304
304
|
- `route({ urlPattern, resourceTypes?, times?, handler })`
|
|
305
305
|
- `interceptScript({ urlPattern, handler, times? })`
|
|
306
306
|
- `rawRequest({ transport?, pageRef?, url, method?, headers?, body?, followRedirects? })`
|
|
307
|
-
- `inferRequestPlan({ recordId, key, version,
|
|
308
|
-
- `writeRequestPlan({ key, version, payload,
|
|
307
|
+
- `inferRequestPlan({ recordId, key, version, transport? })`
|
|
308
|
+
- `writeRequestPlan({ key, version, payload, tags?, provenance?, freshness? })`
|
|
309
309
|
- `getRequestPlan({ key, version? })`
|
|
310
310
|
- `listRequestPlans({ key? })`
|
|
311
311
|
- `writeRecipe({ key, version, payload, tags?, provenance? })`
|
|
@@ -332,8 +332,9 @@ structured status union (`available`, `unsupported_default_user_data_dir`, `open
|
|
|
332
332
|
The reverse-engineering workflow is: perform a browser action, inspect traffic with
|
|
333
333
|
`queryNetwork()`, optionally instrument with `addInitScript()`, `route()`, or
|
|
334
334
|
`captureScripts()`, experiment with `rawRequest()`, promote a record with
|
|
335
|
-
`inferRequestPlan()`,
|
|
335
|
+
`inferRequestPlan()`, passing `transport` when you have already proven a portable
|
|
336
|
+
request path, then replay with `request()`.
|
|
336
337
|
|
|
337
|
-
`route()` and `interceptScript()` are
|
|
338
|
-
They
|
|
339
|
-
|
|
338
|
+
`route()` and `interceptScript()` are available on owned local sessions and
|
|
339
|
+
cloud-managed sessions. They remain unavailable on attached sessions because
|
|
340
|
+
attached browsers do not provide an owned routing surface.
|