textus 0.54.0 → 0.54.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +18 -0
- data/README.md +53 -73
- data/lib/textus/boot.rb +8 -1
- data/lib/textus/container.rb +21 -5
- data/lib/textus/core/freshness/verdict.rb +1 -1
- data/lib/textus/doctor/check/protocol_version.rb +6 -6
- data/lib/textus/doctor/check/stale_reviewed_stamp.rb +54 -0
- data/lib/textus/doctor.rb +1 -0
- data/lib/textus/envelope.rb +19 -6
- data/lib/textus/errors.rb +1 -1
- data/lib/textus/init.rb +4 -4
- data/lib/textus/manifest/schema/contract.rb +61 -0
- data/lib/textus/manifest/schema/semantics.rb +232 -0
- data/lib/textus/manifest/schema/validator.rb +24 -294
- data/lib/textus/manifest/schema.rb +1 -4
- data/lib/textus/manifest.rb +1 -3
- data/lib/textus/produce/render.rb +4 -2
- data/lib/textus/session.rb +14 -7
- data/lib/textus/store.rb +4 -4
- data/lib/textus/surfaces/mcp/catalog.rb +22 -10
- data/lib/textus/surfaces/mcp/server.rb +73 -135
- data/lib/textus/types.rb +15 -0
- data/lib/textus/version.rb +2 -2
- data/lib/textus/workflow/runner.rb +15 -0
- metadata +36 -7
- data/lib/textus/surfaces/mcp/routing.rb +0 -51
- data/lib/textus/surfaces/mcp/session.rb +0 -9
- data/lib/textus/surfaces/mcp/tool_schemas.rb +0 -17
|
@@ -0,0 +1,232 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Textus
|
|
4
|
+
class Manifest
|
|
5
|
+
module Schema
|
|
6
|
+
# Cross-field rules and ADR migration hints. Called by Validator.validate!
|
|
7
|
+
# AFTER the structural dry-schema Contract passes. Operates on the raw hash.
|
|
8
|
+
module Semantics
|
|
9
|
+
module_function
|
|
10
|
+
|
|
11
|
+
def check!(raw)
|
|
12
|
+
check_roles!(raw["roles"])
|
|
13
|
+
check_lanes!(raw["lanes"])
|
|
14
|
+
check_entries!(raw["entries"])
|
|
15
|
+
check_owners!(raw["lanes"], raw["entries"])
|
|
16
|
+
check_rules!(raw["rules"])
|
|
17
|
+
check_single_queue!(raw)
|
|
18
|
+
check_single_machine!(raw)
|
|
19
|
+
check_lane_kind_consistency!(raw)
|
|
20
|
+
walk(raw["audit"], AUDIT_KEYS, "$.audit") if raw["audit"].is_a?(Hash)
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
def check_roles!(roles)
|
|
24
|
+
return if roles.nil?
|
|
25
|
+
|
|
26
|
+
roles.each_with_index do |r, i|
|
|
27
|
+
path = "$.roles[#{i}]"
|
|
28
|
+
name = r["name"]
|
|
29
|
+
unless Textus::Role::NAMES.include?(name)
|
|
30
|
+
raise BadManifest.new(
|
|
31
|
+
"unknown role name '#{name}' at '#{path}' (allowed: #{Textus::Role::NAMES.join(", ")})",
|
|
32
|
+
)
|
|
33
|
+
end
|
|
34
|
+
Array(r["can"]).each do |verb|
|
|
35
|
+
next if CAPABILITIES.include?(verb)
|
|
36
|
+
|
|
37
|
+
hint = %w[ingest fetch].include?(verb) ? " — the quarantine capability folded into 'converge' (ADR 0090)" : ""
|
|
38
|
+
raise BadManifest.new(
|
|
39
|
+
"unknown capability '#{verb}' for role '#{name}' at '#{path}' " \
|
|
40
|
+
"(known: #{CAPABILITIES.join(", ")})#{hint}",
|
|
41
|
+
)
|
|
42
|
+
end
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
author_holders = roles.count { |r| Array(r["can"]).include?("author") }
|
|
46
|
+
return if author_holders <= 1
|
|
47
|
+
|
|
48
|
+
raise BadManifest.new(
|
|
49
|
+
"manifest declares #{author_holders} roles with the author capability; at most one is allowed",
|
|
50
|
+
)
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
def check_lanes!(lanes)
|
|
54
|
+
Array(lanes).each_with_index do |z, i|
|
|
55
|
+
walk(z, LANE_KEYS, "$.lanes[#{i}]")
|
|
56
|
+
next unless %w[quarantine derived].include?(z["kind"])
|
|
57
|
+
|
|
58
|
+
raise BadManifest.new(
|
|
59
|
+
"lane kind '#{z["kind"]}' at '$.lanes[#{i}]' was folded into 'machine' (ADR 0091) — " \
|
|
60
|
+
"use `kind: machine`",
|
|
61
|
+
)
|
|
62
|
+
end
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
def check_entries!(entries)
|
|
66
|
+
Array(entries).each_with_index do |e, i|
|
|
67
|
+
path = "$.entries[#{i}]"
|
|
68
|
+
check_retired_publish_keys!(e, path)
|
|
69
|
+
check_retired_render_keys!(e, path)
|
|
70
|
+
walk(e, ENTRY_KEYS, path)
|
|
71
|
+
check_publish_block!(e, path)
|
|
72
|
+
walk(e["source"], SOURCE_KEYS, "#{path}.source") if e.is_a?(Hash) && e["source"].is_a?(Hash)
|
|
73
|
+
end
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
def check_retired_publish_keys!(entry, path)
|
|
77
|
+
return unless entry.is_a?(Hash)
|
|
78
|
+
|
|
79
|
+
if entry.key?("publish_each")
|
|
80
|
+
raise BadManifest.new(
|
|
81
|
+
"publish_each was removed in 0.42.0 (ADR 0051) at '#{path}' — " \
|
|
82
|
+
"mirror the subtree with `publish: { tree: \"...\" }`.",
|
|
83
|
+
)
|
|
84
|
+
end
|
|
85
|
+
if entry.key?("publish_to")
|
|
86
|
+
raise BadManifest.new(
|
|
87
|
+
"publish_to was replaced by the publish: block in 0.43.0 (ADR 0052) at '#{path}' — " \
|
|
88
|
+
"use `publish: { to: [...] }`.",
|
|
89
|
+
)
|
|
90
|
+
end
|
|
91
|
+
if entry.key?("publish_tree")
|
|
92
|
+
raise BadManifest.new(
|
|
93
|
+
"publish_tree was replaced by the publish: block in 0.43.0 (ADR 0052) at '#{path}' — " \
|
|
94
|
+
"use `publish: { tree: \"...\" }`.",
|
|
95
|
+
)
|
|
96
|
+
end
|
|
97
|
+
return unless entry.key?("index_filename")
|
|
98
|
+
|
|
99
|
+
raise BadManifest.new(
|
|
100
|
+
"index_filename was removed in 0.43.0 (ADR 0053) at '#{path}'.",
|
|
101
|
+
)
|
|
102
|
+
end
|
|
103
|
+
|
|
104
|
+
def check_retired_render_keys!(entry, path)
|
|
105
|
+
return unless entry.is_a?(Hash)
|
|
106
|
+
|
|
107
|
+
if entry.key?("template")
|
|
108
|
+
raise BadManifest.new(
|
|
109
|
+
"entry-level `template:` was removed at '#{path}' (ADR 0094): rendering is a " \
|
|
110
|
+
"publish concern — `publish: [{ to:, template: }]`.",
|
|
111
|
+
)
|
|
112
|
+
end
|
|
113
|
+
if entry.key?("inject_boot")
|
|
114
|
+
raise BadManifest.new(
|
|
115
|
+
"entry-level `inject_boot:` was removed at '#{path}' (ADR 0094).",
|
|
116
|
+
)
|
|
117
|
+
end
|
|
118
|
+
return unless entry.key?("provenance")
|
|
119
|
+
|
|
120
|
+
raise BadManifest.new("entry-level `provenance:` was removed at '#{path}' (ADR 0094).")
|
|
121
|
+
end
|
|
122
|
+
|
|
123
|
+
def check_publish_block!(entry, path)
|
|
124
|
+
return unless entry.is_a?(Hash) && entry.key?("publish")
|
|
125
|
+
|
|
126
|
+
block = entry["publish"]
|
|
127
|
+
if block.is_a?(Hash)
|
|
128
|
+
raise BadManifest.new(
|
|
129
|
+
"publish: at '#{path}.publish' must be a list of targets (ADR 0094); the map form was retired.",
|
|
130
|
+
)
|
|
131
|
+
end
|
|
132
|
+
raise BadManifest.new("publish: must be a list of targets at '#{path}.publish'") unless block.is_a?(Array)
|
|
133
|
+
|
|
134
|
+
block.each_with_index do |t, i|
|
|
135
|
+
raise BadManifest.new("publish target ##{i} must be a mapping at '#{path}.publish'") unless t.is_a?(Hash)
|
|
136
|
+
|
|
137
|
+
walk(t, %w[to tree template inject_boot], "#{path}.publish[#{i}]")
|
|
138
|
+
end
|
|
139
|
+
end
|
|
140
|
+
|
|
141
|
+
def check_owners!(lanes, entries)
|
|
142
|
+
Array(lanes).each_with_index { |z, i| check_owner!(z["owner"], "$.lanes[#{i}]") }
|
|
143
|
+
Array(entries).each_with_index { |e, i| check_owner!(e["owner"], "$.entries[#{i}]") }
|
|
144
|
+
end
|
|
145
|
+
|
|
146
|
+
def check_owner!(owner, path)
|
|
147
|
+
return if owner.nil?
|
|
148
|
+
return if valid_owner?(owner)
|
|
149
|
+
|
|
150
|
+
raise BadManifest.new(
|
|
151
|
+
"invalid owner '#{owner}' at '#{path}' " \
|
|
152
|
+
"(expected <archetype> or <archetype>:<subject>, archetype one of: #{Textus::Role::NAMES.join(", ")})",
|
|
153
|
+
)
|
|
154
|
+
end
|
|
155
|
+
|
|
156
|
+
def valid_owner?(token)
|
|
157
|
+
return false unless token.is_a?(String) && !token.empty?
|
|
158
|
+
|
|
159
|
+
archetype, subject = token.split(":", 2)
|
|
160
|
+
return false unless Textus::Role::NAMES.include?(archetype)
|
|
161
|
+
return true if subject.nil?
|
|
162
|
+
|
|
163
|
+
OWNER_SUBJECT_PATTERN.match?(subject)
|
|
164
|
+
end
|
|
165
|
+
|
|
166
|
+
def check_rules!(rules)
|
|
167
|
+
Array(rules).each_with_index do |r, i|
|
|
168
|
+
path = "$.rules[#{i}]"
|
|
169
|
+
# Check retired keys BEFORE the generic walk so specific hints fire first.
|
|
170
|
+
{ "lifecycle" => "age GC moved to `retention:` rule", "materialize" => "removed (ADR 0093)" }
|
|
171
|
+
.each do |old, hint|
|
|
172
|
+
next unless r.is_a?(Hash) && r.key?(old)
|
|
173
|
+
|
|
174
|
+
raise BadManifest.new("`#{old}:` was removed at '#{path}' (ADR 0093) — #{hint}.")
|
|
175
|
+
end
|
|
176
|
+
if r.is_a?(Hash) && r.key?("upkeep")
|
|
177
|
+
raise BadManifest.new(
|
|
178
|
+
"rule key `upkeep:` was removed (ADR 0093): move age-GC to `retention:` " \
|
|
179
|
+
"and production to the entry's `source:`",
|
|
180
|
+
)
|
|
181
|
+
end
|
|
182
|
+
walk(r, RULE_KEYS, path)
|
|
183
|
+
FIELD_REGISTRY.each_value do |meta|
|
|
184
|
+
next unless meta[:sub_keys]
|
|
185
|
+
|
|
186
|
+
value = r.is_a?(Hash) ? r[meta[:yaml_key]] : nil
|
|
187
|
+
walk(value, meta[:sub_keys], "#{path}.#{meta[:yaml_key]}") if value.is_a?(Hash)
|
|
188
|
+
end
|
|
189
|
+
end
|
|
190
|
+
end
|
|
191
|
+
|
|
192
|
+
def check_single_queue!(raw)
|
|
193
|
+
queues = Array(raw["lanes"]).select { |z| z["kind"] == "queue" }.map { |z| z["name"] }
|
|
194
|
+
return if queues.size <= 1
|
|
195
|
+
|
|
196
|
+
raise BadManifest.new("at most one lane may declare kind: queue (found: #{queues.join(", ")})")
|
|
197
|
+
end
|
|
198
|
+
|
|
199
|
+
def check_single_machine!(raw)
|
|
200
|
+
machines = Array(raw["lanes"]).select { |z| z["kind"] == "machine" }.map { |z| z["name"] }
|
|
201
|
+
return if machines.size <= 1
|
|
202
|
+
|
|
203
|
+
raise BadManifest.new("at most one lane may declare kind: machine (found: #{machines.join(", ")})")
|
|
204
|
+
end
|
|
205
|
+
|
|
206
|
+
def check_lane_kind_consistency!(raw)
|
|
207
|
+
held = Capabilities.resolve(raw["roles"]).values.flatten.uniq
|
|
208
|
+
|
|
209
|
+
Array(raw["lanes"]).each_with_index do |z, i|
|
|
210
|
+
verb = KIND_REQUIRES_VERB[z["kind"]]
|
|
211
|
+
next if verb.nil? || held.include?(verb)
|
|
212
|
+
|
|
213
|
+
raise BadManifest.new(
|
|
214
|
+
"lane '#{z["name"]}' (#{z["kind"]}) at '$.lanes[#{i}]' " \
|
|
215
|
+
"needs a role with capability '#{verb}'; none declared",
|
|
216
|
+
)
|
|
217
|
+
end
|
|
218
|
+
end
|
|
219
|
+
|
|
220
|
+
def walk(hash, allowed, path)
|
|
221
|
+
return unless hash.is_a?(Hash)
|
|
222
|
+
|
|
223
|
+
hash.each_key do |k|
|
|
224
|
+
next if allowed.include?(k)
|
|
225
|
+
|
|
226
|
+
raise BadManifest.new("unknown key '#{k}' at '#{path}'")
|
|
227
|
+
end
|
|
228
|
+
end
|
|
229
|
+
end
|
|
230
|
+
end
|
|
231
|
+
end
|
|
232
|
+
end
|
|
@@ -1,316 +1,46 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
module Textus
|
|
2
4
|
class Manifest
|
|
3
5
|
module Schema
|
|
4
|
-
#
|
|
5
|
-
#
|
|
6
|
-
# LANES + derived) and Schema::Keys (key whitelists / FIELD_REGISTRY),
|
|
7
|
-
# re-exported on Schema — while the validation *logic* lives here.
|
|
8
|
-
# Lexically nested under Schema, so bare constant references
|
|
9
|
-
# (ROOT_KEYS, LANES, FIELD_REGISTRY, …) resolve to Schema's constants.
|
|
6
|
+
# Orchestrates structural validation (dry-schema Contract) then cross-field
|
|
7
|
+
# semantic checks (Semantics). Public interface unchanged: Validator.validate!(raw).
|
|
10
8
|
module Validator
|
|
11
9
|
module_function
|
|
12
10
|
|
|
13
11
|
def validate!(raw)
|
|
14
12
|
raise BadManifest.new("manifest must be a hash") unless raw.is_a?(Hash)
|
|
15
13
|
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
validate_roles!(raw["roles"])
|
|
20
|
-
validate_lanes!(raw["lanes"])
|
|
21
|
-
validate_entries!(raw["entries"])
|
|
22
|
-
validate_owners!(raw["lanes"], raw["entries"])
|
|
23
|
-
validate_rules!(raw["rules"])
|
|
24
|
-
walk(raw["audit"], AUDIT_KEYS, "$.audit") if raw["audit"].is_a?(Hash)
|
|
25
|
-
validate_single_queue!(raw)
|
|
26
|
-
validate_single_machine!(raw)
|
|
27
|
-
validate_lane_kind_consistency!(raw)
|
|
28
|
-
end
|
|
29
|
-
|
|
30
|
-
def validate_lanes!(lanes)
|
|
31
|
-
Array(lanes).each_with_index do |z, i|
|
|
32
|
-
walk(z, LANE_KEYS, "$.lanes[#{i}]")
|
|
33
|
-
if z["kind"].nil?
|
|
34
|
-
raise BadManifest.new("lane '#{z["name"]}' at '$.lanes[#{i}]' must declare a kind (one of: #{LANE_KINDS.join(", ")})")
|
|
35
|
-
end
|
|
36
|
-
next if LANE_KINDS.include?(z["kind"])
|
|
37
|
-
|
|
38
|
-
if %w[quarantine derived].include?(z["kind"])
|
|
39
|
-
raise BadManifest.new(
|
|
40
|
-
"lane kind '#{z["kind"]}' at '$.lanes[#{i}]' was folded into 'machine' (ADR 0091) — " \
|
|
41
|
-
"use `kind: machine`",
|
|
42
|
-
)
|
|
43
|
-
end
|
|
44
|
-
|
|
45
|
-
raise BadManifest.new(
|
|
46
|
-
"unknown lane kind '#{z["kind"]}' at '$.lanes[#{i}]' (known: #{LANE_KINDS.join(", ")})",
|
|
47
|
-
)
|
|
48
|
-
end
|
|
49
|
-
end
|
|
50
|
-
|
|
51
|
-
def validate_entries!(entries)
|
|
52
|
-
Array(entries).each_with_index do |e, i|
|
|
53
|
-
path = "$.entries[#{i}]"
|
|
54
|
-
reject_retired_publish_keys!(e, path)
|
|
55
|
-
reject_retired_render_keys!(e, path)
|
|
56
|
-
walk(e, ENTRY_KEYS, path)
|
|
57
|
-
validate_publish_block!(e, path)
|
|
58
|
-
walk(e["source"], SOURCE_KEYS, "#{path}.source") if e["source"]
|
|
59
|
-
end
|
|
60
|
-
end
|
|
61
|
-
|
|
62
|
-
# Retired keys are no longer allowed, so `walk` would reject them as merely
|
|
63
|
-
# "unknown"; intercept first with the migration path so a pre-0.43 manifest
|
|
64
|
-
# gets a useful error. `publish_each` was removed (ADR 0051); `publish_to`/
|
|
65
|
-
# `publish_tree` were folded into the `publish:` block (ADR 0052);
|
|
66
|
-
# `index_filename` was removed (ADR 0053).
|
|
67
|
-
def reject_retired_publish_keys!(entry, path)
|
|
68
|
-
return unless entry.is_a?(Hash)
|
|
69
|
-
|
|
70
|
-
if entry.key?("publish_each")
|
|
71
|
-
raise BadManifest.new(
|
|
72
|
-
"publish_each was removed in 0.42.0 (ADR 0051) at '#{path}' — " \
|
|
73
|
-
"mirror the subtree with `publish: { tree: \"...\" }`.",
|
|
74
|
-
)
|
|
75
|
-
end
|
|
76
|
-
|
|
77
|
-
if entry.key?("publish_to")
|
|
78
|
-
raise BadManifest.new(
|
|
79
|
-
"publish_to was replaced by the publish: block in 0.43.0 (ADR 0052) at '#{path}' — " \
|
|
80
|
-
"use `publish: { to: [...] }`.",
|
|
81
|
-
)
|
|
82
|
-
end
|
|
83
|
-
|
|
84
|
-
if entry.key?("publish_tree")
|
|
85
|
-
raise BadManifest.new(
|
|
86
|
-
"publish_tree was replaced by the publish: block in 0.43.0 (ADR 0052) at '#{path}' — " \
|
|
87
|
-
"use `publish: { tree: \"...\" }`.",
|
|
88
|
-
)
|
|
89
|
-
end
|
|
90
|
-
|
|
91
|
-
return unless entry.key?("index_filename")
|
|
92
|
-
|
|
93
|
-
raise BadManifest.new(
|
|
94
|
-
"index_filename was removed in 0.43.0 (ADR 0053) at '#{path}' — a nested entry now enumerates " \
|
|
95
|
-
"each file as a key; to mirror a directory of files to a consumer path use `publish: { tree: \"...\" }`.",
|
|
96
|
-
)
|
|
97
|
-
end
|
|
98
|
-
|
|
99
|
-
# ADR 0094: rendering is a publish concern. An entry no longer
|
|
100
|
-
# declares a build-time template or render flags — they move onto publish
|
|
101
|
-
# targets. Provenance lives in the data's `_meta`, not a flag.
|
|
102
|
-
def reject_retired_render_keys!(entry, path)
|
|
103
|
-
return unless entry.is_a?(Hash)
|
|
104
|
-
|
|
105
|
-
if entry.key?("template")
|
|
106
|
-
raise BadManifest.new(
|
|
107
|
-
"entry-level `template:` was removed at '#{path}' (ADR 0094): rendering is a " \
|
|
108
|
-
"publish concern — `publish: [{ to:, template: }]`.",
|
|
109
|
-
)
|
|
110
|
-
end
|
|
111
|
-
if entry.key?("inject_boot")
|
|
112
|
-
raise BadManifest.new(
|
|
113
|
-
"entry-level `inject_boot:` was removed at '#{path}' (ADR 0094): it is a render " \
|
|
114
|
-
"flag — `publish: [{ to:, inject_boot: }]`.",
|
|
115
|
-
)
|
|
116
|
-
end
|
|
117
|
-
return unless entry.key?("provenance")
|
|
118
|
-
|
|
119
|
-
raise BadManifest.new("entry-level `provenance:` was removed at '#{path}' (ADR 0094): provenance lives in the data's `_meta`.")
|
|
120
|
-
end
|
|
121
|
-
|
|
122
|
-
# ADR 0094: publish is a LIST of target objects. The old
|
|
123
|
-
# `{ to: [...] }` / `{ tree: … }` map forms are retired (fold hint).
|
|
124
|
-
def validate_publish_block!(entry, path)
|
|
125
|
-
return unless entry.is_a?(Hash) && entry.key?("publish")
|
|
126
|
-
|
|
127
|
-
block = entry["publish"]
|
|
128
|
-
if block.is_a?(Hash)
|
|
129
|
-
raise BadManifest.new(
|
|
130
|
-
"publish: at '#{path}.publish' must be a list of targets " \
|
|
131
|
-
"[{ to:, template:? } | { tree: }] (ADR 0094); the map form was retired.",
|
|
132
|
-
)
|
|
133
|
-
end
|
|
134
|
-
raise BadManifest.new("publish: must be a list of targets at '#{path}.publish'") unless block.is_a?(Array)
|
|
135
|
-
|
|
136
|
-
block.each_with_index do |t, i|
|
|
137
|
-
raise BadManifest.new("publish target ##{i} must be a mapping at '#{path}.publish'") unless t.is_a?(Hash)
|
|
138
|
-
|
|
139
|
-
walk(t, %w[to tree template inject_boot], "#{path}.publish[#{i}]")
|
|
140
|
-
end
|
|
141
|
-
end
|
|
142
|
-
|
|
143
|
-
def validate_rules!(rules)
|
|
144
|
-
Array(rules).each_with_index do |r, i|
|
|
145
|
-
path = "$.rules[#{i}]"
|
|
146
|
-
reject_retired_rule_keys!(r, path)
|
|
147
|
-
if r.is_a?(Hash) && r.key?("upkeep")
|
|
148
|
-
raise BadManifest.new(
|
|
149
|
-
"rule key `upkeep:` was removed (ADR 0093): move age-GC to `retention:` " \
|
|
150
|
-
"and production (handler/template) to the entry's `source:`",
|
|
151
|
-
)
|
|
152
|
-
end
|
|
153
|
-
walk(r, RULE_KEYS, path)
|
|
154
|
-
FIELD_REGISTRY.each_value do |meta|
|
|
155
|
-
next unless meta[:sub_keys]
|
|
156
|
-
|
|
157
|
-
value = r[meta[:yaml_key]]
|
|
158
|
-
walk(value, meta[:sub_keys], "#{path}.#{meta[:yaml_key]}") if value.is_a?(Hash)
|
|
159
|
-
end
|
|
160
|
-
end
|
|
161
|
-
end
|
|
162
|
-
|
|
163
|
-
# ADR 0093 split production from age-GC: age-GC moved to the `retention:`
|
|
164
|
-
# rule; intake cadence + production (handler/template) moved to the
|
|
165
|
-
# entry's `source:` block. Legacy `lifecycle:`/`materialize:` rule keys
|
|
166
|
-
# are rejected with a migration hint toward the new shape.
|
|
167
|
-
def reject_retired_rule_keys!(rule, path)
|
|
168
|
-
return unless rule.is_a?(Hash)
|
|
169
|
-
|
|
170
|
-
hints = {
|
|
171
|
-
"lifecycle" => "age GC moved to the `retention:` rule ({ ttl, action: drop|archive }); " \
|
|
172
|
-
"intake cadence to the entry's `source: { ttl }`",
|
|
173
|
-
"materialize" => "removed — materialization is automatic (a write enqueues a job; run `drain`)",
|
|
174
|
-
}
|
|
175
|
-
hints.each do |old, hint|
|
|
176
|
-
next unless rule.key?(old)
|
|
177
|
-
|
|
178
|
-
raise BadManifest.new("`#{old}:` was removed at '#{path}' (ADR 0093) — #{hint}.")
|
|
179
|
-
end
|
|
180
|
-
end
|
|
181
|
-
|
|
182
|
-
def validate_roles!(roles)
|
|
183
|
-
return if roles.nil?
|
|
184
|
-
raise BadManifest.new("roles: must be a list") unless roles.is_a?(Array)
|
|
185
|
-
|
|
186
|
-
roles.each_with_index do |r, i|
|
|
187
|
-
path = "$.roles[#{i}]"
|
|
188
|
-
walk(r, ROLE_KEYS, path)
|
|
189
|
-
name = r["name"] or raise BadManifest.new("role at '#{path}' missing name")
|
|
190
|
-
unless Textus::Role::NAMES.include?(name)
|
|
191
|
-
raise BadManifest.new(
|
|
192
|
-
"unknown role name '#{name}' at '#{path}' " \
|
|
193
|
-
"(allowed: #{Textus::Role::NAMES.join(", ")})",
|
|
194
|
-
)
|
|
195
|
-
end
|
|
196
|
-
Array(r["can"]).each do |verb|
|
|
197
|
-
next if CAPABILITIES.include?(verb)
|
|
14
|
+
# Root unknown-key check before Contract so it fires even when lanes: is empty.
|
|
15
|
+
Semantics.walk(raw, ROOT_KEYS, "$")
|
|
198
16
|
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
# legacy `fetch`) gets a pointed hint rather than a bare error.
|
|
202
|
-
hint = %w[ingest fetch].include?(verb) ? " — the quarantine capability folded into 'converge' (ADR 0090)" : ""
|
|
203
|
-
raise BadManifest.new(
|
|
204
|
-
"unknown capability '#{verb}' for role '#{name}' at '#{path}' " \
|
|
205
|
-
"(known: #{CAPABILITIES.join(", ")})#{hint}",
|
|
206
|
-
)
|
|
207
|
-
end
|
|
208
|
-
end
|
|
17
|
+
result = Contract.call(raw)
|
|
18
|
+
raise BadManifest.new(format_first_error(result.errors.messages)) unless result.success?
|
|
209
19
|
|
|
210
|
-
|
|
211
|
-
return if author_holders <= 1
|
|
212
|
-
|
|
213
|
-
raise BadManifest.new(
|
|
214
|
-
"manifest declares #{author_holders} roles with the author capability; at most one is allowed",
|
|
215
|
-
)
|
|
216
|
-
end
|
|
217
|
-
|
|
218
|
-
# Owners are validated against the SAME closed archetype set as role names
|
|
219
|
-
# (ADR 0045 D1) so attribution can't bypass the closed-name guarantee.
|
|
220
|
-
# Applies to both zone owners and entry owners; owner is optional, so a
|
|
221
|
-
# nil owner is not an error.
|
|
222
|
-
def validate_owners!(lanes, entries)
|
|
223
|
-
Array(lanes).each_with_index do |z, i|
|
|
224
|
-
check_owner!(z["owner"], "$.lanes[#{i}]")
|
|
225
|
-
end
|
|
226
|
-
Array(entries).each_with_index do |e, i|
|
|
227
|
-
check_owner!(e["owner"], "$.entries[#{i}]")
|
|
228
|
-
end
|
|
229
|
-
end
|
|
230
|
-
|
|
231
|
-
def check_owner!(owner, path)
|
|
232
|
-
return if owner.nil?
|
|
233
|
-
return if valid_owner?(owner)
|
|
234
|
-
|
|
235
|
-
raise BadManifest.new(
|
|
236
|
-
"invalid owner '#{owner}' at '#{path}' " \
|
|
237
|
-
"(expected <archetype> or <archetype>:<subject>, " \
|
|
238
|
-
"archetype one of: #{Textus::Role::NAMES.join(", ")})",
|
|
239
|
-
)
|
|
240
|
-
end
|
|
241
|
-
|
|
242
|
-
# The owner-validation rule: an `owner:` token is either a bare archetype
|
|
243
|
-
# (`agent`) or `<archetype>:<subject>` (`human:patrick`). The archetype is
|
|
244
|
-
# gated against the closed Role::NAMES set (so attribution can't smuggle in
|
|
245
|
-
# a name the role side rejects, ADR 0045 D1); the subject is the free-form
|
|
246
|
-
# principal, validated by OWNER_SUBJECT_PATTERN. Split on the FIRST ':'
|
|
247
|
-
# only — a subject may not itself contain ':' (the pattern excludes it), so
|
|
248
|
-
# `human:a:b` is rejected.
|
|
249
|
-
def valid_owner?(token)
|
|
250
|
-
return false unless token.is_a?(String) && !token.empty?
|
|
251
|
-
|
|
252
|
-
archetype, subject = token.split(":", 2)
|
|
253
|
-
return false unless Textus::Role::NAMES.include?(archetype)
|
|
254
|
-
return true if subject.nil?
|
|
20
|
+
raise BadManifest.new("manifest must declare lanes:") if Array(raw["lanes"]).empty?
|
|
255
21
|
|
|
256
|
-
|
|
22
|
+
Semantics.check!(raw)
|
|
257
23
|
end
|
|
258
24
|
|
|
259
|
-
|
|
260
|
-
|
|
25
|
+
# Format the first dry-schema error to match the legacy path-prefixed style:
|
|
26
|
+
# "unknown key 'x' at '$.lanes[0]'" for extra-key errors;
|
|
27
|
+
# "manifest structure error at <path>: <msg>" for type/value errors.
|
|
28
|
+
def format_first_error(messages)
|
|
29
|
+
msg = messages.first
|
|
30
|
+
return "manifest structure error: unknown" unless msg
|
|
261
31
|
|
|
262
|
-
|
|
263
|
-
|
|
32
|
+
parent = format_path(msg.path[0..-2])
|
|
33
|
+
key = msg.path.last
|
|
264
34
|
|
|
265
|
-
|
|
35
|
+
if msg.text == "is not allowed"
|
|
36
|
+
"unknown key '#{key}' at '#{parent}'"
|
|
37
|
+
else
|
|
38
|
+
"manifest structure error at #{format_path(msg.path)}: #{msg.text}"
|
|
266
39
|
end
|
|
267
40
|
end
|
|
268
41
|
|
|
269
|
-
def
|
|
270
|
-
|
|
271
|
-
return if queues.size <= 1
|
|
272
|
-
|
|
273
|
-
raise BadManifest.new(
|
|
274
|
-
"at most one lane may declare kind: queue (found: #{queues.join(", ")})",
|
|
275
|
-
)
|
|
276
|
-
end
|
|
277
|
-
|
|
278
|
-
def validate_single_machine!(raw)
|
|
279
|
-
machines = Array(raw["lanes"]).select { |z| z["kind"] == "machine" }.map { |z| z["name"] }
|
|
280
|
-
return if machines.size <= 1
|
|
281
|
-
|
|
282
|
-
raise BadManifest.new(
|
|
283
|
-
"at most one lane may declare kind: machine (found: #{machines.join(", ")})",
|
|
284
|
-
)
|
|
285
|
-
end
|
|
286
|
-
|
|
287
|
-
# ADR 0093: retention (drop/archive) is age-based GC; it is invalid on a
|
|
288
|
-
# derived entry (a derived entry regenerates from its source, it isn't aged
|
|
289
|
-
# out). Per ADR 0095 the produce-method is read from source.from on the one
|
|
290
|
-
# Produced kind, so there is no longer a kind to agree against the source.
|
|
291
|
-
# (Replaces validate_upkeep_kinds!.)
|
|
292
|
-
def validate_source_and_retention!(_manifest)
|
|
293
|
-
# No-op: from: derive is removed; retention + produced entries are
|
|
294
|
-
# always valid (retention drives age-GC on workflow-produced entries).
|
|
295
|
-
end
|
|
296
|
-
|
|
297
|
-
# Write authority is derived from capabilities (ADR 0030): a lane of a
|
|
298
|
-
# given kind can only be written by a role that holds the kind's required
|
|
299
|
-
# verb. Reject a manifest declaring a lane whose required verb is held by
|
|
300
|
-
# no role. Capabilities.resolve returns the defaults when `roles:` is nil,
|
|
301
|
-
# so the capability union is all four verbs and every kind is satisfied.
|
|
302
|
-
def validate_lane_kind_consistency!(raw)
|
|
303
|
-
held = Capabilities.resolve(raw["roles"]).values.flatten.uniq
|
|
304
|
-
|
|
305
|
-
Array(raw["lanes"]).each_with_index do |z, i|
|
|
306
|
-
verb = KIND_REQUIRES_VERB[z["kind"]]
|
|
307
|
-
next if verb.nil? || held.include?(verb)
|
|
308
|
-
|
|
309
|
-
raise BadManifest.new(
|
|
310
|
-
"lane '#{z["name"]}' (#{z["kind"]}) at '$.lanes[#{i}]' " \
|
|
311
|
-
"needs a role with capability '#{verb}'; none declared",
|
|
312
|
-
)
|
|
313
|
-
end
|
|
42
|
+
def format_path(parts)
|
|
43
|
+
"$" + Array(parts).map { |p| p.is_a?(Integer) ? "[#{p}]" : ".#{p}" }.join
|
|
314
44
|
end
|
|
315
45
|
end
|
|
316
46
|
end
|
|
@@ -23,11 +23,8 @@ module Textus
|
|
|
23
23
|
RULE_KEYS = Keys::RULE_KEYS
|
|
24
24
|
OWNER_SUBJECT_PATTERN = Keys::OWNER_SUBJECT_PATTERN
|
|
25
25
|
|
|
26
|
-
# Public entry
|
|
27
|
-
# (ADR 0107). Kept here so callers keep speaking to `Schema`.
|
|
26
|
+
# Public entry point — the validation walk lives in Schema::Validator (ADR 0107).
|
|
28
27
|
def self.validate!(raw) = Validator.validate!(raw)
|
|
29
|
-
|
|
30
|
-
def self.validate_source_and_retention!(manifest) = Validator.validate_source_and_retention!(manifest)
|
|
31
28
|
end
|
|
32
29
|
end
|
|
33
30
|
end
|
data/lib/textus/manifest.rb
CHANGED
|
@@ -44,14 +44,12 @@ module Textus # rubocop:disable Style/OneClassPerFile
|
|
|
44
44
|
|
|
45
45
|
def build(raw, root)
|
|
46
46
|
data = Manifest::Data.parse(raw, root: root)
|
|
47
|
-
|
|
47
|
+
new(
|
|
48
48
|
data: data,
|
|
49
49
|
resolver: Manifest::Resolver.new(data),
|
|
50
50
|
policy: data.policy,
|
|
51
51
|
rules: Manifest::Rules.parse(raw["rules"] || []),
|
|
52
52
|
)
|
|
53
|
-
Manifest::Schema.validate_source_and_retention!(manifest) # ADR 0093
|
|
54
|
-
manifest
|
|
55
53
|
end
|
|
56
54
|
|
|
57
55
|
def check_version!(raw, source)
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require "erb"
|
|
2
4
|
|
|
3
5
|
module Textus
|
|
4
6
|
module Produce
|
|
@@ -11,7 +13,7 @@ module Textus
|
|
|
11
13
|
raise ArgumentError.new("Produce::Render called for a verbatim target #{target.to.inspect}") unless target.renders?
|
|
12
14
|
|
|
13
15
|
ctx = target.inject_boot ? data.merge("boot" => boot) : data
|
|
14
|
-
|
|
16
|
+
ERB.new(@template_loader.call(target.template), trim_mode: "-").result_with_hash(ctx)
|
|
15
17
|
end
|
|
16
18
|
end
|
|
17
19
|
end
|
data/lib/textus/session.rb
CHANGED
|
@@ -1,11 +1,19 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require "dry-struct"
|
|
4
|
+
|
|
1
5
|
module Textus
|
|
2
6
|
# The agent session: per-connection (MCP), per-process (CLI), or per-loop
|
|
3
7
|
# (Ruby) orientation state — the audit cursor plus the contract etag and
|
|
4
|
-
# propose_lane captured at boot. Immutable
|
|
5
|
-
#
|
|
6
|
-
Session
|
|
7
|
-
|
|
8
|
-
|
|
8
|
+
# propose_lane captured at boot. Immutable Dry::Struct::Value; advance_cursor
|
|
9
|
+
# and with return new instances. ADR 0036; contract_etag widened in ADR 0074.
|
|
10
|
+
class Session < Dry::Struct
|
|
11
|
+
attribute :role, Types::RoleName
|
|
12
|
+
attribute :cursor, Types::Cursor
|
|
13
|
+
attribute :propose_lane, Types::String.optional
|
|
14
|
+
attribute :contract_etag, Types::String
|
|
15
|
+
|
|
16
|
+
def with(**attrs) = self.class.new(to_h.merge(attrs))
|
|
9
17
|
|
|
10
18
|
def advance_cursor(new_cursor) = with(cursor: new_cursor)
|
|
11
19
|
|
|
@@ -21,8 +29,7 @@ module Textus
|
|
|
21
29
|
private
|
|
22
30
|
|
|
23
31
|
# First 8 hex chars after the "sha256:" prefix — a stable short id for
|
|
24
|
-
# the drift diagnostic.
|
|
25
|
-
# a no-op when the prefix is absent).
|
|
32
|
+
# the drift diagnostic.
|
|
26
33
|
def short_etag(etag) = etag.to_s.delete_prefix("sha256:")[0, 8]
|
|
27
34
|
end
|
|
28
35
|
end
|
data/lib/textus/store.rb
CHANGED
|
@@ -5,9 +5,9 @@ module Textus
|
|
|
5
5
|
attr_reader :container
|
|
6
6
|
|
|
7
7
|
# Readers are derived from the Container's schema, so the field set lives
|
|
8
|
-
# in exactly one place (Container
|
|
9
|
-
#
|
|
10
|
-
Textus::Container.
|
|
8
|
+
# in exactly one place (Container). A new capability added there is
|
|
9
|
+
# automatically exposed on the Store.
|
|
10
|
+
Textus::Container.attribute_names.each do |field|
|
|
11
11
|
define_method(field) { @container.public_send(field) }
|
|
12
12
|
end
|
|
13
13
|
|
|
@@ -50,7 +50,7 @@ module Textus
|
|
|
50
50
|
# Ruby equivalent of an MCP `initialize`. ADR 0036.
|
|
51
51
|
def session(role:)
|
|
52
52
|
Textus::Session.new(
|
|
53
|
-
role: role,
|
|
53
|
+
role: role.to_s,
|
|
54
54
|
cursor: audit_log.latest_seq,
|
|
55
55
|
propose_lane: manifest.policy.propose_lane_for(role),
|
|
56
56
|
contract_etag: Textus::Etag.for_contract(root),
|