@goodboyjs/schema 1.0.0 → 1.0.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.
@@ -23,9 +23,9 @@ export interface GoodBoySkillManifest {
23
23
  */
24
24
  license: string;
25
25
  /**
26
- * GoodBoy manifest schema version. Always 1.0.0 for v1.
26
+ * GoodBoy manifest schema version, semver-shaped (v1.x only). CLIs tolerate a newer minor than they know, stripping unknown top-level fields with a warning; a newer major is rejected. See manifest.ts.
27
27
  */
28
- schema_version: "1.0.0";
28
+ schema_version: string;
29
29
  /**
30
30
  * Maturity signal for registry display and filtering
31
31
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goodboyjs/schema",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "GoodBoy skill manifest JSON Schema and generated TypeScript type definitions",
5
5
  "keywords": [
6
6
  "claude-code",
@@ -42,8 +42,9 @@
42
42
  },
43
43
  "schema_version": {
44
44
  "type": "string",
45
- "const": "1.0.0",
46
- "description": "GoodBoy manifest schema version. Always 1.0.0 for v1."
45
+ "pattern": "^1\\.\\d+\\.\\d+$",
46
+ "maxLength": 32,
47
+ "description": "GoodBoy manifest schema version, semver-shaped (v1.x only). CLIs tolerate a newer minor than they know, stripping unknown top-level fields with a warning; a newer major is rejected. See manifest.ts."
47
48
  },
48
49
  "status": {
49
50
  "type": "string",
@@ -42,8 +42,9 @@
42
42
  },
43
43
  "schema_version": {
44
44
  "type": "string",
45
- "const": "1.0.0",
46
- "description": "GoodBoy manifest schema version. Always 1.0.0 for v1."
45
+ "pattern": "^1\\.\\d+\\.\\d+$",
46
+ "maxLength": 32,
47
+ "description": "GoodBoy manifest schema version, semver-shaped (v1.x only). CLIs tolerate a newer minor than they know, stripping unknown top-level fields with a warning; a newer major is rejected. See manifest.ts."
47
48
  },
48
49
  "status": {
49
50
  "type": "string",