opensteer 0.8.18 → 0.9.1

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.
Files changed (40) hide show
  1. package/README.md +5 -5
  2. package/dist/chunk-4LP7QP2O.js +4336 -0
  3. package/dist/chunk-4LP7QP2O.js.map +1 -0
  4. package/dist/{chunk-GQ3PGLYQ.js → chunk-6PGXWW3X.js} +5142 -9634
  5. package/dist/chunk-6PGXWW3X.js.map +1 -0
  6. package/dist/chunk-BMPUL66S.js +1170 -0
  7. package/dist/chunk-BMPUL66S.js.map +1 -0
  8. package/dist/{chunk-T6TG4WO2.js → chunk-L4FWHBQJ.js} +4 -3
  9. package/dist/chunk-L4FWHBQJ.js.map +1 -0
  10. package/dist/chunk-Z53HNZ7Z.js +1800 -0
  11. package/dist/chunk-Z53HNZ7Z.js.map +1 -0
  12. package/dist/cli/bin.cjs +3533 -499
  13. package/dist/cli/bin.cjs.map +1 -1
  14. package/dist/cli/bin.js +130 -11
  15. package/dist/cli/bin.js.map +1 -1
  16. package/dist/index.cjs +1382 -487
  17. package/dist/index.cjs.map +1 -1
  18. package/dist/index.d.cts +20 -27
  19. package/dist/index.d.ts +20 -27
  20. package/dist/index.js +4 -2
  21. package/dist/local-view/public/assets/app.css +770 -0
  22. package/dist/local-view/public/assets/app.js +2053 -0
  23. package/dist/local-view/public/index.html +235 -0
  24. package/dist/local-view/serve-entry.cjs +7436 -0
  25. package/dist/local-view/serve-entry.cjs.map +1 -0
  26. package/dist/local-view/serve-entry.d.cts +1 -0
  27. package/dist/local-view/serve-entry.d.ts +1 -0
  28. package/dist/local-view/serve-entry.js +23 -0
  29. package/dist/local-view/serve-entry.js.map +1 -0
  30. package/dist/opensteer-KZCRP425.js +6 -0
  31. package/dist/{opensteer-XMCWYUH3.js.map → opensteer-KZCRP425.js.map} +1 -1
  32. package/dist/session-control-VGBFOH3Y.js +39 -0
  33. package/dist/session-control-VGBFOH3Y.js.map +1 -0
  34. package/package.json +8 -8
  35. package/skills/README.md +12 -6
  36. package/skills/opensteer/SKILL.md +275 -217
  37. package/skills/recorder/SKILL.md +1 -1
  38. package/dist/chunk-GQ3PGLYQ.js.map +0 -1
  39. package/dist/chunk-T6TG4WO2.js.map +0 -1
  40. package/dist/opensteer-XMCWYUH3.js +0 -4
package/README.md CHANGED
@@ -69,11 +69,12 @@ const records = await opensteer.network.query({
69
69
  json: true,
70
70
  });
71
71
 
72
- const detail = await opensteer.network.detail(records.records[0]!.recordId);
73
- const replay = await opensteer.network.replay(records.records[0]!.recordId);
72
+ const detail = await opensteer.network.detail(records.records[0]!.recordId, {
73
+ probe: true,
74
+ });
74
75
 
75
76
  console.log(detail.summary.url);
76
- console.log(replay.transport);
77
+ console.log(detail.transportProbe?.recommended);
77
78
  ```
78
79
 
79
80
  ## `session.fetch()`
@@ -187,8 +188,7 @@ Use `snapshot("action")` or `snapshot("extraction")` during exploration. The sna
187
188
  - `scroll({ direction, amount, element? | selector? | persist?, captureNetwork? })`
188
189
  - `extract({ schema } | { persist, schema? })`
189
190
  - `network.query(input?)`
190
- - `network.detail(recordId)`
191
- - `network.replay(recordId, overrides?)`
191
+ - `network.detail(recordId, { probe?: boolean })`
192
192
  - `waitForNetwork(input?)`
193
193
  - `waitForResponse(input?)`
194
194
  - `waitForPage(input?)`