opensteer 0.8.8 → 0.8.10
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 -4
- package/dist/{chunk-3QJGBVWT.js → chunk-F3X6UOEN.js} +3338 -822
- package/dist/chunk-F3X6UOEN.js.map +1 -0
- package/dist/cli/bin.cjs +3591 -885
- package/dist/cli/bin.cjs.map +1 -1
- package/dist/cli/bin.js +293 -78
- package/dist/cli/bin.js.map +1 -1
- package/dist/index.cjs +1770 -855
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +206 -15
- package/dist/index.d.ts +206 -15
- package/dist/index.js +6 -3
- package/dist/index.js.map +1 -1
- package/package.json +3 -3
- package/skills/opensteer/SKILL.md +47 -71
- package/skills/opensteer/references/cli-reference.md +2 -0
- package/skills/opensteer/references/request-workflow.md +309 -203
- package/skills/opensteer/references/sdk-reference.md +104 -14
- package/skills/recorder/SKILL.md +54 -0
- package/skills/recorder/references/recorder-reference.md +71 -0
- package/dist/chunk-3QJGBVWT.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
|