opensteer 0.8.3 → 0.8.5
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 +4 -3
- package/dist/{chunk-JK4NMMM2.js → chunk-C7GWMSTV.js} +480 -321
- package/dist/chunk-C7GWMSTV.js.map +1 -0
- package/dist/cli/bin.cjs +2241 -1796
- package/dist/cli/bin.cjs.map +1 -1
- package/dist/cli/bin.js +363 -69
- package/dist/cli/bin.js.map +1 -1
- package/dist/index.cjs +503 -346
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +174 -145
- package/dist/index.d.ts +174 -145
- package/dist/index.js +22 -27
- package/dist/index.js.map +1 -1
- package/package.json +5 -5
- 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-JK4NMMM2.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,7 +332,8 @@ 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
338
|
`route()` and `interceptScript()` are available on owned local sessions and
|
|
338
339
|
cloud-managed sessions. They remain unavailable on attached sessions because
|