@oaslananka/kicad-protocol-schemas 1.1.1 → 1.2.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oaslananka/kicad-protocol-schemas",
3
- "version": "1.1.1",
3
+ "version": "1.2.0",
4
4
  "description": "Shared versioned protocol schemas and validators for KiCad Studio Kit extension/MCP compatibility contracts.",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -9,12 +9,20 @@
9
9
  "schemaVersion",
10
10
  "name",
11
11
  "profiles",
12
+ "category",
12
13
  "tier",
13
14
  "runtime",
15
+ "writes_files",
16
+ "writes_kicad_gui_state",
14
17
  "supports_dry_run",
18
+ "supports_rollback",
15
19
  "human_gate_required",
20
+ "requires_human_confirmation",
16
21
  "description",
17
- "verification_level"
22
+ "verification_level",
23
+ "maturity",
24
+ "advisory_level",
25
+ "tested_kicad_versions"
18
26
  ],
19
27
  "properties": {
20
28
  "schemaVersion": {
@@ -32,6 +40,10 @@
32
40
  },
33
41
  "uniqueItems": true
34
42
  },
43
+ "category": {
44
+ "type": "string",
45
+ "pattern": "^[a-z][a-z0-9_]*$"
46
+ },
35
47
  "tier": {
36
48
  "enum": ["read", "write", "export", "publish", "human_only"]
37
49
  },
@@ -42,21 +54,48 @@
42
54
  "kicad_ipc",
43
55
  "ngspice",
44
56
  "freerouting",
45
- "docker"
57
+ "docker",
58
+ "network"
46
59
  ]
47
60
  },
61
+ "writes_files": {
62
+ "type": "boolean"
63
+ },
64
+ "writes_kicad_gui_state": {
65
+ "type": "boolean"
66
+ },
48
67
  "supports_dry_run": {
49
68
  "type": "boolean"
50
69
  },
70
+ "supports_rollback": {
71
+ "type": "boolean"
72
+ },
51
73
  "human_gate_required": {
52
74
  "type": "boolean"
53
75
  },
76
+ "requires_human_confirmation": {
77
+ "type": "boolean"
78
+ },
54
79
  "description": {
55
80
  "type": "string"
56
81
  },
57
82
  "verification_level": {
58
83
  "enum": ["verified", "experimental", "planned"]
59
84
  },
85
+ "maturity": {
86
+ "enum": ["stable", "beta", "experimental", "advisory", "deprecated"]
87
+ },
88
+ "advisory_level": {
89
+ "enum": ["none", "advisory", "requires_evidence", "human_review"]
90
+ },
91
+ "tested_kicad_versions": {
92
+ "type": "array",
93
+ "items": {
94
+ "type": "string"
95
+ },
96
+ "minItems": 1,
97
+ "uniqueItems": true
98
+ },
60
99
  "inputSchema": {
61
100
  "type": "object"
62
101
  },