@tiic-tech/openworkflow 0.1.1 → 0.1.2
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/dist/adapters/codex/src/cleanCodexAdapter.js +4 -1
- package/dist/adapters/codex/src/cleanCodexAdapter.js.map +1 -1
- package/dist/adapters/codex/src/constants.d.ts +1 -0
- package/dist/adapters/codex/src/constants.js +2 -0
- package/dist/adapters/codex/src/constants.js.map +1 -0
- package/dist/adapters/codex/src/generateCommands.js +14 -9
- package/dist/adapters/codex/src/generateCommands.js.map +1 -1
- package/dist/adapters/codex/src/generateSkills.js +13 -0
- package/dist/adapters/codex/src/generateSkills.js.map +1 -1
- package/dist/adapters/codex/src/generatedFiles.js +1 -1
- package/dist/adapters/codex/src/manifest.js +11 -2
- package/dist/adapters/codex/src/manifest.js.map +1 -1
- package/dist/adapters/codex/src/templates.d.ts +0 -1
- package/dist/adapters/codex/src/templates.js +0 -1
- package/dist/adapters/codex/src/templates.js.map +1 -1
- package/dist/adapters/src/registry.d.ts +20 -0
- package/dist/adapters/src/registry.js +81 -0
- package/dist/adapters/src/registry.js.map +1 -0
- package/dist/cli/src/commands/brief.d.ts +46 -0
- package/dist/cli/src/commands/brief.js +294 -0
- package/dist/cli/src/commands/brief.js.map +1 -0
- package/dist/cli/src/commands/check.d.ts +42 -0
- package/dist/cli/src/commands/check.js +326 -0
- package/dist/cli/src/commands/check.js.map +1 -0
- package/dist/cli/src/commands/clean.js +46 -1
- package/dist/cli/src/commands/clean.js.map +1 -1
- package/dist/cli/src/commands/context.d.ts +1 -0
- package/dist/cli/src/commands/context.js +471 -0
- package/dist/cli/src/commands/context.js.map +1 -0
- package/dist/cli/src/commands/doctor.js +122 -12
- package/dist/cli/src/commands/doctor.js.map +1 -1
- package/dist/cli/src/commands/draft.d.ts +1 -0
- package/dist/cli/src/commands/draft.js +175 -0
- package/dist/cli/src/commands/draft.js.map +1 -0
- package/dist/cli/src/commands/gitAutomation.d.ts +1 -0
- package/dist/cli/src/commands/gitAutomation.js +378 -0
- package/dist/cli/src/commands/gitAutomation.js.map +1 -0
- package/dist/cli/src/commands/handoff.d.ts +22 -0
- package/dist/cli/src/commands/handoff.js +122 -0
- package/dist/cli/src/commands/handoff.js.map +1 -0
- package/dist/cli/src/commands/init.js +52 -1
- package/dist/cli/src/commands/init.js.map +1 -1
- package/dist/cli/src/commands/inspect.d.ts +23 -0
- package/dist/cli/src/commands/inspect.js +157 -0
- package/dist/cli/src/commands/inspect.js.map +1 -0
- package/dist/cli/src/commands/register.d.ts +1 -0
- package/dist/cli/src/commands/register.js +251 -0
- package/dist/cli/src/commands/register.js.map +1 -0
- package/dist/cli/src/commands/resume.d.ts +59 -0
- package/dist/cli/src/commands/resume.js +280 -0
- package/dist/cli/src/commands/resume.js.map +1 -0
- package/dist/cli/src/commands/shared.js +6 -2
- package/dist/cli/src/commands/shared.js.map +1 -1
- package/dist/cli/src/commands/summaries.d.ts +1 -0
- package/dist/cli/src/commands/summaries.js +77 -0
- package/dist/cli/src/commands/summaries.js.map +1 -0
- package/dist/cli/src/commands/summarize.d.ts +1 -0
- package/dist/cli/src/commands/summarize.js +316 -0
- package/dist/cli/src/commands/summarize.js.map +1 -0
- package/dist/cli/src/commands/sync.js +135 -12
- package/dist/cli/src/commands/sync.js.map +1 -1
- package/dist/cli/src/commands/validate.js +25 -1
- package/dist/cli/src/commands/validate.js.map +1 -1
- package/dist/cli/src/dev/verifyAgentE2E.d.ts +2 -0
- package/dist/cli/src/dev/verifyAgentE2E.js +391 -0
- package/dist/cli/src/dev/verifyAgentE2E.js.map +1 -0
- package/dist/cli/src/dev/verifyCleanCommand.js +213 -2
- package/dist/cli/src/dev/verifyCleanCommand.js.map +1 -1
- package/dist/cli/src/dev/verifyRuntimeSurface.js +4940 -54
- package/dist/cli/src/dev/verifyRuntimeSurface.js.map +1 -1
- package/dist/cli/src/dev/verifyWorkflowE2E.js +477 -45
- package/dist/cli/src/dev/verifyWorkflowE2E.js.map +1 -1
- package/dist/cli/src/index.js +184 -6
- package/dist/cli/src/index.js.map +1 -1
- package/dist/cli/src/report.d.ts +26 -0
- package/dist/cli/src/report.js +17 -0
- package/dist/cli/src/report.js.map +1 -0
- package/dist/core/src/artifacts/readiness.d.ts +7 -0
- package/dist/core/src/artifacts/readiness.js +240 -0
- package/dist/core/src/artifacts/readiness.js.map +1 -0
- package/dist/core/src/artifacts/registry.d.ts +9 -2
- package/dist/core/src/artifacts/registry.js +687 -60
- package/dist/core/src/artifacts/registry.js.map +1 -1
- package/dist/core/src/commands/registry.js +1425 -146
- package/dist/core/src/commands/registry.js.map +1 -1
- package/dist/core/src/contracts/index.d.ts +1 -1
- package/dist/core/src/fs/index.d.ts +24 -0
- package/dist/core/src/fs/index.js +48 -1
- package/dist/core/src/fs/index.js.map +1 -1
- package/dist/core/src/git/autonomousSimulator.d.ts +46 -0
- package/dist/core/src/git/autonomousSimulator.js +163 -0
- package/dist/core/src/git/autonomousSimulator.js.map +1 -0
- package/dist/core/src/git/branchIdentity.d.ts +19 -0
- package/dist/core/src/git/branchIdentity.js +75 -0
- package/dist/core/src/git/branchIdentity.js.map +1 -0
- package/dist/core/src/git/draftPrPilot.d.ts +47 -0
- package/dist/core/src/git/draftPrPilot.js +196 -0
- package/dist/core/src/git/draftPrPilot.js.map +1 -0
- package/dist/core/src/git/localEvidenceReader.d.ts +21 -0
- package/dist/core/src/git/localEvidenceReader.js +142 -0
- package/dist/core/src/git/localEvidenceReader.js.map +1 -0
- package/dist/core/src/git/localGitAutomation.d.ts +68 -0
- package/dist/core/src/git/localGitAutomation.js +470 -0
- package/dist/core/src/git/localGitAutomation.js.map +1 -0
- package/dist/core/src/git/mergeReadinessCheckpoint.d.ts +31 -0
- package/dist/core/src/git/mergeReadinessCheckpoint.js +110 -0
- package/dist/core/src/git/mergeReadinessCheckpoint.js.map +1 -0
- package/dist/core/src/git/prReadySummary.d.ts +16 -0
- package/dist/core/src/git/prReadySummary.js +144 -0
- package/dist/core/src/git/prReadySummary.js.map +1 -0
- package/dist/core/src/git/remoteReadonlyPlanner.d.ts +60 -0
- package/dist/core/src/git/remoteReadonlyPlanner.js +223 -0
- package/dist/core/src/git/remoteReadonlyPlanner.js.map +1 -0
- package/dist/core/src/onboarding/agentsGuide.d.ts +32 -0
- package/dist/core/src/onboarding/agentsGuide.js +164 -0
- package/dist/core/src/onboarding/agentsGuide.js.map +1 -0
- package/dist/core/src/validators/validateOpenWorkflow.js +1331 -15
- package/dist/core/src/validators/validateOpenWorkflow.js.map +1 -1
- package/dist/core/src/validators/validateRepositoryContracts.js +2321 -306
- package/dist/core/src/validators/validateRepositoryContracts.js.map +1 -1
- package/dist/core/src/workflow/cleanOpenWorkflow.d.ts +2 -0
- package/dist/core/src/workflow/cleanOpenWorkflow.js +97 -8
- package/dist/core/src/workflow/cleanOpenWorkflow.js.map +1 -1
- package/dist/core/src/workflow/doctorOpenWorkflow.d.ts +7 -0
- package/dist/core/src/workflow/doctorOpenWorkflow.js +26 -0
- package/dist/core/src/workflow/doctorOpenWorkflow.js.map +1 -0
- package/dist/core/src/workflow/initOpenWorkflow.d.ts +7 -0
- package/dist/core/src/workflow/initOpenWorkflow.js +96 -8
- package/dist/core/src/workflow/initOpenWorkflow.js.map +1 -1
- package/dist/core/src/workflow/planningQueueResume.d.ts +105 -0
- package/dist/core/src/workflow/planningQueueResume.js +596 -0
- package/dist/core/src/workflow/planningQueueResume.js.map +1 -0
- package/dist/core/src/workflow/readWorkflowConfig.d.ts +6 -0
- package/dist/core/src/workflow/readWorkflowConfig.js +28 -0
- package/dist/core/src/workflow/readWorkflowConfig.js.map +1 -0
- package/dist/core/src/workflow/summaryHealth.d.ts +60 -0
- package/dist/core/src/workflow/summaryHealth.js +713 -0
- package/dist/core/src/workflow/summaryHealth.js.map +1 -0
- package/dist/core/src/workflow/syncOpenWorkflow.d.ts +22 -0
- package/dist/core/src/workflow/syncOpenWorkflow.js +235 -0
- package/dist/core/src/workflow/syncOpenWorkflow.js.map +1 -0
- package/package.json +2 -1
- package/references/artifact-authoring-templates.md +14 -12
- package/references/artifact-instruction-envelope.md +133 -0
- package/references/coder-continuous-growth-loop.md +68 -0
- package/references/gh-operation-governance.md +114 -0
- package/references/git-automation-governance.md +324 -0
- package/references/git-version-control-governance.md +227 -0
- package/references/internal-coder-protocol.md +202 -0
- package/references/issue-governance.md +115 -0
- package/references/planning-artifact-contracts.md +595 -0
- package/references/planning-skill-runtime-exposure.md +159 -0
- package/references/proto-redesign-artifact-contracts.md +217 -0
- package/references/proto2html-artifact-contracts.md +113 -0
- package/references/skill-system-lifecycle.md +198 -0
- package/references/validation-trust-domains.md +286 -0
- package/references/workflow-blueprint-runtime-alignment.md +287 -0
- package/schemas/atom-tasks.schema.json +101 -0
- package/schemas/candidate-changes.schema.json +323 -0
- package/schemas/current-state.schema.json +113 -0
- package/schemas/html-prototype.schema.json +288 -0
- package/schemas/openworkflow-contract.schema.json +9 -1
- package/schemas/proto-prompt-pack.schema.json +1333 -0
- package/schemas/prototype-evidence.schema.json +684 -142
- package/schemas/selected-change.schema.json +104 -0
- package/schemas/validation-target.schema.json +187 -1
- package/schemas/validation.schema.json +187 -1
- package/schemas/vision-session.schema.json +151 -0
- package/skills/analyze-changes/SKILL.md +92 -0
- package/skills/analyze-changes/agents/openai.yaml +4 -0
- package/skills/analyze-changes/references/analysis-protocol.md +116 -0
- package/skills/build-proto-prompt/SKILL.md +125 -0
- package/skills/build-proto-prompt/references/output-boundary.md +54 -0
- package/skills/build-proto-prompt/references/prompt-pack-compiler-protocol.md +80 -0
- package/skills/build-prototype/SKILL.md +162 -38
- package/skills/build-prototype/agents/openai.yaml +2 -2
- package/skills/build-prototype/references/philosophy-engine.md +61 -0
- package/skills/build-prototype/references/strategic-prompt-pack-protocol.md +365 -0
- package/skills/build-prototype/references/vision2prompt/01_input_contract.md +84 -0
- package/skills/build-prototype/references/vision2prompt/02_vision_decomposition.md +108 -0
- package/skills/build-prototype/references/vision2prompt/03_strategy_hypothesis_generation.md +89 -0
- package/skills/build-prototype/references/vision2prompt/04_product_system_extraction.md +78 -0
- package/skills/build-prototype/references/vision2prompt/05_prototype_prompt_schema.md +189 -0
- package/skills/build-prototype/references/vision2prompt/06_output_templates.md +125 -0
- package/skills/build-prototype/references/vision2prompt/07_quality_rubric.md +171 -0
- package/skills/build-validation/SKILL.md +136 -54
- package/skills/build-validation/references/prototype-validation-target-rubric.md +35 -0
- package/skills/build-validation/references/return-to-vision-gate.md +32 -0
- package/skills/build-vision/SKILL.md +192 -0
- package/skills/build-vision/references/proto-readiness-rubric.md +48 -0
- package/skills/build-vision/references/vision-interview-protocol.md +48 -0
- package/skills/coder/SKILL.md +204 -0
- package/skills/decompose-to-changes/SKILL.md +176 -0
- package/skills/decompose-to-changes/agents/openai.yaml +4 -0
- package/skills/decompose-to-changes/references/decomposition-protocol.md +278 -0
- package/skills/prompt2proto/SKILL.md +157 -0
- package/skills/prompt2proto/agents/openai.yaml +4 -0
- package/skills/prompt2proto/references/00_role_philosophy_engine.md +96 -0
- package/skills/prompt2proto/references/01_input_contract.md +53 -0
- package/skills/prompt2proto/references/02_prompt_pack_readiness.md +50 -0
- package/skills/prompt2proto/references/03_visual_translation_workflow.md +64 -0
- package/skills/prompt2proto/references/04_output_contract.md +67 -0
- package/skills/prompt2proto/references/05_quality_rubric.md +46 -0
- package/skills/proto2html/SKILL.md +136 -0
- package/skills/proto2html/agents/openai.yaml +4 -0
- package/skills/proto2html/references/proto2html-protocol.md +115 -0
- package/skills/run-team/SKILL.md +4 -0
- package/skills/select-change/SKILL.md +200 -0
- package/skills/select-change/agents/openai.yaml +4 -0
- package/skills/select-change/references/selection-protocol.md +281 -0
- package/skills/tune-prototype/SKILL.md +121 -0
- package/skills/tune-prototype/agents/openai.yaml +4 -0
- package/skills/tune-prototype/references/refined-prompt-pack-protocol.md +161 -0
|
@@ -13,18 +13,21 @@
|
|
|
13
13
|
"validation_target",
|
|
14
14
|
"core_question",
|
|
15
15
|
"prototype_mode",
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"
|
|
23
|
-
"
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
"
|
|
16
|
+
"prompt_pack_type",
|
|
17
|
+
"validation_input",
|
|
18
|
+
"source",
|
|
19
|
+
"internal_pipeline",
|
|
20
|
+
"preflight_quality_gate",
|
|
21
|
+
"direction_count_policy",
|
|
22
|
+
"normalized_input",
|
|
23
|
+
"strategic_core",
|
|
24
|
+
"directions",
|
|
25
|
+
"build_recommendation",
|
|
26
|
+
"prompt_text_manifest",
|
|
27
|
+
"post_validate",
|
|
28
|
+
"image_generation",
|
|
29
|
+
"negative_constraints",
|
|
30
|
+
"review_plan",
|
|
28
31
|
"result",
|
|
29
32
|
"handoff"
|
|
30
33
|
],
|
|
@@ -48,251 +51,790 @@
|
|
|
48
51
|
"type": "string"
|
|
49
52
|
},
|
|
50
53
|
"validation_target": {
|
|
51
|
-
"type":
|
|
54
|
+
"type": [
|
|
55
|
+
"string",
|
|
56
|
+
"null"
|
|
57
|
+
]
|
|
52
58
|
},
|
|
53
59
|
"core_question": {
|
|
54
60
|
"type": "string"
|
|
55
61
|
},
|
|
56
62
|
"prototype_mode": {
|
|
63
|
+
"const": "image_prompt_pack"
|
|
64
|
+
},
|
|
65
|
+
"prompt_pack_type": {
|
|
57
66
|
"type": "string",
|
|
58
67
|
"enum": [
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"3d_material",
|
|
63
|
-
"workflow",
|
|
64
|
-
"data_logic"
|
|
68
|
+
"strategic_proto_prompt_pack",
|
|
69
|
+
"refined_proto_prompt_pack",
|
|
70
|
+
"proto_review_evidence"
|
|
65
71
|
]
|
|
66
72
|
},
|
|
67
|
-
"
|
|
68
|
-
"type": "
|
|
69
|
-
"
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
"
|
|
73
|
+
"validation_input": {
|
|
74
|
+
"type": "object",
|
|
75
|
+
"required": [
|
|
76
|
+
"mode",
|
|
77
|
+
"refs"
|
|
78
|
+
],
|
|
79
|
+
"properties": {
|
|
80
|
+
"mode": {
|
|
81
|
+
"type": "string",
|
|
82
|
+
"enum": [
|
|
83
|
+
"validation_present",
|
|
84
|
+
"agent_auto_generated"
|
|
85
|
+
]
|
|
86
|
+
},
|
|
87
|
+
"refs": {
|
|
88
|
+
"type": "array",
|
|
89
|
+
"items": {
|
|
77
90
|
"type": "string"
|
|
78
|
-
}
|
|
79
|
-
|
|
91
|
+
}
|
|
92
|
+
},
|
|
93
|
+
"notes": {
|
|
94
|
+
"type": "array",
|
|
95
|
+
"items": {
|
|
96
|
+
"type": "string"
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
},
|
|
100
|
+
"additionalProperties": true
|
|
101
|
+
},
|
|
102
|
+
"source": {
|
|
103
|
+
"type": "object",
|
|
104
|
+
"properties": {
|
|
105
|
+
"refs": {
|
|
106
|
+
"type": "array",
|
|
107
|
+
"items": {
|
|
80
108
|
"type": "string"
|
|
81
|
-
},
|
|
82
|
-
"patterns": {
|
|
83
|
-
"type": "array",
|
|
84
|
-
"items": {
|
|
85
|
-
"type": "string"
|
|
86
|
-
}
|
|
87
|
-
},
|
|
88
|
-
"anti_patterns": {
|
|
89
|
-
"type": "array",
|
|
90
|
-
"items": {
|
|
91
|
-
"type": "string"
|
|
92
|
-
}
|
|
93
109
|
}
|
|
94
110
|
},
|
|
95
|
-
"
|
|
96
|
-
|
|
111
|
+
"target_tool": {
|
|
112
|
+
"type": "string"
|
|
113
|
+
},
|
|
114
|
+
"output_language": {
|
|
115
|
+
"type": "string"
|
|
116
|
+
}
|
|
117
|
+
},
|
|
118
|
+
"additionalProperties": true
|
|
119
|
+
},
|
|
120
|
+
"preflight_quality_gate": {
|
|
121
|
+
"type": "object",
|
|
122
|
+
"required": [
|
|
123
|
+
"vision_status",
|
|
124
|
+
"validation_status",
|
|
125
|
+
"can_proceed",
|
|
126
|
+
"blockers",
|
|
127
|
+
"next_command_when_blocked"
|
|
128
|
+
],
|
|
129
|
+
"additionalProperties": true
|
|
97
130
|
},
|
|
98
|
-
"
|
|
131
|
+
"internal_pipeline": {
|
|
99
132
|
"type": "object",
|
|
133
|
+
"required": [
|
|
134
|
+
"orchestrator_command",
|
|
135
|
+
"user_visible_command",
|
|
136
|
+
"current_stage",
|
|
137
|
+
"stages"
|
|
138
|
+
],
|
|
139
|
+
"additionalProperties": true
|
|
140
|
+
},
|
|
141
|
+
"direction_count_policy": {
|
|
142
|
+
"type": "object",
|
|
143
|
+
"required": [
|
|
144
|
+
"requested_count",
|
|
145
|
+
"resolved_count",
|
|
146
|
+
"source",
|
|
147
|
+
"ask_user_question_required"
|
|
148
|
+
],
|
|
149
|
+
"additionalProperties": true
|
|
150
|
+
},
|
|
151
|
+
"normalized_input": {
|
|
152
|
+
"type": "object",
|
|
153
|
+
"required": [
|
|
154
|
+
"product_domain",
|
|
155
|
+
"primary_user",
|
|
156
|
+
"usage_context",
|
|
157
|
+
"current_alternative",
|
|
158
|
+
"core_pain",
|
|
159
|
+
"desired_behavior_change",
|
|
160
|
+
"strongest_success_signal",
|
|
161
|
+
"core_differentiator",
|
|
162
|
+
"emotional_value",
|
|
163
|
+
"functional_value",
|
|
164
|
+
"trust_requirements",
|
|
165
|
+
"privacy_requirements",
|
|
166
|
+
"non_goals",
|
|
167
|
+
"future_opportunities",
|
|
168
|
+
"validation_target"
|
|
169
|
+
],
|
|
170
|
+
"additionalProperties": true
|
|
171
|
+
},
|
|
172
|
+
"strategic_core": {
|
|
173
|
+
"type": "object",
|
|
174
|
+
"required": [
|
|
175
|
+
"target_user",
|
|
176
|
+
"behavior_change",
|
|
177
|
+
"mechanism",
|
|
178
|
+
"differentiator",
|
|
179
|
+
"boundary_conditions",
|
|
180
|
+
"central_uncertainty"
|
|
181
|
+
],
|
|
182
|
+
"additionalProperties": true
|
|
183
|
+
},
|
|
184
|
+
"product_experience_model": {
|
|
185
|
+
"type": "object",
|
|
186
|
+
"required": [
|
|
187
|
+
"product_archetype",
|
|
188
|
+
"primary_canvas",
|
|
189
|
+
"information_architecture",
|
|
190
|
+
"domain_object_model",
|
|
191
|
+
"primary_task_loop",
|
|
192
|
+
"interaction_state_model",
|
|
193
|
+
"data_realism_requirements",
|
|
194
|
+
"visual_language",
|
|
195
|
+
"anti_generic_constraints"
|
|
196
|
+
],
|
|
100
197
|
"properties": {
|
|
101
|
-
"
|
|
102
|
-
"type":
|
|
103
|
-
"string",
|
|
104
|
-
"null"
|
|
105
|
-
]
|
|
198
|
+
"product_archetype": {
|
|
199
|
+
"type": "string"
|
|
106
200
|
},
|
|
107
|
-
"
|
|
201
|
+
"primary_canvas": {
|
|
108
202
|
"type": "string"
|
|
109
203
|
},
|
|
110
|
-
"
|
|
111
|
-
"type": "
|
|
112
|
-
"
|
|
204
|
+
"information_architecture": {
|
|
205
|
+
"type": "array",
|
|
206
|
+
"items": {
|
|
207
|
+
"type": "string"
|
|
208
|
+
}
|
|
209
|
+
},
|
|
210
|
+
"domain_object_model": {
|
|
211
|
+
"type": "array",
|
|
212
|
+
"items": {
|
|
213
|
+
"type": "string"
|
|
214
|
+
}
|
|
215
|
+
},
|
|
216
|
+
"primary_task_loop": {
|
|
217
|
+
"type": "array",
|
|
218
|
+
"items": {
|
|
219
|
+
"type": "string"
|
|
220
|
+
}
|
|
221
|
+
},
|
|
222
|
+
"interaction_state_model": {
|
|
223
|
+
"type": "array",
|
|
224
|
+
"items": {
|
|
225
|
+
"type": "string"
|
|
226
|
+
}
|
|
227
|
+
},
|
|
228
|
+
"data_realism_requirements": {
|
|
229
|
+
"type": "array",
|
|
230
|
+
"items": {
|
|
231
|
+
"type": "string"
|
|
232
|
+
}
|
|
233
|
+
},
|
|
234
|
+
"visual_language": {
|
|
235
|
+
"type": "array",
|
|
236
|
+
"items": {
|
|
237
|
+
"type": "string"
|
|
238
|
+
}
|
|
239
|
+
},
|
|
240
|
+
"anti_generic_constraints": {
|
|
241
|
+
"type": "array",
|
|
242
|
+
"items": {
|
|
243
|
+
"type": "string"
|
|
244
|
+
}
|
|
245
|
+
},
|
|
246
|
+
"category_quality_bar": {
|
|
247
|
+
"type": "array",
|
|
248
|
+
"items": {
|
|
249
|
+
"type": "string"
|
|
250
|
+
}
|
|
251
|
+
}
|
|
252
|
+
},
|
|
253
|
+
"additionalProperties": true
|
|
254
|
+
},
|
|
255
|
+
"prototype_system_contract": {
|
|
256
|
+
"type": "object",
|
|
257
|
+
"required": [
|
|
258
|
+
"stable_app_shell",
|
|
259
|
+
"navigation_taxonomy",
|
|
260
|
+
"data_vocabulary",
|
|
261
|
+
"domain_object_anatomy",
|
|
262
|
+
"object_detail_anatomy",
|
|
263
|
+
"action_bar_contract",
|
|
264
|
+
"audit_trust_pattern",
|
|
265
|
+
"copy_tone",
|
|
266
|
+
"allowed_screen_deltas"
|
|
267
|
+
],
|
|
268
|
+
"properties": {
|
|
269
|
+
"stable_app_shell": {
|
|
270
|
+
"type": "array",
|
|
271
|
+
"items": {
|
|
272
|
+
"type": "string"
|
|
273
|
+
}
|
|
274
|
+
},
|
|
275
|
+
"navigation_taxonomy": {
|
|
276
|
+
"type": "array",
|
|
277
|
+
"items": {
|
|
278
|
+
"type": "string"
|
|
279
|
+
}
|
|
280
|
+
},
|
|
281
|
+
"data_vocabulary": {
|
|
282
|
+
"type": "array",
|
|
283
|
+
"items": {
|
|
284
|
+
"type": "string"
|
|
285
|
+
}
|
|
286
|
+
},
|
|
287
|
+
"domain_object_anatomy": {
|
|
288
|
+
"type": "array",
|
|
289
|
+
"items": {
|
|
290
|
+
"type": "string"
|
|
291
|
+
}
|
|
292
|
+
},
|
|
293
|
+
"object_detail_anatomy": {
|
|
294
|
+
"type": "array",
|
|
295
|
+
"items": {
|
|
296
|
+
"type": "string"
|
|
297
|
+
}
|
|
298
|
+
},
|
|
299
|
+
"action_bar_contract": {
|
|
300
|
+
"type": "array",
|
|
301
|
+
"items": {
|
|
302
|
+
"type": "string"
|
|
303
|
+
}
|
|
304
|
+
},
|
|
305
|
+
"audit_trust_pattern": {
|
|
306
|
+
"type": "array",
|
|
307
|
+
"items": {
|
|
308
|
+
"type": "string"
|
|
309
|
+
}
|
|
310
|
+
},
|
|
311
|
+
"copy_tone": {
|
|
312
|
+
"type": "string"
|
|
313
|
+
},
|
|
314
|
+
"allowed_screen_deltas": {
|
|
315
|
+
"type": "array",
|
|
316
|
+
"items": {
|
|
113
317
|
"type": "string"
|
|
114
318
|
}
|
|
115
319
|
}
|
|
116
320
|
},
|
|
117
321
|
"additionalProperties": true
|
|
118
322
|
},
|
|
119
|
-
"
|
|
323
|
+
"prototype_reality_gate": {
|
|
120
324
|
"type": "object",
|
|
121
325
|
"required": [
|
|
122
|
-
"
|
|
123
|
-
"
|
|
326
|
+
"status",
|
|
327
|
+
"trigger",
|
|
328
|
+
"required_when_prompt_text_ready",
|
|
329
|
+
"dimensions",
|
|
330
|
+
"failures",
|
|
331
|
+
"outcome_notes",
|
|
332
|
+
"repair_route"
|
|
124
333
|
],
|
|
125
334
|
"properties": {
|
|
126
|
-
"
|
|
335
|
+
"status": {
|
|
127
336
|
"type": "string",
|
|
128
337
|
"enum": [
|
|
129
|
-
"
|
|
130
|
-
"
|
|
131
|
-
"
|
|
338
|
+
"pending",
|
|
339
|
+
"pass",
|
|
340
|
+
"fail"
|
|
132
341
|
]
|
|
133
342
|
},
|
|
134
|
-
"
|
|
135
|
-
"
|
|
136
|
-
|
|
137
|
-
|
|
343
|
+
"trigger": {
|
|
344
|
+
"const": "before_image_generation"
|
|
345
|
+
},
|
|
346
|
+
"required_when_prompt_text_ready": {
|
|
347
|
+
"type": "boolean"
|
|
348
|
+
},
|
|
349
|
+
"dimensions": {
|
|
350
|
+
"type": "array",
|
|
351
|
+
"items": {
|
|
352
|
+
"type": "string",
|
|
353
|
+
"enum": [
|
|
354
|
+
"product_category_fit",
|
|
355
|
+
"primary_canvas_fit",
|
|
356
|
+
"domain_object_realism",
|
|
357
|
+
"task_loop_completeness",
|
|
358
|
+
"interaction_state_coverage",
|
|
359
|
+
"data_realism",
|
|
360
|
+
"anti_generic_constraints"
|
|
361
|
+
]
|
|
362
|
+
}
|
|
363
|
+
},
|
|
364
|
+
"failures": {
|
|
365
|
+
"type": "array",
|
|
366
|
+
"items": {
|
|
367
|
+
"type": "string"
|
|
368
|
+
}
|
|
369
|
+
},
|
|
370
|
+
"outcome_notes": {
|
|
371
|
+
"type": "array",
|
|
372
|
+
"items": {
|
|
373
|
+
"type": "string"
|
|
374
|
+
}
|
|
375
|
+
},
|
|
376
|
+
"repair_route": {
|
|
377
|
+
"const": "/ow:vision2prompt"
|
|
378
|
+
}
|
|
379
|
+
},
|
|
380
|
+
"additionalProperties": true
|
|
381
|
+
},
|
|
382
|
+
"prompt_pack_integrity_gate": {
|
|
383
|
+
"type": "object",
|
|
384
|
+
"required": [
|
|
385
|
+
"status",
|
|
386
|
+
"trigger",
|
|
387
|
+
"required_when_prompt_text_ready",
|
|
388
|
+
"dimensions",
|
|
389
|
+
"failures",
|
|
390
|
+
"outcome_notes",
|
|
391
|
+
"repair_route"
|
|
392
|
+
],
|
|
393
|
+
"properties": {
|
|
394
|
+
"status": {
|
|
395
|
+
"type": "string",
|
|
396
|
+
"enum": [
|
|
397
|
+
"pending",
|
|
398
|
+
"pass",
|
|
399
|
+
"fail"
|
|
138
400
|
]
|
|
401
|
+
},
|
|
402
|
+
"trigger": {
|
|
403
|
+
"const": "before_image_generation"
|
|
404
|
+
},
|
|
405
|
+
"required_when_prompt_text_ready": {
|
|
406
|
+
"type": "boolean"
|
|
407
|
+
},
|
|
408
|
+
"dimensions": {
|
|
409
|
+
"type": "array",
|
|
410
|
+
"items": {
|
|
411
|
+
"type": "string",
|
|
412
|
+
"enum": [
|
|
413
|
+
"direction_count_matches",
|
|
414
|
+
"prompt_text_refs_resolve",
|
|
415
|
+
"generated_image_refs_resolve"
|
|
416
|
+
]
|
|
417
|
+
}
|
|
418
|
+
},
|
|
419
|
+
"failures": {
|
|
420
|
+
"type": "array",
|
|
421
|
+
"items": {
|
|
422
|
+
"type": "string"
|
|
423
|
+
}
|
|
424
|
+
},
|
|
425
|
+
"outcome_notes": {
|
|
426
|
+
"type": "array",
|
|
427
|
+
"items": {
|
|
428
|
+
"type": "string"
|
|
429
|
+
}
|
|
430
|
+
},
|
|
431
|
+
"repair_route": {
|
|
432
|
+
"const": "/ow:vision2prompt"
|
|
139
433
|
}
|
|
140
434
|
},
|
|
141
435
|
"additionalProperties": true
|
|
142
436
|
},
|
|
143
|
-
"
|
|
437
|
+
"directions": {
|
|
144
438
|
"type": "array",
|
|
145
439
|
"items": {
|
|
146
440
|
"type": "object",
|
|
147
441
|
"required": [
|
|
148
|
-
"
|
|
149
|
-
"
|
|
442
|
+
"direction_id",
|
|
443
|
+
"name",
|
|
444
|
+
"strategic_hypothesis",
|
|
445
|
+
"validates",
|
|
446
|
+
"main_risk",
|
|
447
|
+
"distinctness_rationale",
|
|
448
|
+
"prototype_prompt",
|
|
449
|
+
"screen_prompts"
|
|
150
450
|
],
|
|
151
|
-
"properties": {
|
|
152
|
-
"kind": {
|
|
153
|
-
"type": "string"
|
|
154
|
-
},
|
|
155
|
-
"ref": {
|
|
156
|
-
"type": "string"
|
|
157
|
-
},
|
|
158
|
-
"status": {
|
|
159
|
-
"type": "string"
|
|
160
|
-
}
|
|
161
|
-
},
|
|
162
451
|
"additionalProperties": true
|
|
163
452
|
}
|
|
164
453
|
},
|
|
165
|
-
"
|
|
454
|
+
"build_recommendation": {
|
|
166
455
|
"type": "object",
|
|
167
456
|
"required": [
|
|
168
|
-
"
|
|
169
|
-
"
|
|
457
|
+
"first_direction_id",
|
|
458
|
+
"why_first",
|
|
459
|
+
"success_signals",
|
|
460
|
+
"failure_signals",
|
|
461
|
+
"next_test_if_it_works"
|
|
462
|
+
],
|
|
463
|
+
"additionalProperties": true
|
|
464
|
+
},
|
|
465
|
+
"tune_input": {
|
|
466
|
+
"type": "object",
|
|
467
|
+
"required": [
|
|
468
|
+
"baseline_source_type",
|
|
469
|
+
"baseline_refs",
|
|
470
|
+
"tune_request",
|
|
471
|
+
"regeneration_scope"
|
|
472
|
+
],
|
|
473
|
+
"additionalProperties": true
|
|
474
|
+
},
|
|
475
|
+
"baseline_resolution": {
|
|
476
|
+
"type": "object",
|
|
477
|
+
"required": [
|
|
478
|
+
"latest_approved_baseline_group_id",
|
|
479
|
+
"latest_approved_baseline_ref",
|
|
480
|
+
"baseline_lineage",
|
|
481
|
+
"resolution_rule",
|
|
482
|
+
"stale_source_guard"
|
|
170
483
|
],
|
|
171
484
|
"properties": {
|
|
172
|
-
"
|
|
485
|
+
"latest_approved_baseline_group_id": {
|
|
173
486
|
"type": "string"
|
|
174
487
|
},
|
|
175
|
-
"
|
|
488
|
+
"latest_approved_baseline_ref": {
|
|
489
|
+
"type": "string"
|
|
490
|
+
},
|
|
491
|
+
"baseline_lineage": {
|
|
492
|
+
"type": "array",
|
|
493
|
+
"items": {
|
|
494
|
+
"type": "string"
|
|
495
|
+
}
|
|
496
|
+
},
|
|
497
|
+
"resolution_rule": {
|
|
498
|
+
"type": "string"
|
|
499
|
+
},
|
|
500
|
+
"stale_source_guard": {
|
|
176
501
|
"type": "string"
|
|
177
502
|
}
|
|
178
503
|
},
|
|
179
504
|
"additionalProperties": true
|
|
180
505
|
},
|
|
181
|
-
"
|
|
506
|
+
"carry_forward": {
|
|
182
507
|
"type": "object",
|
|
508
|
+
"required": [
|
|
509
|
+
"locked_screens",
|
|
510
|
+
"locked_elements",
|
|
511
|
+
"preserved_improvements",
|
|
512
|
+
"explicit_unlocks",
|
|
513
|
+
"cumulative_drift_guard"
|
|
514
|
+
],
|
|
515
|
+
"properties": {
|
|
516
|
+
"locked_screens": {
|
|
517
|
+
"type": "array",
|
|
518
|
+
"items": {
|
|
519
|
+
"type": "string"
|
|
520
|
+
}
|
|
521
|
+
},
|
|
522
|
+
"locked_elements": {
|
|
523
|
+
"type": "array",
|
|
524
|
+
"items": {
|
|
525
|
+
"type": "string"
|
|
526
|
+
}
|
|
527
|
+
},
|
|
528
|
+
"preserved_improvements": {
|
|
529
|
+
"type": "array",
|
|
530
|
+
"items": {
|
|
531
|
+
"type": "string"
|
|
532
|
+
}
|
|
533
|
+
},
|
|
534
|
+
"explicit_unlocks": {
|
|
535
|
+
"type": "array",
|
|
536
|
+
"items": {
|
|
537
|
+
"type": "string"
|
|
538
|
+
}
|
|
539
|
+
},
|
|
540
|
+
"cumulative_drift_guard": {
|
|
541
|
+
"type": "string"
|
|
542
|
+
}
|
|
543
|
+
},
|
|
183
544
|
"additionalProperties": true
|
|
184
545
|
},
|
|
185
|
-
"
|
|
546
|
+
"baseline_audit": {
|
|
186
547
|
"type": "array",
|
|
187
548
|
"items": {
|
|
188
549
|
"type": "object",
|
|
189
550
|
"required": [
|
|
190
|
-
"
|
|
191
|
-
"
|
|
551
|
+
"source_screen_id",
|
|
552
|
+
"screen_name",
|
|
553
|
+
"journey_stage",
|
|
554
|
+
"user_goal",
|
|
555
|
+
"system_state",
|
|
556
|
+
"components",
|
|
557
|
+
"must_preserve"
|
|
192
558
|
],
|
|
193
|
-
"
|
|
194
|
-
|
|
559
|
+
"additionalProperties": true
|
|
560
|
+
}
|
|
561
|
+
},
|
|
562
|
+
"product_system": {
|
|
563
|
+
"type": "object",
|
|
564
|
+
"required": [
|
|
565
|
+
"product_thesis",
|
|
566
|
+
"primary_loop",
|
|
567
|
+
"component_vocabulary",
|
|
568
|
+
"copywriting_style",
|
|
569
|
+
"trust_and_boundary_system",
|
|
570
|
+
"stable_constants",
|
|
571
|
+
"adaptable_variables"
|
|
572
|
+
],
|
|
573
|
+
"additionalProperties": true
|
|
574
|
+
},
|
|
575
|
+
"delta_rules": {
|
|
576
|
+
"type": "object",
|
|
577
|
+
"properties": {
|
|
578
|
+
"must_inherit": {
|
|
579
|
+
"type": "array",
|
|
580
|
+
"items": {
|
|
195
581
|
"type": "string"
|
|
196
|
-
}
|
|
197
|
-
|
|
582
|
+
}
|
|
583
|
+
},
|
|
584
|
+
"must_add": {
|
|
585
|
+
"type": "array",
|
|
586
|
+
"items": {
|
|
587
|
+
"type": "string"
|
|
588
|
+
}
|
|
589
|
+
},
|
|
590
|
+
"must_remove": {
|
|
591
|
+
"type": "array",
|
|
592
|
+
"items": {
|
|
198
593
|
"type": "string"
|
|
199
594
|
}
|
|
200
595
|
},
|
|
596
|
+
"flexible_change": {
|
|
597
|
+
"type": "array",
|
|
598
|
+
"items": {
|
|
599
|
+
"type": "string"
|
|
600
|
+
}
|
|
601
|
+
}
|
|
602
|
+
},
|
|
603
|
+
"additionalProperties": true
|
|
604
|
+
},
|
|
605
|
+
"screen_delta_matrix": {
|
|
606
|
+
"type": "array",
|
|
607
|
+
"items": {
|
|
608
|
+
"type": "object",
|
|
609
|
+
"required": [
|
|
610
|
+
"target_screen_id",
|
|
611
|
+
"source_screen_ids",
|
|
612
|
+
"preserve",
|
|
613
|
+
"add",
|
|
614
|
+
"remove",
|
|
615
|
+
"transform",
|
|
616
|
+
"flexible",
|
|
617
|
+
"acceptance_criteria"
|
|
618
|
+
],
|
|
201
619
|
"additionalProperties": true
|
|
202
620
|
}
|
|
203
621
|
},
|
|
204
|
-
"
|
|
622
|
+
"screen_manifest": {
|
|
205
623
|
"type": "array",
|
|
206
624
|
"items": {
|
|
207
|
-
"type": "
|
|
625
|
+
"type": "object",
|
|
626
|
+
"required": [
|
|
627
|
+
"target_screen_id",
|
|
628
|
+
"source_screen_ids",
|
|
629
|
+
"screen_name",
|
|
630
|
+
"generation_scope"
|
|
631
|
+
],
|
|
632
|
+
"additionalProperties": true
|
|
208
633
|
}
|
|
209
634
|
},
|
|
210
|
-
"
|
|
635
|
+
"global_design_prompt": {
|
|
636
|
+
"type": "string"
|
|
637
|
+
},
|
|
638
|
+
"screen_prompts": {
|
|
211
639
|
"type": "array",
|
|
212
640
|
"items": {
|
|
213
641
|
"type": "object",
|
|
214
642
|
"required": [
|
|
215
|
-
"
|
|
216
|
-
"
|
|
643
|
+
"prompt_id",
|
|
644
|
+
"target_screen_id",
|
|
645
|
+
"source_screen_ids",
|
|
646
|
+
"screen_name",
|
|
647
|
+
"image_role",
|
|
648
|
+
"prompt",
|
|
649
|
+
"negative_prompt",
|
|
650
|
+
"acceptance_criteria"
|
|
217
651
|
],
|
|
218
|
-
"properties": {
|
|
219
|
-
"kind": {
|
|
220
|
-
"type": "string"
|
|
221
|
-
},
|
|
222
|
-
"ref": {
|
|
223
|
-
"type": "string"
|
|
224
|
-
}
|
|
225
|
-
},
|
|
226
652
|
"additionalProperties": true
|
|
227
653
|
}
|
|
228
654
|
},
|
|
229
|
-
"
|
|
655
|
+
"generation_order": {
|
|
656
|
+
"type": "array",
|
|
657
|
+
"items": {
|
|
658
|
+
"type": "string"
|
|
659
|
+
}
|
|
660
|
+
},
|
|
661
|
+
"acceptance_checklist": {
|
|
662
|
+
"type": "array",
|
|
663
|
+
"items": {
|
|
664
|
+
"type": "string"
|
|
665
|
+
}
|
|
666
|
+
},
|
|
667
|
+
"prompt_text_manifest": {
|
|
230
668
|
"type": "object",
|
|
669
|
+
"required": [
|
|
670
|
+
"status",
|
|
671
|
+
"directions_ready",
|
|
672
|
+
"direction_count",
|
|
673
|
+
"prompt_text_refs"
|
|
674
|
+
],
|
|
231
675
|
"properties": {
|
|
232
|
-
"
|
|
676
|
+
"paragraph_quality_status": {
|
|
677
|
+
"type": "string",
|
|
678
|
+
"enum": [
|
|
679
|
+
"pending",
|
|
680
|
+
"pass",
|
|
681
|
+
"fail"
|
|
682
|
+
]
|
|
683
|
+
},
|
|
684
|
+
"paragraph_quality_dimensions": {
|
|
233
685
|
"type": "array",
|
|
234
686
|
"items": {
|
|
235
687
|
"type": "string"
|
|
236
688
|
}
|
|
689
|
+
}
|
|
690
|
+
},
|
|
691
|
+
"additionalProperties": true
|
|
692
|
+
},
|
|
693
|
+
"post_validate": {
|
|
694
|
+
"type": "object",
|
|
695
|
+
"required": [
|
|
696
|
+
"status",
|
|
697
|
+
"trigger",
|
|
698
|
+
"required_when_direction_count_gte",
|
|
699
|
+
"skip_when_resolved_count",
|
|
700
|
+
"threshold_policy",
|
|
701
|
+
"fingerprint_dimensions",
|
|
702
|
+
"comparisons",
|
|
703
|
+
"failures",
|
|
704
|
+
"outcome_notes",
|
|
705
|
+
"repair_route"
|
|
706
|
+
],
|
|
707
|
+
"properties": {
|
|
708
|
+
"status": {
|
|
709
|
+
"type": "string",
|
|
710
|
+
"enum": [
|
|
711
|
+
"pending",
|
|
712
|
+
"pass",
|
|
713
|
+
"fail",
|
|
714
|
+
"skipped"
|
|
715
|
+
]
|
|
716
|
+
},
|
|
717
|
+
"trigger": {
|
|
718
|
+
"const": "after_prompt_assets_ready"
|
|
719
|
+
},
|
|
720
|
+
"required_when_direction_count_gte": {
|
|
721
|
+
"type": "number",
|
|
722
|
+
"minimum": 2
|
|
723
|
+
},
|
|
724
|
+
"skip_when_resolved_count": {
|
|
725
|
+
"type": "number",
|
|
726
|
+
"const": 1
|
|
237
727
|
},
|
|
238
|
-
"
|
|
728
|
+
"threshold_policy": {
|
|
729
|
+
"type": "object",
|
|
730
|
+
"required": [
|
|
731
|
+
"method",
|
|
732
|
+
"max_pairwise_similarity",
|
|
733
|
+
"comparison"
|
|
734
|
+
],
|
|
735
|
+
"additionalProperties": true
|
|
736
|
+
},
|
|
737
|
+
"fingerprint_dimensions": {
|
|
239
738
|
"type": "array",
|
|
240
739
|
"items": {
|
|
241
740
|
"type": "string"
|
|
242
741
|
}
|
|
243
742
|
},
|
|
244
|
-
"
|
|
743
|
+
"comparisons": {
|
|
744
|
+
"type": "array",
|
|
745
|
+
"items": {
|
|
746
|
+
"type": "object",
|
|
747
|
+
"additionalProperties": true
|
|
748
|
+
}
|
|
749
|
+
},
|
|
750
|
+
"failures": {
|
|
751
|
+
"type": "array",
|
|
752
|
+
"items": {
|
|
753
|
+
"type": "object",
|
|
754
|
+
"additionalProperties": true
|
|
755
|
+
}
|
|
756
|
+
},
|
|
757
|
+
"outcome_notes": {
|
|
245
758
|
"type": "array",
|
|
246
759
|
"items": {
|
|
247
760
|
"type": "string"
|
|
248
761
|
}
|
|
762
|
+
},
|
|
763
|
+
"repair_route": {
|
|
764
|
+
"const": "/ow:vision2prompt"
|
|
249
765
|
}
|
|
250
766
|
},
|
|
251
767
|
"additionalProperties": true
|
|
252
768
|
},
|
|
253
|
-
"
|
|
769
|
+
"image_generation": {
|
|
254
770
|
"type": "object",
|
|
255
771
|
"required": [
|
|
256
|
-
"
|
|
257
|
-
"
|
|
258
|
-
"
|
|
259
|
-
"
|
|
260
|
-
"restraint",
|
|
261
|
-
"accessibility",
|
|
262
|
-
"responsive_behavior",
|
|
263
|
-
"repairs"
|
|
772
|
+
"status",
|
|
773
|
+
"batch_strategy",
|
|
774
|
+
"generated_images",
|
|
775
|
+
"collection_notes"
|
|
264
776
|
],
|
|
265
777
|
"properties": {
|
|
266
|
-
"
|
|
267
|
-
"type": "string"
|
|
268
|
-
},
|
|
269
|
-
"hierarchy": {
|
|
270
|
-
"type": "string"
|
|
271
|
-
},
|
|
272
|
-
"execution": {
|
|
273
|
-
"type": "string"
|
|
274
|
-
},
|
|
275
|
-
"specificity": {
|
|
276
|
-
"type": "string"
|
|
277
|
-
},
|
|
278
|
-
"restraint": {
|
|
279
|
-
"type": "string"
|
|
280
|
-
},
|
|
281
|
-
"accessibility": {
|
|
282
|
-
"type": "string"
|
|
283
|
-
},
|
|
284
|
-
"responsive_behavior": {
|
|
285
|
-
"type": "string"
|
|
286
|
-
},
|
|
287
|
-
"repairs": {
|
|
778
|
+
"generated_images": {
|
|
288
779
|
"type": "array",
|
|
289
780
|
"items": {
|
|
290
|
-
"type": "
|
|
781
|
+
"type": "object",
|
|
782
|
+
"required": [
|
|
783
|
+
"image_id",
|
|
784
|
+
"direction_id",
|
|
785
|
+
"prompt_id",
|
|
786
|
+
"screen_name",
|
|
787
|
+
"path",
|
|
788
|
+
"metadata"
|
|
789
|
+
],
|
|
790
|
+
"additionalProperties": true
|
|
291
791
|
}
|
|
292
792
|
}
|
|
293
793
|
},
|
|
294
794
|
"additionalProperties": true
|
|
295
795
|
},
|
|
796
|
+
"negative_constraints": {
|
|
797
|
+
"type": "array",
|
|
798
|
+
"items": {
|
|
799
|
+
"type": "string"
|
|
800
|
+
}
|
|
801
|
+
},
|
|
802
|
+
"review_plan": {
|
|
803
|
+
"type": "object",
|
|
804
|
+
"additionalProperties": true
|
|
805
|
+
},
|
|
806
|
+
"observations": {
|
|
807
|
+
"type": "array",
|
|
808
|
+
"items": {
|
|
809
|
+
"type": "string"
|
|
810
|
+
}
|
|
811
|
+
},
|
|
812
|
+
"evidence": {
|
|
813
|
+
"type": "array",
|
|
814
|
+
"items": {
|
|
815
|
+
"type": "object",
|
|
816
|
+
"required": [
|
|
817
|
+
"kind",
|
|
818
|
+
"ref"
|
|
819
|
+
],
|
|
820
|
+
"properties": {
|
|
821
|
+
"kind": {
|
|
822
|
+
"type": "string"
|
|
823
|
+
},
|
|
824
|
+
"ref": {
|
|
825
|
+
"type": "string"
|
|
826
|
+
}
|
|
827
|
+
},
|
|
828
|
+
"additionalProperties": true
|
|
829
|
+
}
|
|
830
|
+
},
|
|
831
|
+
"generated_images": {
|
|
832
|
+
"type": "array",
|
|
833
|
+
"items": {
|
|
834
|
+
"type": "object",
|
|
835
|
+
"additionalProperties": true
|
|
836
|
+
}
|
|
837
|
+
},
|
|
296
838
|
"known_limits": {
|
|
297
839
|
"type": "array",
|
|
298
840
|
"items": {
|