@bluefly/openstandardagents 0.4.1 → 0.4.2
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/CHANGELOG.md +20 -0
- package/README.md +2 -2
- package/dist/package.json +15 -3
- package/package.json +15 -3
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,26 @@ 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.2] - 2026-02-04
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- Added missing runtime dependencies preventing global installation:
|
|
12
|
+
- `cli-table3` - Required by CLI wizard UI (broken in v0.4.1)
|
|
13
|
+
- `uuid` - Required by taxonomy service
|
|
14
|
+
- `js-yaml` - Required by YAML generators and tools
|
|
15
|
+
- `langchain` - Required by LangChain adapter
|
|
16
|
+
- `@langchain/core` - Required by LangChain integration
|
|
17
|
+
- `@langchain/openai` - Required by LangChain LLM support
|
|
18
|
+
- `@langchain/anthropic` - Required by LangChain Anthropic support
|
|
19
|
+
- `@modelcontextprotocol/sdk` - Required by MCP adapter
|
|
20
|
+
- `@temporalio/workflow` - Required by Temporal adapter
|
|
21
|
+
- `@temporalio/activity` - Required by Temporal adapter
|
|
22
|
+
|
|
23
|
+
### Added
|
|
24
|
+
- Dependency validation tool (`tools/validate-dependencies.ts`) to catch missing dependencies
|
|
25
|
+
- Pre-publish dependency check in `prepublishOnly` script
|
|
26
|
+
- `validate:deps` npm script to manually validate dependencies
|
|
27
|
+
|
|
8
28
|
## [0.4.1] - 2026-02-04
|
|
9
29
|
|
|
10
30
|
### Added
|
package/README.md
CHANGED
|
@@ -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.2",
|
|
4
4
|
"exports": {
|
|
5
5
|
"./schema": "./spec/v0.4/agent.schema.json",
|
|
6
6
|
"./schema/v0.4": "./spec/v0.4/agent.schema.json",
|
|
@@ -183,7 +183,8 @@
|
|
|
183
183
|
"postinstall": "node bin/postinstall || true",
|
|
184
184
|
"// RELEASE & PUBLISH": "",
|
|
185
185
|
"prerelease": "npm run quality && npm run test && npm run validate",
|
|
186
|
-
"prepublishOnly": "npm run build:clean && npm run test:unit && npm run test:smoke",
|
|
186
|
+
"prepublishOnly": "npm run validate:deps && npm run build:clean && npm run test:unit && npm run test:smoke",
|
|
187
|
+
"validate:deps": "tsx tools/validate-dependencies.ts",
|
|
187
188
|
"release:check": "npm run prerelease && echo '✅ Ready for release'",
|
|
188
189
|
"release:verify": "tsx src/dev-cli/src/index.ts release verify",
|
|
189
190
|
"release:prep": "tsx src/dev-cli/src/index.ts release prep v$(node -p \"require('./.version.json').latest_stable\")"
|
|
@@ -206,6 +207,10 @@
|
|
|
206
207
|
"@aws-sdk/client-bedrock-runtime": "^3.955.0",
|
|
207
208
|
"@gitbeaker/node": "^35.8.1",
|
|
208
209
|
"@google/generative-ai": "^0.21.0",
|
|
210
|
+
"@langchain/anthropic": "^0.3.10",
|
|
211
|
+
"@langchain/core": "^0.3.29",
|
|
212
|
+
"@langchain/openai": "^0.3.17",
|
|
213
|
+
"@modelcontextprotocol/sdk": "^0.6.0",
|
|
209
214
|
"@octokit/rest": "^20.0.0",
|
|
210
215
|
"@opentelemetry/api": "^1.9.0",
|
|
211
216
|
"@opentelemetry/exporter-jaeger": "^1.28.0",
|
|
@@ -217,6 +222,8 @@
|
|
|
217
222
|
"@opentelemetry/sdk-node": "^0.54.0",
|
|
218
223
|
"@opentelemetry/sdk-trace-base": "^1.28.0",
|
|
219
224
|
"@qdrant/js-client-rest": "^1.9.0",
|
|
225
|
+
"@temporalio/activity": "^1.11.3",
|
|
226
|
+
"@temporalio/workflow": "^1.11.3",
|
|
220
227
|
"@types/tar": "^6.1.13",
|
|
221
228
|
"@types/ws": "^8.18.1",
|
|
222
229
|
"ajv": "^8.12.0",
|
|
@@ -224,6 +231,7 @@
|
|
|
224
231
|
"axios": "^1.12.2",
|
|
225
232
|
"boxen": "^7.1.1",
|
|
226
233
|
"chalk": "^5.6.2",
|
|
234
|
+
"cli-table3": "^0.6.5",
|
|
227
235
|
"chokidar": "^5.0.0",
|
|
228
236
|
"commander": "^11.1.0",
|
|
229
237
|
"express": "^4.18.2",
|
|
@@ -231,6 +239,8 @@
|
|
|
231
239
|
"glob": "^11.0.3",
|
|
232
240
|
"inquirer": "^9.2.12",
|
|
233
241
|
"inversify": "^7.10.4",
|
|
242
|
+
"js-yaml": "^4.1.0",
|
|
243
|
+
"langchain": "^0.3.9",
|
|
234
244
|
"open": "^11.0.0",
|
|
235
245
|
"openai": "^6.9.1",
|
|
236
246
|
"ora": "^8.0.1",
|
|
@@ -238,6 +248,7 @@
|
|
|
238
248
|
"reflect-metadata": "^0.2.2",
|
|
239
249
|
"semver": "^7.7.3",
|
|
240
250
|
"tar": "^7.5.3",
|
|
251
|
+
"uuid": "^11.0.5",
|
|
241
252
|
"ws": "^8.19.0",
|
|
242
253
|
"yaml": "^2.3.0",
|
|
243
254
|
"zod": "^4.1.11"
|
|
@@ -276,7 +287,8 @@
|
|
|
276
287
|
"ts-jest": "^29.2.5",
|
|
277
288
|
"ts-node": "^10.9.2",
|
|
278
289
|
"tsx": "^4.21.0",
|
|
279
|
-
"typescript": "^5.9.3"
|
|
290
|
+
"typescript": "^5.9.3",
|
|
291
|
+
"vitest": "^2.1.8"
|
|
280
292
|
},
|
|
281
293
|
"volta": {
|
|
282
294
|
"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.2",
|
|
4
4
|
"exports": {
|
|
5
5
|
"./schema": "./spec/v0.4/agent.schema.json",
|
|
6
6
|
"./schema/v0.4": "./spec/v0.4/agent.schema.json",
|
|
@@ -183,7 +183,8 @@
|
|
|
183
183
|
"postinstall": "node bin/postinstall || true",
|
|
184
184
|
"// RELEASE & PUBLISH": "",
|
|
185
185
|
"prerelease": "npm run quality && npm run test && npm run validate",
|
|
186
|
-
"prepublishOnly": "npm run build:clean && npm run test:unit && npm run test:smoke",
|
|
186
|
+
"prepublishOnly": "npm run validate:deps && npm run build:clean && npm run test:unit && npm run test:smoke",
|
|
187
|
+
"validate:deps": "tsx tools/validate-dependencies.ts",
|
|
187
188
|
"release:check": "npm run prerelease && echo '✅ Ready for release'",
|
|
188
189
|
"release:verify": "tsx src/dev-cli/src/index.ts release verify",
|
|
189
190
|
"release:prep": "tsx src/dev-cli/src/index.ts release prep v$(node -p \"require('./.version.json').latest_stable\")"
|
|
@@ -206,6 +207,10 @@
|
|
|
206
207
|
"@aws-sdk/client-bedrock-runtime": "^3.955.0",
|
|
207
208
|
"@gitbeaker/node": "^35.8.1",
|
|
208
209
|
"@google/generative-ai": "^0.21.0",
|
|
210
|
+
"@langchain/anthropic": "^0.3.10",
|
|
211
|
+
"@langchain/core": "^0.3.29",
|
|
212
|
+
"@langchain/openai": "^0.3.17",
|
|
213
|
+
"@modelcontextprotocol/sdk": "^0.6.0",
|
|
209
214
|
"@octokit/rest": "^20.0.0",
|
|
210
215
|
"@opentelemetry/api": "^1.9.0",
|
|
211
216
|
"@opentelemetry/exporter-jaeger": "^1.28.0",
|
|
@@ -217,6 +222,8 @@
|
|
|
217
222
|
"@opentelemetry/sdk-node": "^0.54.0",
|
|
218
223
|
"@opentelemetry/sdk-trace-base": "^1.28.0",
|
|
219
224
|
"@qdrant/js-client-rest": "^1.9.0",
|
|
225
|
+
"@temporalio/activity": "^1.11.3",
|
|
226
|
+
"@temporalio/workflow": "^1.11.3",
|
|
220
227
|
"@types/tar": "^6.1.13",
|
|
221
228
|
"@types/ws": "^8.18.1",
|
|
222
229
|
"ajv": "^8.12.0",
|
|
@@ -224,6 +231,7 @@
|
|
|
224
231
|
"axios": "^1.12.2",
|
|
225
232
|
"boxen": "^7.1.1",
|
|
226
233
|
"chalk": "^5.6.2",
|
|
234
|
+
"cli-table3": "^0.6.5",
|
|
227
235
|
"chokidar": "^5.0.0",
|
|
228
236
|
"commander": "^11.1.0",
|
|
229
237
|
"express": "^4.18.2",
|
|
@@ -231,6 +239,8 @@
|
|
|
231
239
|
"glob": "^11.0.3",
|
|
232
240
|
"inquirer": "^9.2.12",
|
|
233
241
|
"inversify": "^7.10.4",
|
|
242
|
+
"js-yaml": "^4.1.0",
|
|
243
|
+
"langchain": "^0.3.9",
|
|
234
244
|
"open": "^11.0.0",
|
|
235
245
|
"openai": "^6.9.1",
|
|
236
246
|
"ora": "^8.0.1",
|
|
@@ -238,6 +248,7 @@
|
|
|
238
248
|
"reflect-metadata": "^0.2.2",
|
|
239
249
|
"semver": "^7.7.3",
|
|
240
250
|
"tar": "^7.5.3",
|
|
251
|
+
"uuid": "^11.0.5",
|
|
241
252
|
"ws": "^8.19.0",
|
|
242
253
|
"yaml": "^2.3.0",
|
|
243
254
|
"zod": "^4.1.11"
|
|
@@ -276,7 +287,8 @@
|
|
|
276
287
|
"ts-jest": "^29.2.5",
|
|
277
288
|
"ts-node": "^10.9.2",
|
|
278
289
|
"tsx": "^4.21.0",
|
|
279
|
-
"typescript": "^5.9.3"
|
|
290
|
+
"typescript": "^5.9.3",
|
|
291
|
+
"vitest": "^2.1.8"
|
|
280
292
|
},
|
|
281
293
|
"volta": {
|
|
282
294
|
"node": "18.20.8",
|