@bluefly/openstandardagents 0.4.2 → 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 ADDED
@@ -0,0 +1,7 @@
1
+ {
2
+ "current": "0.4.3",
3
+ "latest_stable": "0.4.3",
4
+ "spec_version": "0.4.1",
5
+ "spec_path": "spec/v0.4",
6
+ "schema_file": "agent.schema.json"
7
+ }
package/CHANGELOG.md CHANGED
@@ -5,6 +5,19 @@ 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
+
8
21
  ## [0.4.2] - 2026-02-04
9
22
 
10
23
  ### Fixed
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.1 (Latest)
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.1)
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.1)
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.1)
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.1)
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.1 (Release Candidate)
314
+ ## What's New in v0.4.x
315
315
 
316
316
  ### NPM Package Export + Claude Skills Integration
317
317
 
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bluefly/openstandardagents",
3
- "version": "0.4.2",
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,8 +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": "npm run validate:deps && npm run build:clean && npm run test:unit && npm run test:smoke",
187
+ "prepublishOnly": "tsx tools/validate-package.ts",
187
188
  "validate:deps": "tsx tools/validate-dependencies.ts",
189
+ "validate:package": "tsx tools/validate-package.ts",
188
190
  "release:check": "npm run prerelease && echo '✅ Ready for release'",
189
191
  "release:verify": "tsx src/dev-cli/src/index.ts release verify",
190
192
  "release:prep": "tsx src/dev-cli/src/index.ts release prep v$(node -p \"require('./.version.json').latest_stable\")"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bluefly/openstandardagents",
3
- "version": "0.4.2",
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,8 +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": "npm run validate:deps && npm run build:clean && npm run test:unit && npm run test:smoke",
187
+ "prepublishOnly": "tsx tools/validate-package.ts",
187
188
  "validate:deps": "tsx tools/validate-dependencies.ts",
189
+ "validate:package": "tsx tools/validate-package.ts",
188
190
  "release:check": "npm run prerelease && echo '✅ Ready for release'",
189
191
  "release:verify": "tsx src/dev-cli/src/index.ts release verify",
190
192
  "release:prep": "tsx src/dev-cli/src/index.ts release prep v$(node -p \"require('./.version.json').latest_stable\")"