@bluefly/openstandardagents 0.4.1 → 0.4.3
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/.version.json +7 -0
- package/CHANGELOG.md +33 -0
- package/README.md +8 -8
- package/dist/package.json +17 -3
- package/package.json +17 -3
package/.version.json
ADDED
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,39 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.4.3] - 2026-02-04
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- **CRITICAL**: Added `.version.json` to npm package files array (missing in v0.4.2)
|
|
12
|
+
- v0.4.2 crashed on global install with: `OSSA_VERSION_ERROR: Could not determine version dynamically`
|
|
13
|
+
- Root cause: `.version.json` not included in published package
|
|
14
|
+
- Impact: Made v0.4.2 completely unusable for global installations
|
|
15
|
+
|
|
16
|
+
### Added
|
|
17
|
+
- Comprehensive package validation tests to prevent future broken releases
|
|
18
|
+
- Pre-publish tarball installation test to verify global install works
|
|
19
|
+
- File inclusion validation to ensure critical files are packaged
|
|
20
|
+
|
|
21
|
+
## [0.4.2] - 2026-02-04
|
|
22
|
+
|
|
23
|
+
### Fixed
|
|
24
|
+
- Added missing runtime dependencies preventing global installation:
|
|
25
|
+
- `cli-table3` - Required by CLI wizard UI (broken in v0.4.1)
|
|
26
|
+
- `uuid` - Required by taxonomy service
|
|
27
|
+
- `js-yaml` - Required by YAML generators and tools
|
|
28
|
+
- `langchain` - Required by LangChain adapter
|
|
29
|
+
- `@langchain/core` - Required by LangChain integration
|
|
30
|
+
- `@langchain/openai` - Required by LangChain LLM support
|
|
31
|
+
- `@langchain/anthropic` - Required by LangChain Anthropic support
|
|
32
|
+
- `@modelcontextprotocol/sdk` - Required by MCP adapter
|
|
33
|
+
- `@temporalio/workflow` - Required by Temporal adapter
|
|
34
|
+
- `@temporalio/activity` - Required by Temporal adapter
|
|
35
|
+
|
|
36
|
+
### Added
|
|
37
|
+
- Dependency validation tool (`tools/validate-dependencies.ts`) to catch missing dependencies
|
|
38
|
+
- Pre-publish dependency check in `prepublishOnly` script
|
|
39
|
+
- `validate:deps` npm script to manually validate dependencies
|
|
40
|
+
|
|
8
41
|
## [0.4.1] - 2026-02-04
|
|
9
42
|
|
|
10
43
|
### Added
|
package/README.md
CHANGED
|
@@ -35,7 +35,7 @@ See [DEMO.md](https://github.com/blueflyio/openstandardagents/blob/main/DEMO.md)
|
|
|
35
35
|
|
|
36
36
|
---
|
|
37
37
|
|
|
38
|
-
## What's New in v0.4.
|
|
38
|
+
## What's New in v0.4.x (Latest)
|
|
39
39
|
|
|
40
40
|
### Production-Quality Exports with API Endpoints
|
|
41
41
|
|
|
@@ -98,7 +98,7 @@ OSSA is a **specification standard** that provides a common contract for definin
|
|
|
98
98
|
|
|
99
99
|
## Real-World Benefits
|
|
100
100
|
|
|
101
|
-
### 1. Agent Lifecycle Management (v0.4.
|
|
101
|
+
### 1. Agent Lifecycle Management (v0.4.x)
|
|
102
102
|
|
|
103
103
|
Track agents through their entire lifecycle from creation to retirement:
|
|
104
104
|
|
|
@@ -129,7 +129,7 @@ metadata:
|
|
|
129
129
|
- Plan for agent retirement and knowledge transfer
|
|
130
130
|
- Document career progression and achievements
|
|
131
131
|
|
|
132
|
-
### 2. Agent Genetics & Breeding (v0.4.
|
|
132
|
+
### 2. Agent Genetics & Breeding (v0.4.x)
|
|
133
133
|
|
|
134
134
|
Create new agents by combining traits from successful parent agents:
|
|
135
135
|
|
|
@@ -159,7 +159,7 @@ metadata:
|
|
|
159
159
|
- Track lineage and inherited traits
|
|
160
160
|
- Optimize agent performance across generations
|
|
161
161
|
|
|
162
|
-
### 3. Agent Marketplace & Economics (v0.4.
|
|
162
|
+
### 3. Agent Marketplace & Economics (v0.4.x)
|
|
163
163
|
|
|
164
164
|
Monetize agent capabilities and enable agent-to-agent transactions:
|
|
165
165
|
|
|
@@ -189,7 +189,7 @@ metadata:
|
|
|
189
189
|
- Track agent resource consumption and costs
|
|
190
190
|
- Enable pay-per-use agent services
|
|
191
191
|
|
|
192
|
-
### 4. Decentralized Identity (v0.4.
|
|
192
|
+
### 4. Decentralized Identity (v0.4.x)
|
|
193
193
|
|
|
194
194
|
Give agents globally unique, verifiable identities:
|
|
195
195
|
|
|
@@ -311,7 +311,7 @@ const agent: OssaAgent = {
|
|
|
311
311
|
};
|
|
312
312
|
```
|
|
313
313
|
|
|
314
|
-
## What's New in v0.4.
|
|
314
|
+
## What's New in v0.4.x
|
|
315
315
|
|
|
316
316
|
### NPM Package Export + Claude Skills Integration
|
|
317
317
|
|
|
@@ -396,7 +396,7 @@ claude --print "use my-agent to analyze this code"
|
|
|
396
396
|
- **Full Documentation**: [openstandardagents.org](https://openstandardagents.org)
|
|
397
397
|
- **API Reference**: [GitLab Pages](https://blueflyio.gitlab.io/ossa/openstandardagents)
|
|
398
398
|
- **Examples**: [`examples/`](./examples) directory
|
|
399
|
-
- **Migration Guide**: [`spec/v0.3/MIGRATION-v0.3.
|
|
399
|
+
- **Migration Guide**: [`spec/v0.3/MIGRATION-v0.3.6-to-v0.4.x.md`](./spec/v0.3/MIGRATION-v0.3.6-to-v0.4.x.md)
|
|
400
400
|
|
|
401
401
|
## Real-World Use Cases
|
|
402
402
|
|
|
@@ -471,7 +471,7 @@ MIT License - see [LICENSE](./LICENSE) for details.
|
|
|
471
471
|
- **GitLab**: [blueflyio/ossa/openstandardagents](https://gitlab.com/blueflyio/ossa/openstandardagents)
|
|
472
472
|
- **GitHub Mirror**: [blueflyio/openstandardagents](https://github.com/blueflyio/openstandardagents)
|
|
473
473
|
- **Website**: [openstandardagents.org](https://openstandardagents.org)
|
|
474
|
-
- **Spec**: [JSON Schema](./spec/v0.
|
|
474
|
+
- **Spec**: [JSON Schema](./spec/v0.4/agent.schema.json)
|
|
475
475
|
|
|
476
476
|
## Support
|
|
477
477
|
|
package/dist/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bluefly/openstandardagents",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.3",
|
|
4
4
|
"exports": {
|
|
5
5
|
"./schema": "./spec/v0.4/agent.schema.json",
|
|
6
6
|
"./schema/v0.4": "./spec/v0.4/agent.schema.json",
|
|
@@ -81,6 +81,7 @@
|
|
|
81
81
|
"openapi/",
|
|
82
82
|
"schemas/",
|
|
83
83
|
"templates/",
|
|
84
|
+
".version.json",
|
|
84
85
|
"README.md",
|
|
85
86
|
"DEMO.md",
|
|
86
87
|
"LICENSE",
|
|
@@ -183,7 +184,9 @@
|
|
|
183
184
|
"postinstall": "node bin/postinstall || true",
|
|
184
185
|
"// RELEASE & PUBLISH": "",
|
|
185
186
|
"prerelease": "npm run quality && npm run test && npm run validate",
|
|
186
|
-
"prepublishOnly": "
|
|
187
|
+
"prepublishOnly": "tsx tools/validate-package.ts",
|
|
188
|
+
"validate:deps": "tsx tools/validate-dependencies.ts",
|
|
189
|
+
"validate:package": "tsx tools/validate-package.ts",
|
|
187
190
|
"release:check": "npm run prerelease && echo '✅ Ready for release'",
|
|
188
191
|
"release:verify": "tsx src/dev-cli/src/index.ts release verify",
|
|
189
192
|
"release:prep": "tsx src/dev-cli/src/index.ts release prep v$(node -p \"require('./.version.json').latest_stable\")"
|
|
@@ -206,6 +209,10 @@
|
|
|
206
209
|
"@aws-sdk/client-bedrock-runtime": "^3.955.0",
|
|
207
210
|
"@gitbeaker/node": "^35.8.1",
|
|
208
211
|
"@google/generative-ai": "^0.21.0",
|
|
212
|
+
"@langchain/anthropic": "^0.3.10",
|
|
213
|
+
"@langchain/core": "^0.3.29",
|
|
214
|
+
"@langchain/openai": "^0.3.17",
|
|
215
|
+
"@modelcontextprotocol/sdk": "^0.6.0",
|
|
209
216
|
"@octokit/rest": "^20.0.0",
|
|
210
217
|
"@opentelemetry/api": "^1.9.0",
|
|
211
218
|
"@opentelemetry/exporter-jaeger": "^1.28.0",
|
|
@@ -217,6 +224,8 @@
|
|
|
217
224
|
"@opentelemetry/sdk-node": "^0.54.0",
|
|
218
225
|
"@opentelemetry/sdk-trace-base": "^1.28.0",
|
|
219
226
|
"@qdrant/js-client-rest": "^1.9.0",
|
|
227
|
+
"@temporalio/activity": "^1.11.3",
|
|
228
|
+
"@temporalio/workflow": "^1.11.3",
|
|
220
229
|
"@types/tar": "^6.1.13",
|
|
221
230
|
"@types/ws": "^8.18.1",
|
|
222
231
|
"ajv": "^8.12.0",
|
|
@@ -224,6 +233,7 @@
|
|
|
224
233
|
"axios": "^1.12.2",
|
|
225
234
|
"boxen": "^7.1.1",
|
|
226
235
|
"chalk": "^5.6.2",
|
|
236
|
+
"cli-table3": "^0.6.5",
|
|
227
237
|
"chokidar": "^5.0.0",
|
|
228
238
|
"commander": "^11.1.0",
|
|
229
239
|
"express": "^4.18.2",
|
|
@@ -231,6 +241,8 @@
|
|
|
231
241
|
"glob": "^11.0.3",
|
|
232
242
|
"inquirer": "^9.2.12",
|
|
233
243
|
"inversify": "^7.10.4",
|
|
244
|
+
"js-yaml": "^4.1.0",
|
|
245
|
+
"langchain": "^0.3.9",
|
|
234
246
|
"open": "^11.0.0",
|
|
235
247
|
"openai": "^6.9.1",
|
|
236
248
|
"ora": "^8.0.1",
|
|
@@ -238,6 +250,7 @@
|
|
|
238
250
|
"reflect-metadata": "^0.2.2",
|
|
239
251
|
"semver": "^7.7.3",
|
|
240
252
|
"tar": "^7.5.3",
|
|
253
|
+
"uuid": "^11.0.5",
|
|
241
254
|
"ws": "^8.19.0",
|
|
242
255
|
"yaml": "^2.3.0",
|
|
243
256
|
"zod": "^4.1.11"
|
|
@@ -276,7 +289,8 @@
|
|
|
276
289
|
"ts-jest": "^29.2.5",
|
|
277
290
|
"ts-node": "^10.9.2",
|
|
278
291
|
"tsx": "^4.21.0",
|
|
279
|
-
"typescript": "^5.9.3"
|
|
292
|
+
"typescript": "^5.9.3",
|
|
293
|
+
"vitest": "^2.1.8"
|
|
280
294
|
},
|
|
281
295
|
"volta": {
|
|
282
296
|
"node": "18.20.8",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bluefly/openstandardagents",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.3",
|
|
4
4
|
"exports": {
|
|
5
5
|
"./schema": "./spec/v0.4/agent.schema.json",
|
|
6
6
|
"./schema/v0.4": "./spec/v0.4/agent.schema.json",
|
|
@@ -81,6 +81,7 @@
|
|
|
81
81
|
"openapi/",
|
|
82
82
|
"schemas/",
|
|
83
83
|
"templates/",
|
|
84
|
+
".version.json",
|
|
84
85
|
"README.md",
|
|
85
86
|
"DEMO.md",
|
|
86
87
|
"LICENSE",
|
|
@@ -183,7 +184,9 @@
|
|
|
183
184
|
"postinstall": "node bin/postinstall || true",
|
|
184
185
|
"// RELEASE & PUBLISH": "",
|
|
185
186
|
"prerelease": "npm run quality && npm run test && npm run validate",
|
|
186
|
-
"prepublishOnly": "
|
|
187
|
+
"prepublishOnly": "tsx tools/validate-package.ts",
|
|
188
|
+
"validate:deps": "tsx tools/validate-dependencies.ts",
|
|
189
|
+
"validate:package": "tsx tools/validate-package.ts",
|
|
187
190
|
"release:check": "npm run prerelease && echo '✅ Ready for release'",
|
|
188
191
|
"release:verify": "tsx src/dev-cli/src/index.ts release verify",
|
|
189
192
|
"release:prep": "tsx src/dev-cli/src/index.ts release prep v$(node -p \"require('./.version.json').latest_stable\")"
|
|
@@ -206,6 +209,10 @@
|
|
|
206
209
|
"@aws-sdk/client-bedrock-runtime": "^3.955.0",
|
|
207
210
|
"@gitbeaker/node": "^35.8.1",
|
|
208
211
|
"@google/generative-ai": "^0.21.0",
|
|
212
|
+
"@langchain/anthropic": "^0.3.10",
|
|
213
|
+
"@langchain/core": "^0.3.29",
|
|
214
|
+
"@langchain/openai": "^0.3.17",
|
|
215
|
+
"@modelcontextprotocol/sdk": "^0.6.0",
|
|
209
216
|
"@octokit/rest": "^20.0.0",
|
|
210
217
|
"@opentelemetry/api": "^1.9.0",
|
|
211
218
|
"@opentelemetry/exporter-jaeger": "^1.28.0",
|
|
@@ -217,6 +224,8 @@
|
|
|
217
224
|
"@opentelemetry/sdk-node": "^0.54.0",
|
|
218
225
|
"@opentelemetry/sdk-trace-base": "^1.28.0",
|
|
219
226
|
"@qdrant/js-client-rest": "^1.9.0",
|
|
227
|
+
"@temporalio/activity": "^1.11.3",
|
|
228
|
+
"@temporalio/workflow": "^1.11.3",
|
|
220
229
|
"@types/tar": "^6.1.13",
|
|
221
230
|
"@types/ws": "^8.18.1",
|
|
222
231
|
"ajv": "^8.12.0",
|
|
@@ -224,6 +233,7 @@
|
|
|
224
233
|
"axios": "^1.12.2",
|
|
225
234
|
"boxen": "^7.1.1",
|
|
226
235
|
"chalk": "^5.6.2",
|
|
236
|
+
"cli-table3": "^0.6.5",
|
|
227
237
|
"chokidar": "^5.0.0",
|
|
228
238
|
"commander": "^11.1.0",
|
|
229
239
|
"express": "^4.18.2",
|
|
@@ -231,6 +241,8 @@
|
|
|
231
241
|
"glob": "^11.0.3",
|
|
232
242
|
"inquirer": "^9.2.12",
|
|
233
243
|
"inversify": "^7.10.4",
|
|
244
|
+
"js-yaml": "^4.1.0",
|
|
245
|
+
"langchain": "^0.3.9",
|
|
234
246
|
"open": "^11.0.0",
|
|
235
247
|
"openai": "^6.9.1",
|
|
236
248
|
"ora": "^8.0.1",
|
|
@@ -238,6 +250,7 @@
|
|
|
238
250
|
"reflect-metadata": "^0.2.2",
|
|
239
251
|
"semver": "^7.7.3",
|
|
240
252
|
"tar": "^7.5.3",
|
|
253
|
+
"uuid": "^11.0.5",
|
|
241
254
|
"ws": "^8.19.0",
|
|
242
255
|
"yaml": "^2.3.0",
|
|
243
256
|
"zod": "^4.1.11"
|
|
@@ -276,7 +289,8 @@
|
|
|
276
289
|
"ts-jest": "^29.2.5",
|
|
277
290
|
"ts-node": "^10.9.2",
|
|
278
291
|
"tsx": "^4.21.0",
|
|
279
|
-
"typescript": "^5.9.3"
|
|
292
|
+
"typescript": "^5.9.3",
|
|
293
|
+
"vitest": "^2.1.8"
|
|
280
294
|
},
|
|
281
295
|
"volta": {
|
|
282
296
|
"node": "18.20.8",
|