@devtrack-solution/codesdd 1.2.4-rc3 → 1.2.4

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.
Files changed (128) hide show
  1. package/.sdd/skills/curated/devtrack-api/SKILL.md +91 -12
  2. package/.sdd/skills/curated/devtrack-api/agents/claude-code.yaml +2 -0
  3. package/.sdd/skills/curated/devtrack-api/agents/codex.yaml +2 -0
  4. package/.sdd/skills/curated/devtrack-api/agents/cursor.yaml +2 -0
  5. package/.sdd/skills/curated/devtrack-api/agents/gemini.yaml +2 -0
  6. package/.sdd/skills/curated/devtrack-api/agents/kimi.yaml +2 -0
  7. package/.sdd/skills/curated/devtrack-api/agents/openai.yaml +3 -3
  8. package/.sdd/skills/curated/devtrack-api/agents/opencode.yaml +2 -0
  9. package/.sdd/skills/curated/devtrack-api/references/application-presentation.md +59 -3
  10. package/.sdd/skills/curated/devtrack-api/references/consumer-sync-policy.md +15 -3
  11. package/.sdd/skills/curated/devtrack-api/references/contract-pack.yaml +1898 -2
  12. package/.sdd/skills/curated/devtrack-api/references/domain-modeling.md +3 -1
  13. package/.sdd/skills/curated/devtrack-api/references/field-validation-protocol.md +40 -0
  14. package/.sdd/skills/curated/devtrack-api/references/foundation-layout.md +20 -2
  15. package/.sdd/skills/curated/devtrack-api/references/generated-artifact-invalidation.md +97 -0
  16. package/.sdd/skills/curated/devtrack-api/references/implementation-checklist.md +30 -1
  17. package/.sdd/skills/curated/devtrack-api/references/portable-agent-contract.md +4 -3
  18. package/.sdd/skills/curated/devtrack-api/references/testing-validation.md +22 -1
  19. package/.sdd/skills/curated/devtrack-api/references/typeorm-infrastructure.md +9 -5
  20. package/README.md +122 -25
  21. package/dist/cli/program.js +180 -11
  22. package/dist/commands/config.js +27 -1
  23. package/dist/commands/sdd/execution.js +64 -2
  24. package/dist/commands/sdd.js +119 -4
  25. package/dist/core/cli/command-matrix.d.ts +18 -0
  26. package/dist/core/cli/command-matrix.js +148 -0
  27. package/dist/core/cli-command-quality.js +2 -0
  28. package/dist/core/config-schema.d.ts +14 -1
  29. package/dist/core/config-schema.js +32 -1
  30. package/dist/core/config.d.ts +1 -0
  31. package/dist/core/config.js +11 -0
  32. package/dist/core/global-config.d.ts +13 -0
  33. package/dist/core/init.d.ts +2 -2
  34. package/dist/core/init.js +13 -14
  35. package/dist/core/sdd/agent-binding.d.ts +9 -9
  36. package/dist/core/sdd/agent-runtime-contract.d.ts +4 -4
  37. package/dist/core/sdd/allocator-recovery.d.ts +14 -0
  38. package/dist/core/sdd/allocator-recovery.js +30 -0
  39. package/dist/core/sdd/allocator-security.d.ts +18 -0
  40. package/dist/core/sdd/allocator-security.js +36 -0
  41. package/dist/core/sdd/api-foundation-baseline.d.ts +111 -0
  42. package/dist/core/sdd/api-foundation-baseline.js +151 -0
  43. package/dist/core/sdd/api-foundation-parity.d.ts +114 -0
  44. package/dist/core/sdd/api-foundation-parity.js +131 -0
  45. package/dist/core/sdd/api-profile-catalog.d.ts +36 -0
  46. package/dist/core/sdd/api-profile-catalog.js +132 -0
  47. package/dist/core/sdd/api-profile-dry-run-projection.d.ts +93 -0
  48. package/dist/core/sdd/api-profile-dry-run-projection.js +370 -0
  49. package/dist/core/sdd/api-profile-recipes.d.ts +82 -0
  50. package/dist/core/sdd/api-profile-recipes.js +484 -0
  51. package/dist/core/sdd/artifact-id-allocator.d.ts +368 -0
  52. package/dist/core/sdd/artifact-id-allocator.js +510 -0
  53. package/dist/core/sdd/check.d.ts +50 -1
  54. package/dist/core/sdd/check.js +286 -9
  55. package/dist/core/sdd/deepagent-contracts.d.ts +4 -4
  56. package/dist/core/sdd/deepagents/reversa-subagents.d.ts +3 -3
  57. package/dist/core/sdd/default-bootstrap-files.d.ts +1 -1
  58. package/dist/core/sdd/default-bootstrap-files.js +0 -2
  59. package/dist/core/sdd/default-skills.js +7 -5
  60. package/dist/core/sdd/devtrack-api-appliance.d.ts +34 -0
  61. package/dist/core/sdd/devtrack-api-appliance.js +138 -34
  62. package/dist/core/sdd/devtrack-api-architecture.d.ts +16 -0
  63. package/dist/core/sdd/devtrack-api-architecture.js +86 -0
  64. package/dist/core/sdd/docs-sync.js +3 -3
  65. package/dist/core/sdd/enterprise-mutating-command-gate.d.ts +27 -0
  66. package/dist/core/sdd/enterprise-mutating-command-gate.js +104 -0
  67. package/dist/core/sdd/enterprise-provenance-gates.d.ts +20 -0
  68. package/dist/core/sdd/enterprise-provenance-gates.js +63 -0
  69. package/dist/core/sdd/enterprise-provisioning-policy.d.ts +26 -0
  70. package/dist/core/sdd/enterprise-provisioning-policy.js +104 -0
  71. package/dist/core/sdd/governance-schemas.d.ts +2 -2
  72. package/dist/core/sdd/governance-schemas.js +11 -2
  73. package/dist/core/sdd/json-schema.js +4 -0
  74. package/dist/core/sdd/legacy-operations.js +93 -4
  75. package/dist/core/sdd/package-security-gates.js +2 -0
  76. package/dist/core/sdd/package-structure-gate.d.ts +85 -3
  77. package/dist/core/sdd/package-structure-gate.js +386 -8
  78. package/dist/core/sdd/parallel-feat-automation.d.ts +6 -6
  79. package/dist/core/sdd/plugin-policy.js +6 -1
  80. package/dist/core/sdd/plugin-registry.d.ts +3 -3
  81. package/dist/core/sdd/quality-validation.d.ts +5 -5
  82. package/dist/core/sdd/release-readiness.d.ts +49 -0
  83. package/dist/core/sdd/release-readiness.js +303 -8
  84. package/dist/core/sdd/reversa-architecture-extractor.d.ts +13 -0
  85. package/dist/core/sdd/reversa-architecture-extractor.js +89 -0
  86. package/dist/core/sdd/reversa-artifact-writer.d.ts +18 -0
  87. package/dist/core/sdd/reversa-artifact-writer.js +40 -0
  88. package/dist/core/sdd/reversa-command-policy.d.ts +136 -0
  89. package/dist/core/sdd/reversa-command-policy.js +361 -0
  90. package/dist/core/sdd/reversa-data-extractor.d.ts +11 -0
  91. package/dist/core/sdd/reversa-data-extractor.js +73 -0
  92. package/dist/core/sdd/reversa-equivalence.d.ts +20 -0
  93. package/dist/core/sdd/reversa-equivalence.js +34 -0
  94. package/dist/core/sdd/reversa-evidence.d.ts +298 -0
  95. package/dist/core/sdd/reversa-evidence.js +118 -0
  96. package/dist/core/sdd/reversa-reconstruction.d.ts +29 -0
  97. package/dist/core/sdd/reversa-reconstruction.js +32 -0
  98. package/dist/core/sdd/reversa-rules-extractor.d.ts +12 -0
  99. package/dist/core/sdd/reversa-rules-extractor.js +86 -0
  100. package/dist/core/sdd/reversa-source-safety.d.ts +19 -0
  101. package/dist/core/sdd/reversa-source-safety.js +105 -0
  102. package/dist/core/sdd/reversa-surface-scout.d.ts +13 -0
  103. package/dist/core/sdd/reversa-surface-scout.js +85 -0
  104. package/dist/core/sdd/reversa-ux-mapper.d.ts +11 -0
  105. package/dist/core/sdd/reversa-ux-mapper.js +73 -0
  106. package/dist/core/sdd/sdk-agent-plugin-quality-gates.d.ts +1 -1
  107. package/dist/core/sdd/services/archive-quality-coherence.service.d.ts +17 -0
  108. package/dist/core/sdd/services/archive-quality-coherence.service.js +141 -0
  109. package/dist/core/sdd/services/decide.service.js +1 -1
  110. package/dist/core/sdd/services/finalize.service.d.ts +2 -0
  111. package/dist/core/sdd/services/finalize.service.js +48 -2
  112. package/dist/core/sdd/services/historical-quality-regression.service.d.ts +35 -0
  113. package/dist/core/sdd/services/historical-quality-regression.service.js +228 -0
  114. package/dist/core/sdd/services/ingest-deposito.service.js +1 -1
  115. package/dist/core/sdd/services/planning-execution-coherence.service.d.ts +45 -0
  116. package/dist/core/sdd/services/planning-execution-coherence.service.js +225 -0
  117. package/dist/core/sdd/state.js +15 -5
  118. package/dist/core/sdd/types.d.ts +3 -3
  119. package/dist/core/sdd/workspace-schemas.d.ts +45 -4
  120. package/dist/core/sdd/workspace-schemas.js +27 -6
  121. package/dist/core/shared/skill-generation.d.ts +2 -0
  122. package/dist/core/shared/skill-generation.js +19 -2
  123. package/dist/core/shared/tool-detection.d.ts +19 -0
  124. package/dist/core/shared/tool-detection.js +89 -0
  125. package/package.json +6 -5
  126. package/schemas/sdd/5-quality.schema.json +43 -0
  127. package/schemas/sdd/reversa-evidence-bundle.schema.json +466 -0
  128. package/schemas/sdd/workspace-catalog.schema.json +511 -0
@@ -1012,6 +1012,49 @@
1012
1012
  },
1013
1013
  "artifact": {
1014
1014
  "type": "string"
1015
+ },
1016
+ "critical": {
1017
+ "type": "boolean"
1018
+ },
1019
+ "provenance": {
1020
+ "type": "object",
1021
+ "properties": {
1022
+ "command": {
1023
+ "type": "string",
1024
+ "minLength": 1
1025
+ },
1026
+ "exit_code": {
1027
+ "type": "integer",
1028
+ "minimum": -9007199254740991,
1029
+ "maximum": 9007199254740991
1030
+ },
1031
+ "timestamp_iso": {
1032
+ "type": "string",
1033
+ "format": "date-time",
1034
+ "pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z))$"
1035
+ },
1036
+ "commit_sha": {
1037
+ "type": "string",
1038
+ "pattern": "^[0-9a-f]{7,40}$"
1039
+ },
1040
+ "artifact_path": {
1041
+ "type": "string",
1042
+ "minLength": 1
1043
+ },
1044
+ "artifact_hash": {
1045
+ "type": "string",
1046
+ "minLength": 1
1047
+ }
1048
+ },
1049
+ "required": [
1050
+ "command",
1051
+ "exit_code",
1052
+ "timestamp_iso",
1053
+ "commit_sha",
1054
+ "artifact_path",
1055
+ "artifact_hash"
1056
+ ],
1057
+ "additionalProperties": false
1015
1058
  }
1016
1059
  },
1017
1060
  "required": [
@@ -11875,6 +11918,474 @@
11875
11918
  "description": "Machine-readable quality gate report for SDK contracts, agent runtimes, plugin compliance indexes, Foundation artifact maps, and coverage scopes."
11876
11919
  }
11877
11920
  },
11921
+ "reversa_contracts": {
11922
+ "reversa-evidence-bundle.yaml": {
11923
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
11924
+ "type": "object",
11925
+ "properties": {
11926
+ "schema_version": {
11927
+ "type": "number",
11928
+ "const": 1
11929
+ },
11930
+ "contract": {
11931
+ "type": "string",
11932
+ "const": "reversa-evidence-bundle/v1"
11933
+ },
11934
+ "operation_id": {
11935
+ "type": "string",
11936
+ "pattern": "^[a-z0-9][a-z0-9-]*$"
11937
+ },
11938
+ "generated_at": {
11939
+ "type": "string",
11940
+ "format": "date-time",
11941
+ "pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z))$"
11942
+ },
11943
+ "feature_ref": {
11944
+ "type": "string",
11945
+ "pattern": "^FEAT-\\d{4}$"
11946
+ },
11947
+ "mode": {
11948
+ "type": "string",
11949
+ "enum": [
11950
+ "read-only",
11951
+ "plan",
11952
+ "validate",
11953
+ "apply-sandbox",
11954
+ "apply-approved"
11955
+ ]
11956
+ },
11957
+ "source_attestations": {
11958
+ "minItems": 1,
11959
+ "type": "array",
11960
+ "items": {
11961
+ "type": "object",
11962
+ "properties": {
11963
+ "source_ref": {
11964
+ "type": "string",
11965
+ "minLength": 1
11966
+ },
11967
+ "source_type": {
11968
+ "type": "string",
11969
+ "enum": [
11970
+ "repository",
11971
+ "document",
11972
+ "config",
11973
+ "runtime_log",
11974
+ "database_schema",
11975
+ "manual_note"
11976
+ ]
11977
+ },
11978
+ "trust_level": {
11979
+ "type": "string",
11980
+ "enum": [
11981
+ "trusted",
11982
+ "untrusted",
11983
+ "hostile"
11984
+ ]
11985
+ },
11986
+ "sha256": {
11987
+ "type": "string",
11988
+ "minLength": 1
11989
+ },
11990
+ "redaction_status": {
11991
+ "type": "string",
11992
+ "enum": [
11993
+ "not_required",
11994
+ "redacted",
11995
+ "blocked"
11996
+ ]
11997
+ },
11998
+ "notes": {
11999
+ "type": "string",
12000
+ "minLength": 1
12001
+ }
12002
+ },
12003
+ "required": [
12004
+ "source_ref",
12005
+ "source_type",
12006
+ "trust_level",
12007
+ "redaction_status"
12008
+ ],
12009
+ "additionalProperties": false
12010
+ }
12011
+ },
12012
+ "findings": {
12013
+ "default": [],
12014
+ "type": "array",
12015
+ "items": {
12016
+ "type": "object",
12017
+ "properties": {
12018
+ "id": {
12019
+ "type": "string",
12020
+ "pattern": "^REV-FIND-[A-Z0-9-]+$"
12021
+ },
12022
+ "phase": {
12023
+ "type": "string",
12024
+ "enum": [
12025
+ "intake",
12026
+ "surface",
12027
+ "architecture",
12028
+ "rules",
12029
+ "data",
12030
+ "ux",
12031
+ "artifact_generation",
12032
+ "migration",
12033
+ "reconstruction",
12034
+ "equivalence"
12035
+ ]
12036
+ },
12037
+ "title": {
12038
+ "type": "string",
12039
+ "minLength": 1
12040
+ },
12041
+ "summary": {
12042
+ "type": "string",
12043
+ "minLength": 1
12044
+ },
12045
+ "confidence": {
12046
+ "type": "string",
12047
+ "enum": [
12048
+ "high",
12049
+ "medium",
12050
+ "low",
12051
+ "unknown"
12052
+ ]
12053
+ },
12054
+ "source_refs": {
12055
+ "minItems": 1,
12056
+ "type": "array",
12057
+ "items": {
12058
+ "type": "string",
12059
+ "minLength": 1
12060
+ }
12061
+ },
12062
+ "contradiction_refs": {
12063
+ "default": [],
12064
+ "type": "array",
12065
+ "items": {
12066
+ "type": "string",
12067
+ "minLength": 1
12068
+ }
12069
+ },
12070
+ "promoted_refs": {
12071
+ "default": [],
12072
+ "type": "array",
12073
+ "items": {
12074
+ "type": "string",
12075
+ "minLength": 1
12076
+ }
12077
+ },
12078
+ "metadata": {
12079
+ "default": {},
12080
+ "type": "object",
12081
+ "propertyNames": {
12082
+ "type": "string"
12083
+ },
12084
+ "additionalProperties": {}
12085
+ }
12086
+ },
12087
+ "required": [
12088
+ "id",
12089
+ "phase",
12090
+ "title",
12091
+ "summary",
12092
+ "confidence",
12093
+ "source_refs",
12094
+ "contradiction_refs",
12095
+ "promoted_refs",
12096
+ "metadata"
12097
+ ],
12098
+ "additionalProperties": false
12099
+ }
12100
+ },
12101
+ "artifacts": {
12102
+ "default": [],
12103
+ "type": "array",
12104
+ "items": {
12105
+ "type": "object",
12106
+ "properties": {
12107
+ "path": {
12108
+ "type": "string",
12109
+ "minLength": 1
12110
+ },
12111
+ "artifact_type": {
12112
+ "type": "string",
12113
+ "enum": [
12114
+ "inventory",
12115
+ "architecture_map",
12116
+ "business_rules",
12117
+ "data_model",
12118
+ "ux_map",
12119
+ "generated_sdd_artifact",
12120
+ "migration_plan",
12121
+ "reconstruction_diff",
12122
+ "equivalence_report",
12123
+ "question_set"
12124
+ ]
12125
+ },
12126
+ "phase": {
12127
+ "type": "string",
12128
+ "enum": [
12129
+ "intake",
12130
+ "surface",
12131
+ "architecture",
12132
+ "rules",
12133
+ "data",
12134
+ "ux",
12135
+ "artifact_generation",
12136
+ "migration",
12137
+ "reconstruction",
12138
+ "equivalence"
12139
+ ]
12140
+ },
12141
+ "checksum_sha256": {
12142
+ "type": "string",
12143
+ "minLength": 1
12144
+ },
12145
+ "produced_by": {
12146
+ "type": "string",
12147
+ "minLength": 1
12148
+ },
12149
+ "write_scope": {
12150
+ "type": "string",
12151
+ "enum": [
12152
+ "read_only",
12153
+ "dry_run",
12154
+ "sandbox",
12155
+ "approved_apply"
12156
+ ]
12157
+ }
12158
+ },
12159
+ "required": [
12160
+ "path",
12161
+ "artifact_type",
12162
+ "phase",
12163
+ "produced_by",
12164
+ "write_scope"
12165
+ ],
12166
+ "additionalProperties": false
12167
+ }
12168
+ },
12169
+ "validations": {
12170
+ "default": [],
12171
+ "type": "array",
12172
+ "items": {
12173
+ "type": "object",
12174
+ "properties": {
12175
+ "id": {
12176
+ "type": "string",
12177
+ "pattern": "^REV-VAL-[A-Z0-9-]+$"
12178
+ },
12179
+ "phase": {
12180
+ "type": "string",
12181
+ "enum": [
12182
+ "intake",
12183
+ "surface",
12184
+ "architecture",
12185
+ "rules",
12186
+ "data",
12187
+ "ux",
12188
+ "artifact_generation",
12189
+ "migration",
12190
+ "reconstruction",
12191
+ "equivalence"
12192
+ ]
12193
+ },
12194
+ "command": {
12195
+ "type": "string",
12196
+ "minLength": 1
12197
+ },
12198
+ "status": {
12199
+ "type": "string",
12200
+ "enum": [
12201
+ "passed",
12202
+ "warning",
12203
+ "failed",
12204
+ "blocked",
12205
+ "skipped"
12206
+ ]
12207
+ },
12208
+ "evidence_ref": {
12209
+ "type": "string",
12210
+ "minLength": 1
12211
+ },
12212
+ "issue_codes": {
12213
+ "default": [],
12214
+ "type": "array",
12215
+ "items": {
12216
+ "type": "string",
12217
+ "pattern": "^[A-Z][A-Z0-9_]*$"
12218
+ }
12219
+ }
12220
+ },
12221
+ "required": [
12222
+ "id",
12223
+ "phase",
12224
+ "command",
12225
+ "status",
12226
+ "issue_codes"
12227
+ ],
12228
+ "additionalProperties": false
12229
+ }
12230
+ },
12231
+ "contradictions": {
12232
+ "default": [],
12233
+ "type": "array",
12234
+ "items": {
12235
+ "type": "object",
12236
+ "properties": {
12237
+ "id": {
12238
+ "type": "string",
12239
+ "pattern": "^REV-CONTRA-[A-Z0-9-]+$"
12240
+ },
12241
+ "finding_refs": {
12242
+ "minItems": 2,
12243
+ "type": "array",
12244
+ "items": {
12245
+ "type": "string",
12246
+ "minLength": 1
12247
+ }
12248
+ },
12249
+ "summary": {
12250
+ "type": "string",
12251
+ "minLength": 1
12252
+ },
12253
+ "resolution_status": {
12254
+ "type": "string",
12255
+ "enum": [
12256
+ "open",
12257
+ "resolved",
12258
+ "accepted_risk"
12259
+ ]
12260
+ }
12261
+ },
12262
+ "required": [
12263
+ "id",
12264
+ "finding_refs",
12265
+ "summary",
12266
+ "resolution_status"
12267
+ ],
12268
+ "additionalProperties": false
12269
+ }
12270
+ },
12271
+ "human_questions": {
12272
+ "default": [],
12273
+ "type": "array",
12274
+ "items": {
12275
+ "type": "object",
12276
+ "properties": {
12277
+ "id": {
12278
+ "type": "string",
12279
+ "pattern": "^REV-Q-[A-Z0-9-]+$"
12280
+ },
12281
+ "question": {
12282
+ "type": "string",
12283
+ "minLength": 1
12284
+ },
12285
+ "blocks_phase": {
12286
+ "type": "string",
12287
+ "enum": [
12288
+ "intake",
12289
+ "surface",
12290
+ "architecture",
12291
+ "rules",
12292
+ "data",
12293
+ "ux",
12294
+ "artifact_generation",
12295
+ "migration",
12296
+ "reconstruction",
12297
+ "equivalence"
12298
+ ]
12299
+ },
12300
+ "required_before_apply": {
12301
+ "default": false,
12302
+ "type": "boolean"
12303
+ }
12304
+ },
12305
+ "required": [
12306
+ "id",
12307
+ "question",
12308
+ "required_before_apply"
12309
+ ],
12310
+ "additionalProperties": false
12311
+ }
12312
+ },
12313
+ "quality_refs": {
12314
+ "default": [],
12315
+ "type": "array",
12316
+ "items": {
12317
+ "type": "string",
12318
+ "minLength": 1
12319
+ }
12320
+ },
12321
+ "residual_risks": {
12322
+ "default": [],
12323
+ "type": "array",
12324
+ "items": {
12325
+ "type": "object",
12326
+ "properties": {
12327
+ "code": {
12328
+ "type": "string",
12329
+ "pattern": "^[A-Z][A-Z0-9_]*$"
12330
+ },
12331
+ "severity": {
12332
+ "type": "string",
12333
+ "enum": [
12334
+ "low",
12335
+ "medium",
12336
+ "high",
12337
+ "critical"
12338
+ ]
12339
+ },
12340
+ "description": {
12341
+ "type": "string",
12342
+ "minLength": 1
12343
+ },
12344
+ "mitigation": {
12345
+ "type": "string",
12346
+ "minLength": 1
12347
+ }
12348
+ },
12349
+ "required": [
12350
+ "code",
12351
+ "severity",
12352
+ "description",
12353
+ "mitigation"
12354
+ ],
12355
+ "additionalProperties": false
12356
+ }
12357
+ },
12358
+ "metadata": {
12359
+ "default": {},
12360
+ "type": "object",
12361
+ "propertyNames": {
12362
+ "type": "string"
12363
+ },
12364
+ "additionalProperties": {}
12365
+ }
12366
+ },
12367
+ "required": [
12368
+ "schema_version",
12369
+ "contract",
12370
+ "operation_id",
12371
+ "generated_at",
12372
+ "feature_ref",
12373
+ "mode",
12374
+ "source_attestations",
12375
+ "findings",
12376
+ "artifacts",
12377
+ "validations",
12378
+ "contradictions",
12379
+ "human_questions",
12380
+ "quality_refs",
12381
+ "residual_risks",
12382
+ "metadata"
12383
+ ],
12384
+ "additionalProperties": false,
12385
+ "title": "CodeSDD Reversa Evidence Bundle",
12386
+ "description": "Machine-readable evidence bundle contract for Reversa intake, extraction, generation, migration, reconstruction, and equivalence phases."
12387
+ }
12388
+ },
11878
12389
  "deepagent_execution": {
11879
12390
  "deepagent-run-request.yaml": {
11880
12391
  "$schema": "https://json-schema.org/draft/2020-12/schema",