@bluefly/openstandardagents 0.5.4 → 0.5.6
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 +5 -6
- package/package.json +5 -3
package/README.md
CHANGED
|
@@ -26,13 +26,12 @@ OSSA does not implement your agent. It describes it.
|
|
|
26
26
|
|
|
27
27
|
**npm:** `@bluefly/openstandardagents`
|
|
28
28
|
|
|
29
|
-
Current stable release: `0.5.
|
|
30
|
-
Prepared release: `0.5.2`
|
|
29
|
+
Current stable release: `0.5.6`
|
|
31
30
|
|
|
32
|
-
> **Note:** `0.5.3`
|
|
31
|
+
> **Note:** `0.5.3`, `0.5.4`, and `0.5.5` were accidentally published during recovery and are deprecated. Do not use them.
|
|
33
32
|
|
|
34
33
|
```bash
|
|
35
|
-
npm install @bluefly/openstandardagents@0.5.
|
|
34
|
+
npm install @bluefly/openstandardagents@0.5.6
|
|
36
35
|
```
|
|
37
36
|
|
|
38
37
|
Requires Node.js 20+.
|
|
@@ -241,9 +240,9 @@ Tests validate the canonical platform agent at `WORKING_DEMOs/agents/agents/@blu
|
|
|
241
240
|
|
|
242
241
|
## npm State
|
|
243
242
|
|
|
244
|
-
`0.5.
|
|
243
|
+
`0.5.6` is the current stable release.
|
|
245
244
|
|
|
246
|
-
`0.5.3`
|
|
245
|
+
`0.5.3`, `0.5.4`, and `0.5.5` were accidentally published during recovery and are **deprecated**. Do not use them.
|
|
247
246
|
|
|
248
247
|
## Contributing
|
|
249
248
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bluefly/openstandardagents",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.6",
|
|
4
4
|
"description": "OSSA - Open Standard for Software Agents. Spec-first schemas, validator, and CLI.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"ossa": "packages/cli/dist/cli.js"
|
|
@@ -50,8 +50,10 @@
|
|
|
50
50
|
"gen": "pnpm run gen:zod && pnpm run gen:openapi-ts && pnpm run gen:openapi-compliance-ts",
|
|
51
51
|
"gen:check": "pnpm gen && git diff --exit-code -- packages/validator/codegen packages/policy/src/codegen",
|
|
52
52
|
"publint": "publint",
|
|
53
|
-
"
|
|
54
|
-
"
|
|
53
|
+
"ci:validate": "pnpm install --frozen-lockfile && pnpm build && pnpm typecheck && pnpm test && pnpm validate && pnpm gen:check",
|
|
54
|
+
"release:doctor": "node scripts/release-doctor.mjs",
|
|
55
|
+
"release:check": "pnpm build && pnpm typecheck && pnpm test && pnpm validate && pnpm gen:check && pnpm publint && pnpm release:doctor",
|
|
56
|
+
"prepublishOnly": "RELEASE_DOCTOR_REQUIRE_CLEAN=1 node scripts/release-doctor.mjs && pnpm release:check"
|
|
55
57
|
},
|
|
56
58
|
"devDependencies": {
|
|
57
59
|
"@stoplight/spectral-cli": "^6.15.0",
|