opensteer 0.5.0 → 0.5.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.
- package/README.md +23 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -124,6 +124,28 @@ in this order: `.env.<NODE_ENV>.local`, `.env.local` (except in test),
|
|
|
124
124
|
`.env.<NODE_ENV>`, `.env`. Existing `process.env` values are not overwritten.
|
|
125
125
|
Set `OPENSTEER_DISABLE_DOTENV_AUTOLOAD=true` to disable.
|
|
126
126
|
|
|
127
|
+
## Agent Skills
|
|
128
|
+
|
|
129
|
+
Opensteer maintains first-party agent skills in-repo under
|
|
130
|
+
[`skills/`](skills/README.md).
|
|
131
|
+
|
|
132
|
+
- Skill: [`skills/opensteer/SKILL.md`](skills/opensteer/SKILL.md)
|
|
133
|
+
- Skill: [`skills/electron/SKILL.md`](skills/electron/SKILL.md)
|
|
134
|
+
- Supporting references: [`skills/opensteer/references/`](skills/opensteer/references)
|
|
135
|
+
- Supporting references: [`skills/electron/references/`](skills/electron/references)
|
|
136
|
+
|
|
137
|
+
### Claude Code Marketplace
|
|
138
|
+
|
|
139
|
+
This repository also publishes a Claude Code plugin marketplace:
|
|
140
|
+
[`.claude-plugin/marketplace.json`](.claude-plugin/marketplace.json)
|
|
141
|
+
|
|
142
|
+
Install from Claude Code:
|
|
143
|
+
|
|
144
|
+
```text
|
|
145
|
+
/plugin marketplace add steerlabs/opensteer
|
|
146
|
+
/plugin install opensteer@opensteer-marketplace
|
|
147
|
+
```
|
|
148
|
+
|
|
127
149
|
## Docs
|
|
128
150
|
|
|
129
151
|
- [Getting Started](docs/getting-started.md)
|
|
@@ -133,6 +155,7 @@ Set `OPENSTEER_DISABLE_DOTENV_AUTOLOAD=true` to disable.
|
|
|
133
155
|
- [Selectors and Storage](docs/selectors.md)
|
|
134
156
|
- [HTML Cleaning and Snapshot Modes](docs/html-cleaning.md)
|
|
135
157
|
- [Live Web Validation Suite](docs/live-web-tests.md)
|
|
158
|
+
- [Skills](docs/skills.md)
|
|
136
159
|
|
|
137
160
|
## Community
|
|
138
161
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opensteer",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"description": "Open-source browser automation SDK with robust selectors and deterministic replay.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
],
|
|
62
62
|
"repository": {
|
|
63
63
|
"type": "git",
|
|
64
|
-
"url": "https://github.com/
|
|
64
|
+
"url": "https://github.com/steerlabs/opensteer"
|
|
65
65
|
},
|
|
66
66
|
"scripts": {
|
|
67
67
|
"build": "tsup src/index.ts src/cli/server.ts --dts --format esm,cjs --clean --external ai --external zod --external @ai-sdk/openai --external @ai-sdk/anthropic --external @ai-sdk/google --external @ai-sdk/xai --external @ai-sdk/groq --external openai --external @anthropic-ai/sdk --external @google/genai",
|