@decantr/core 1.0.1 → 1.0.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.
@@ -80,6 +80,42 @@
80
80
  "items": {
81
81
  "$ref": "https://decantr.ai/schemas/execution-pack.common.v1.json#/$defs/routeSummary"
82
82
  }
83
+ },
84
+ "navigationItems": {
85
+ "type": "array",
86
+ "description": "Items rendered in the shell's primary navigation for this section.",
87
+ "items": {
88
+ "type": "object",
89
+ "required": ["label", "route"],
90
+ "additionalProperties": false,
91
+ "properties": {
92
+ "label": { "type": "string", "minLength": 1 },
93
+ "route": { "type": "string", "minLength": 1 },
94
+ "icon": { "type": "string", "minLength": 1 },
95
+ "hotkey": { "type": "string", "minLength": 1 },
96
+ "active_match": { "type": "string", "minLength": 1 },
97
+ "badge": { "type": "string", "minLength": 1 }
98
+ }
99
+ }
100
+ },
101
+ "directives": {
102
+ "type": "array",
103
+ "description": "Execution-level directives emitted into section-pack rendering.",
104
+ "items": { "type": "string", "minLength": 1 }
105
+ },
106
+ "themeDecorators": {
107
+ "type": "array",
108
+ "description": "Required theme decorator contract — class + intent + slot hint, surfaced as a hard table in the rendered pack so cold-LLM scaffolds apply them rather than treating the decorator list as advisory.",
109
+ "items": {
110
+ "type": "object",
111
+ "required": ["class", "intent", "applyTo"],
112
+ "additionalProperties": false,
113
+ "properties": {
114
+ "class": { "type": "string", "minLength": 1 },
115
+ "intent": { "type": "string" },
116
+ "applyTo": { "type": "string" }
117
+ }
118
+ }
83
119
  }
84
120
  },
85
121
  "additionalProperties": false