@qijenchen/governance 0.1.0-beta.94
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/README.md +89 -0
- package/bin/attest.mjs +4 -0
- package/bin/check.mjs +4 -0
- package/bin/doctor.mjs +4 -0
- package/bin/generate.mjs +4 -0
- package/bin/governance.mjs +4 -0
- package/bin/hook.mjs +4 -0
- package/bin/upgrade.mjs +4 -0
- package/canonical/gates.json +42 -0
- package/canonical/manifest.json +476 -0
- package/canonical/plugin-aliases.json +25 -0
- package/canonical/provider-lifecycle.json +48 -0
- package/canonical/providers.json +455 -0
- package/canonical/roles.json +12 -0
- package/canonical/rules.json +81 -0
- package/canonical/schemas/attestation.schema.json +61 -0
- package/canonical/schemas/diagnostic.schema.json +37 -0
- package/canonical/schemas/gates.schema.json +27 -0
- package/canonical/schemas/lock.schema.json +189 -0
- package/canonical/schemas/manifest.schema.json +103 -0
- package/canonical/schemas/plugin-aliases.schema.json +59 -0
- package/canonical/schemas/provider-hook-coverage.schema.json +173 -0
- package/canonical/schemas/provider-lifecycle.schema.json +126 -0
- package/canonical/schemas/providers.schema.json +917 -0
- package/canonical/schemas/roles.schema.json +27 -0
- package/canonical/schemas/rules.schema.json +46 -0
- package/canonical/schemas/upgrade-plan.schema.json +31 -0
- package/package.json +42 -0
- package/src/authority-decision-evidence.mjs +413 -0
- package/src/canonical-order.mjs +8 -0
- package/src/carrier-projection.mjs +407 -0
- package/src/cli.mjs +114 -0
- package/src/closed-tool-execution.mjs +1001 -0
- package/src/common.mjs +278 -0
- package/src/contract.mjs +760 -0
- package/src/hook-api.mjs +107 -0
- package/src/index.mjs +14 -0
- package/src/provider-hook-normalization.mjs +1646 -0
- package/src/provider-review-binding.mjs +2377 -0
- package/src/snapshot.mjs +520 -0
|
@@ -0,0 +1,476 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "./schemas/manifest.schema.json",
|
|
3
|
+
"schemaVersion": 3,
|
|
4
|
+
"id": "qijenchen-provider-neutral-governance",
|
|
5
|
+
"defaultRole": "ds-author",
|
|
6
|
+
"outputDirectory": "governance/generated",
|
|
7
|
+
"lockFile": "governance/control-plane.lock.json",
|
|
8
|
+
"registries": {
|
|
9
|
+
"rules": "./rules.json",
|
|
10
|
+
"roles": "./roles.json",
|
|
11
|
+
"providers": "./providers.json",
|
|
12
|
+
"gates": "./gates.json"
|
|
13
|
+
},
|
|
14
|
+
"artifactSchemas": {
|
|
15
|
+
"diagnostic": "./schemas/diagnostic.schema.json",
|
|
16
|
+
"lock": "./schemas/lock.schema.json",
|
|
17
|
+
"attestation": "./schemas/attestation.schema.json",
|
|
18
|
+
"upgradePlan": "./schemas/upgrade-plan.schema.json"
|
|
19
|
+
},
|
|
20
|
+
"skillParityContracts": [
|
|
21
|
+
{
|
|
22
|
+
"id": "canonical-agent-skills",
|
|
23
|
+
"sourceDirectory": "packages/design-system/ds-canonical/skills",
|
|
24
|
+
"targetSelection": "all-generated-skill-views",
|
|
25
|
+
"compare": "content-and-mode",
|
|
26
|
+
"projection": {
|
|
27
|
+
"module": "scripts/gen-codex-adapter.mjs",
|
|
28
|
+
"export": "projectSharedSkillMarkdown",
|
|
29
|
+
"files": ["SKILL.md"]
|
|
30
|
+
},
|
|
31
|
+
"required": true
|
|
32
|
+
}
|
|
33
|
+
],
|
|
34
|
+
"sources": [
|
|
35
|
+
{ "id": "agent-bootstrap", "ownerRepo": "design-system", "path": "AGENTS.md", "required": true },
|
|
36
|
+
{ "id": "product-shared-instruction", "ownerRepo": "design-system", "path": "scripts/fork-role-sources/AGENTS.product.md", "required": true },
|
|
37
|
+
{ "id": "claude-instruction-adapter", "ownerRepo": "design-system", "path": "packages/design-system/ds-canonical/adapters/claude-root-instructions.md", "required": true },
|
|
38
|
+
{ "id": "provider-neutral-memory", "ownerRepo": "design-system", "path": "governance/memory", "required": true },
|
|
39
|
+
{ "id": "provider-neutral-planning-ledger", "ownerRepo": "design-system", "path": "governance/planning", "required": true },
|
|
40
|
+
{ "id": "provider-neutral-benchmark-policy", "ownerRepo": "design-system", "path": "governance/benchmarks", "required": true },
|
|
41
|
+
{ "id": "governance-audit-coverage-metadata", "ownerRepo": "design-system", "path": "generated/governance/audit-coverage-matrix.json", "required": true },
|
|
42
|
+
{ "id": "governance-counter-metadata", "ownerRepo": "design-system", "path": "generated/governance/governance-counters.json", "required": true },
|
|
43
|
+
{ "id": "audit-coverage-matrix-source", "ownerRepo": "design-system", "path": "scripts/audit-coverage-matrix.mjs", "required": true },
|
|
44
|
+
{ "id": "repository-automation-corpus", "ownerRepo": "design-system", "path": "scripts", "excludes": ["scripts/generated/"], "required": true },
|
|
45
|
+
{ "id": "workflow-static-validation-helper", "ownerRepo": "design-system", "path": "scripts/workflow-static-validation.mjs", "required": true },
|
|
46
|
+
{ "id": "canonical-adapter-templates", "ownerRepo": "design-system", "path": "packages/design-system/ds-canonical/adapters", "required": true },
|
|
47
|
+
{ "id": "canonical-commands", "ownerRepo": "design-system", "path": "packages/design-system/ds-canonical/commands", "required": true },
|
|
48
|
+
{ "id": "canonical-hooks", "ownerRepo": "design-system", "path": "packages/design-system/ds-canonical/hooks", "required": true },
|
|
49
|
+
{ "id": "canonical-hook-approval-evidence-helper", "ownerRepo": "design-system", "path": "packages/design-system/ds-canonical/hooks/lib/approval-evidence.mjs", "required": true },
|
|
50
|
+
{ "id": "canonical-hook-provider-marker-regex-helper", "ownerRepo": "design-system", "path": "packages/design-system/ds-canonical/hooks/lib/provider-marker-regex.mjs", "required": true },
|
|
51
|
+
{ "id": "canonical-hook-audit-report-validator-helper", "ownerRepo": "design-system", "path": "packages/design-system/ds-canonical/hooks/lib/audit-report-validator.mjs", "required": true },
|
|
52
|
+
{ "id": "canonical-hook-tsx-governance-analysis-helper", "ownerRepo": "design-system", "path": "packages/design-system/ds-canonical/hooks/lib/tsx-governance-analysis.mjs", "required": true },
|
|
53
|
+
{ "id": "canonical-hook-registration-output-contract-helper", "ownerRepo": "design-system", "path": "packages/design-system/ds-canonical/hooks/tests/registration-output-contracts.mjs", "required": true },
|
|
54
|
+
{ "id": "canonical-rules", "ownerRepo": "design-system", "path": "packages/design-system/ds-canonical/rules", "required": true },
|
|
55
|
+
{ "id": "canonical-references", "ownerRepo": "design-system", "path": "packages/design-system/ds-canonical/references", "required": true },
|
|
56
|
+
{ "id": "canonical-skills", "ownerRepo": "design-system", "path": "packages/design-system/ds-canonical/skills", "required": true },
|
|
57
|
+
{ "id": "canonical-product-templates", "ownerRepo": "design-system", "path": "packages/design-system/ds-canonical/templates", "required": true },
|
|
58
|
+
{ "id": "provider-hook-registrations", "ownerRepo": "design-system", "path": "packages/design-system/ds-canonical/hooks/registrations.json", "required": true },
|
|
59
|
+
{ "id": "provider-hook-registrations-schema", "ownerRepo": "design-system", "path": "packages/design-system/ds-canonical/hooks/registrations.schema.json", "required": true },
|
|
60
|
+
{ "id": "provider-hook-coverage-artifact", "ownerRepo": "design-system", "path": "generated/governance/provider-hook-coverage.json", "required": true },
|
|
61
|
+
{ "id": "provider-runtime-validator-artifact", "ownerRepo": "design-system", "path": "generated/governance/provider-runtime-validator.mjs", "required": true },
|
|
62
|
+
{ "id": "provider-hook-coverage-schema", "ownerRepo": "design-system", "path": "packages/governance/canonical/schemas/provider-hook-coverage.schema.json", "required": true },
|
|
63
|
+
{ "id": "provider-adapter-generator", "ownerRepo": "design-system", "path": "scripts/gen-codex-adapter.mjs", "required": true },
|
|
64
|
+
{ "id": "provider-review-binding-library", "ownerRepo": "design-system", "path": "packages/governance/src/provider-review-binding.mjs", "required": true },
|
|
65
|
+
{ "id": "provider-review-binding-tests", "ownerRepo": "design-system", "path": "scripts/test-provider-review-binding.mjs", "required": true },
|
|
66
|
+
{ "id": "product-independent-review-launcher", "ownerRepo": "design-system", "path": "packages/design-system/ds-canonical/templates/product-launchers/independent-review.mjs", "required": true },
|
|
67
|
+
{ "id": "provider-hook-runner", "ownerRepo": "design-system", "path": "scripts/run-provider-hook.mjs", "required": true },
|
|
68
|
+
{ "id": "authority-decision-evidence-library", "ownerRepo": "design-system", "path": "packages/governance/src/authority-decision-evidence.mjs", "required": true },
|
|
69
|
+
{ "id": "provider-hook-output-transport", "ownerRepo": "design-system", "path": "scripts/lib/provider-hook-output-transport.mjs", "required": true },
|
|
70
|
+
{ "id": "provider-hook-output-transport-tests", "ownerRepo": "design-system", "path": "scripts/test-provider-hook-output-transport.mjs", "required": true },
|
|
71
|
+
{ "id": "deep-audit-evidence-contract", "ownerRepo": "design-system", "path": "scripts/lib/deep-audit-evidence-contract.mjs", "required": true },
|
|
72
|
+
{ "id": "deep-audit-evidence-contract-schema", "ownerRepo": "design-system", "path": "scripts/schemas/deep-audit-evidence-contract.schema.json", "required": true },
|
|
73
|
+
{ "id": "deep-audit-run-preparer", "ownerRepo": "design-system", "path": "scripts/prepare-deep-audit-run.mjs", "required": true },
|
|
74
|
+
{ "id": "deep-audit-coverage-verifier", "ownerRepo": "design-system", "path": "scripts/verify-deep-audit-coverage.mjs", "required": true },
|
|
75
|
+
{ "id": "deep-audit-coverage-tests", "ownerRepo": "design-system", "path": "scripts/test-verify-deep-audit-coverage.mjs", "required": true },
|
|
76
|
+
{ "id": "deep-audit-deterministic-plan", "ownerRepo": "design-system", "path": "scripts/deep-audit-deterministic-plan.json", "required": true },
|
|
77
|
+
{ "id": "deep-audit-deterministic-plan-schema", "ownerRepo": "design-system", "path": "scripts/schemas/deep-audit-deterministic-plan.schema.json", "required": true },
|
|
78
|
+
{ "id": "deep-audit-deterministic-plan-library", "ownerRepo": "design-system", "path": "scripts/lib/deep-audit-deterministic-plan.mjs", "required": true },
|
|
79
|
+
{ "id": "deep-audit-deterministic-runner", "ownerRepo": "design-system", "path": "scripts/run-deterministic-deep-audit.mjs", "required": true },
|
|
80
|
+
{ "id": "deep-audit-deterministic-tests", "ownerRepo": "design-system", "path": "scripts/test-run-deterministic-deep-audit.mjs", "required": true },
|
|
81
|
+
{ "id": "deep-audit-hook-evidence-plan", "ownerRepo": "design-system", "path": "infra/governance/hook-evidence-plan.json", "required": true },
|
|
82
|
+
{ "id": "deep-audit-hook-evidence-plan-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/hook-evidence-plan.schema.json", "required": true },
|
|
83
|
+
{ "id": "deep-audit-hook-evidence-plan-library", "ownerRepo": "design-system", "path": "scripts/lib/hook-evidence-plan.mjs", "required": true },
|
|
84
|
+
{ "id": "deep-audit-hook-evidence-producer", "ownerRepo": "design-system", "path": "scripts/produce-hook-enforced-evidence.mjs", "required": true },
|
|
85
|
+
{ "id": "deep-audit-hook-evidence-plan-tests", "ownerRepo": "design-system", "path": "scripts/test-hook-evidence-plan.mjs", "required": true },
|
|
86
|
+
{ "id": "deep-audit-hook-evidence-producer-tests", "ownerRepo": "design-system", "path": "scripts/test-produce-hook-enforced-evidence.mjs", "required": true },
|
|
87
|
+
{ "id": "deep-audit-ci-evidence-plan", "ownerRepo": "design-system", "path": "scripts/ci-evidence-plan.json", "required": true },
|
|
88
|
+
{ "id": "deep-audit-ci-evidence-plan-schema", "ownerRepo": "design-system", "path": "scripts/schemas/ci-evidence-plan.schema.json", "required": true },
|
|
89
|
+
{ "id": "deep-audit-ci-observation-schema", "ownerRepo": "design-system", "path": "scripts/schemas/ci-evidence-observation.schema.json", "required": true },
|
|
90
|
+
{ "id": "deep-audit-ci-attestation-schema", "ownerRepo": "design-system", "path": "scripts/schemas/ci-evidence-attestation.schema.json", "required": true },
|
|
91
|
+
{ "id": "deep-audit-ci-evidence-plan-library", "ownerRepo": "design-system", "path": "scripts/lib/ci-evidence-plan.mjs", "required": true },
|
|
92
|
+
{ "id": "deep-audit-ci-evidence-pipeline", "ownerRepo": "design-system", "path": "scripts/lib/ci-evidence-pipeline.mjs", "required": true },
|
|
93
|
+
{ "id": "deep-audit-ci-live-observer", "ownerRepo": "design-system", "path": "scripts/lib/ci-evidence-live-observer.mjs", "required": true },
|
|
94
|
+
{ "id": "deep-audit-ci-evidence-producer", "ownerRepo": "design-system", "path": "scripts/produce-ci-enforced-evidence.mjs", "required": true },
|
|
95
|
+
{ "id": "deep-audit-ci-evidence-tests", "ownerRepo": "design-system", "path": "scripts/test-produce-ci-enforced-evidence.mjs", "required": true },
|
|
96
|
+
{ "id": "deep-audit-model-evidence-plan", "ownerRepo": "design-system", "path": "infra/governance/model-evidence-plan.json", "required": true },
|
|
97
|
+
{ "id": "deep-audit-model-evidence-plan-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/model-evidence-plan.schema.json", "required": true },
|
|
98
|
+
{ "id": "deep-audit-model-evidence-broker", "ownerRepo": "design-system", "path": "infra/governance/model-evidence-broker.json", "required": true },
|
|
99
|
+
{ "id": "deep-audit-model-evidence-broker-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/model-evidence-broker.schema.json", "required": true },
|
|
100
|
+
{ "id": "deep-audit-model-result-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/model-deep-audit-result.schema.json", "required": true },
|
|
101
|
+
{ "id": "model-invocation-profiles", "ownerRepo": "design-system", "path": "infra/governance/providers/model-invocation-profiles.json", "required": true },
|
|
102
|
+
{ "id": "model-invocation-profiles-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/model-invocation-profiles.schema.json", "required": true },
|
|
103
|
+
{ "id": "review-capability-registry", "ownerRepo": "design-system", "path": "infra/governance/providers/review-capability-registry.json", "required": true },
|
|
104
|
+
{ "id": "review-capability-registry-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/review-capability-registry.schema.json", "required": true },
|
|
105
|
+
{ "id": "review-capability-certifications", "ownerRepo": "design-system", "path": "infra/governance/providers/review-capability-certifications.json", "carrierProjection": "review-capability-certification-state-v1", "required": true },
|
|
106
|
+
{ "id": "review-capability-certifications-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/review-capability-certifications.schema.json", "required": true },
|
|
107
|
+
{ "id": "review-capability-selection-tests", "ownerRepo": "design-system", "path": "scripts/test-review-capability-selection.mjs", "required": true },
|
|
108
|
+
{ "id": "model-release-registry", "ownerRepo": "design-system", "path": "infra/governance/providers/model-release-registry.json", "required": true },
|
|
109
|
+
{ "id": "model-release-registry-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/model-release-registry.schema.json", "required": true },
|
|
110
|
+
{ "id": "model-release-documentation-assertion-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/model-release-documentation-assertion.schema.json", "required": true },
|
|
111
|
+
{ "id": "model-release-documentation-evidence", "ownerRepo": "design-system", "path": "infra/governance/evidence/model-releases/", "required": true },
|
|
112
|
+
{ "id": "model-release-registry-library", "ownerRepo": "design-system", "path": "scripts/lib/model-release-registry.mjs", "required": true },
|
|
113
|
+
{ "id": "deep-audit-model-evidence-plan-library", "ownerRepo": "design-system", "path": "scripts/lib/model-evidence-plan.mjs", "required": true },
|
|
114
|
+
{ "id": "deep-audit-model-api-transport", "ownerRepo": "design-system", "path": "scripts/lib/model-api-transport.mjs", "required": true },
|
|
115
|
+
{ "id": "deep-audit-model-evidence-broker-library", "ownerRepo": "design-system", "path": "scripts/lib/model-evidence-broker.mjs", "required": true },
|
|
116
|
+
{ "id": "deep-audit-model-broker-transcript-library", "ownerRepo": "design-system", "path": "scripts/lib/model-broker-transcript.mjs", "required": true },
|
|
117
|
+
{ "id": "deep-audit-model-broker-shard-result-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/model-broker-shard-result.schema.json", "required": true },
|
|
118
|
+
{ "id": "deep-audit-model-broker-transcript-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/model-broker-transcript.schema.json", "required": true },
|
|
119
|
+
{ "id": "component-dependency-source-inventory", "ownerRepo": "design-system", "path": "scripts/lib/component-dependency-source-inventory.mjs", "required": true },
|
|
120
|
+
{ "id": "component-claim-inventory", "ownerRepo": "design-system", "path": "scripts/lib/component-claim-inventory.mjs", "required": true },
|
|
121
|
+
{ "id": "deep-audit-model-access-receipt-library", "ownerRepo": "design-system", "path": "scripts/lib/model-access-receipt.mjs", "required": true },
|
|
122
|
+
{ "id": "deep-audit-model-audit-contract-library", "ownerRepo": "design-system", "path": "scripts/lib/model-audit-contract.mjs", "required": true },
|
|
123
|
+
{ "id": "deep-audit-review-archive-library", "ownerRepo": "design-system", "path": "scripts/lib/deep-audit-review-archive.mjs", "required": true },
|
|
124
|
+
{ "id": "deep-audit-model-runner", "ownerRepo": "design-system", "path": "scripts/run-model-deep-audit.mjs", "required": true },
|
|
125
|
+
{ "id": "deep-audit-review-archive-tests", "ownerRepo": "design-system", "path": "scripts/test-deep-audit-review-archive.mjs", "required": true },
|
|
126
|
+
{ "id": "deep-audit-model-safety-tests", "ownerRepo": "design-system", "path": "scripts/test-model-deep-audit-safety.mjs", "required": true },
|
|
127
|
+
{ "id": "deep-audit-model-evidence-broker-hardening-tests", "ownerRepo": "design-system", "path": "scripts/test-model-evidence-broker-hardening.mjs", "required": true },
|
|
128
|
+
{ "id": "provider-neutral-review-core-tests", "ownerRepo": "design-system", "path": "scripts/review-core-parity-optin.mjs", "required": true },
|
|
129
|
+
{ "id": "deep-audit-managed-envelope-binding-tests", "ownerRepo": "design-system", "path": "scripts/test-managed-envelope-binding.mjs", "required": true },
|
|
130
|
+
{ "id": "deep-audit-evidence-schema-parity-tests", "ownerRepo": "design-system", "path": "scripts/test-deep-audit-evidence-schema-parity.mjs", "required": true },
|
|
131
|
+
{ "id": "managed-ci-deep-audit-workflow", "ownerRepo": "design-system", "path": ".github/workflows/deep-audit-managed.yml", "required": true },
|
|
132
|
+
{ "id": "managed-ci-activated-workflow-contract", "ownerRepo": "design-system", "path": "scripts/managed-ci-activated-workflow-contract.json", "required": true },
|
|
133
|
+
{ "id": "managed-ci-activated-workflow-contract-schema", "ownerRepo": "design-system", "path": "scripts/schemas/managed-ci-activated-workflow-contract.schema.json", "required": true },
|
|
134
|
+
{ "id": "managed-ci-trusted-execution-plan", "ownerRepo": "design-system", "path": "scripts/managed-ci-trusted-execution-plan.json", "required": true },
|
|
135
|
+
{ "id": "managed-ci-trusted-execution-plan-schema", "ownerRepo": "design-system", "path": "scripts/schemas/managed-ci-trusted-execution-plan.schema.json", "required": true },
|
|
136
|
+
{ "id": "managed-ci-sandbox-receipt-schema", "ownerRepo": "design-system", "path": "scripts/schemas/managed-ci-sandbox-receipt.schema.json", "required": true },
|
|
137
|
+
{ "id": "managed-ci-sandbox-receipt-validator", "ownerRepo": "design-system", "path": "scripts/lib/managed-ci-sandbox-receipt.mjs", "required": true },
|
|
138
|
+
{ "id": "managed-ci-finalized-receipt-schema", "ownerRepo": "design-system", "path": "scripts/schemas/managed-ci-finalized-receipt.schema.json", "required": true },
|
|
139
|
+
{ "id": "managed-ci-authority-finalization-protocol-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/managed-ci-authority-finalization-protocol.schema.json", "required": true },
|
|
140
|
+
{ "id": "managed-ci-model-release-authority-policy", "ownerRepo": "design-system", "path": "infra/governance/providers/managed-ci-model-release-authority-policy.json", "required": true },
|
|
141
|
+
{ "id": "managed-ci-model-release-authority-policy-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/managed-ci-model-release-authority-policy.schema.json", "required": true },
|
|
142
|
+
{ "id": "managed-ci-model-release-authority-binding-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/managed-ci-model-release-authority-binding.schema.json", "required": true },
|
|
143
|
+
{ "id": "managed-ci-model-release-authority-library", "ownerRepo": "design-system", "path": "scripts/lib/model-release-authority.mjs", "required": true },
|
|
144
|
+
{ "id": "managed-ci-model-release-authority-fixture", "ownerRepo": "design-system", "path": "scripts/test-fixtures/model-release-authority-fixture.mjs", "required": true },
|
|
145
|
+
{ "id": "managed-ci-model-release-authority-tests", "ownerRepo": "design-system", "path": "scripts/test-model-release-authority.mjs", "required": true },
|
|
146
|
+
{ "id": "managed-ci-trusted-execution-library", "ownerRepo": "design-system", "path": "scripts/lib/managed-ci-trusted-execution-plan.mjs", "required": true },
|
|
147
|
+
{ "id": "managed-ci-trusted-execution-verifier", "ownerRepo": "design-system", "path": "scripts/verify-managed-ci-trusted-execution.mjs", "required": true },
|
|
148
|
+
{ "id": "managed-ci-oidc-broker-policy", "ownerRepo": "design-system", "path": "infra/governance/providers/managed-ci-oidc-broker-policy.json", "required": true },
|
|
149
|
+
{ "id": "managed-ci-oidc-broker-policy-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/managed-ci-oidc-broker-policy.schema.json", "required": true },
|
|
150
|
+
{ "id": "managed-ci-executor-build-workflow", "ownerRepo": "design-system", "path": ".github/workflows/build-managed-ci-executors.yml", "required": true },
|
|
151
|
+
{ "id": "managed-ci-executor-supply-chain-policy", "ownerRepo": "design-system", "path": "infra/governance/providers/managed-ci-executor-supply-chain.json", "required": true },
|
|
152
|
+
{ "id": "managed-ci-executor-supply-chain-policy-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/managed-ci-executor-supply-chain.schema.json", "required": true },
|
|
153
|
+
{ "id": "managed-ci-trusted-authority-policy", "ownerRepo": "design-system", "path": "infra/governance/providers/managed-ci-trusted-authority-policy.json", "required": true },
|
|
154
|
+
{ "id": "managed-ci-trusted-authority-policy-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/managed-ci-trusted-authority-policy.schema.json", "required": true },
|
|
155
|
+
{ "id": "managed-ci-executor-source-corpus", "ownerRepo": "design-system", "path": "infra/governance/managed-ci-executor/", "required": true },
|
|
156
|
+
{ "id": "managed-ci-class-adapter-source-corpus", "ownerRepo": "design-system", "path": "infra/governance/managed-ci-class-adapters/", "required": true },
|
|
157
|
+
{ "id": "managed-ci-trusted-execution-tests", "ownerRepo": "design-system", "path": "scripts/test-managed-ci-trusted-execution.mjs", "required": true },
|
|
158
|
+
{ "id": "external-activation-library", "ownerRepo": "design-system", "path": "infra/governance/lib/external-activation.mjs", "required": true },
|
|
159
|
+
{ "id": "external-activation-tests", "ownerRepo": "design-system", "path": "infra/governance/test/external-activation.test.mjs", "required": true },
|
|
160
|
+
{ "id": "external-operator-library", "ownerRepo": "design-system", "path": "infra/governance/lib/external-operator.mjs", "required": true },
|
|
161
|
+
{ "id": "external-operator-cli", "ownerRepo": "design-system", "path": "infra/governance/bin/external-operator.mjs", "required": true },
|
|
162
|
+
{ "id": "external-operator-tests", "ownerRepo": "design-system", "path": "infra/governance/test/external-operator.test.mjs", "required": true },
|
|
163
|
+
{ "id": "external-ledger-writer-workflow", "ownerRepo": "design-system", "path": ".github/workflows/external-ledger-writer.yml", "required": true },
|
|
164
|
+
{ "id": "external-ledger-writer-library", "ownerRepo": "design-system", "path": "infra/governance/lib/external-ledger-writer.mjs", "required": true },
|
|
165
|
+
{ "id": "external-ledger-writer-cli", "ownerRepo": "design-system", "path": "infra/governance/bin/external-ledger-writer.mjs", "required": true },
|
|
166
|
+
{ "id": "external-ledger-writer-tests", "ownerRepo": "design-system", "path": "infra/governance/test/external-ledger-writer.test.mjs", "required": true },
|
|
167
|
+
{ "id": "external-surface-import-receipt-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/external-surface-import-receipt.schema.json", "required": true },
|
|
168
|
+
{ "id": "external-runtime-certification-proposal-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/external-runtime-certification-proposal.schema.json", "required": true },
|
|
169
|
+
{ "id": "provider-review-capability-certification-proposal-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/provider-review-capability-certification-proposal.schema.json", "required": true },
|
|
170
|
+
{ "id": "external-ledger-transaction-handoff-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/external-ledger-transaction-handoff.schema.json", "required": true },
|
|
171
|
+
{ "id": "external-ledger-writer-dispatch-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/external-ledger-writer-dispatch.schema.json", "required": true },
|
|
172
|
+
{ "id": "external-ledger-writer-plan-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/external-ledger-writer-plan.schema.json", "required": true },
|
|
173
|
+
{ "id": "external-ledger-writer-artifact-identity-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/external-ledger-artifact-identity.schema.json", "required": true },
|
|
174
|
+
{ "id": "external-ledger-writer-receipt-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/external-ledger-writer-receipt.schema.json", "required": true },
|
|
175
|
+
{ "id": "external-activation-signing-request-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/external-activation-signing-request.schema.json", "required": true },
|
|
176
|
+
{ "id": "external-activation-signature-bundle-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/external-activation-signature-bundle.schema.json", "required": true },
|
|
177
|
+
{ "id": "external-activation-proposal-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/external-activation-proposal.schema.json", "required": true },
|
|
178
|
+
{ "id": "external-operator-block-result-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/external-operator-block-result.schema.json", "required": true },
|
|
179
|
+
{ "id": "consumer-upgrade-protocol", "ownerRepo": "design-system", "path": "infra/governance/consumer-upgrade-protocol.json", "required": true },
|
|
180
|
+
{ "id": "consumer-upgrade-protocol-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/consumer-upgrade-protocol.schema.json", "required": true },
|
|
181
|
+
{ "id": "consumer-upgrade-protocol-library", "ownerRepo": "design-system", "path": "infra/governance/lib/consumer-upgrade-protocol.mjs", "required": true },
|
|
182
|
+
{ "id": "governance-runtime-dependency-closure-library", "ownerRepo": "design-system", "path": "scripts/lib/runtime-dependency-closure.mjs", "required": true },
|
|
183
|
+
{ "id": "consumer-control-plane-policy-library", "ownerRepo": "design-system", "path": "scripts/lib/consumer-control-plane-policy.mjs", "required": true },
|
|
184
|
+
{ "id": "consumer-control-plane-cli", "ownerRepo": "design-system", "path": "infra/governance/bin/consumerctl.mjs", "required": true },
|
|
185
|
+
{ "id": "consumer-control-plane-tests", "ownerRepo": "design-system", "path": "infra/governance/test/consumerctl.test.mjs", "required": true },
|
|
186
|
+
{ "id": "consumer-control-plane-baseline-receipt-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/consumer-control-plane-baseline-receipt.schema.json", "required": true },
|
|
187
|
+
{ "id": "consumer-control-plane-update-plan-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/consumer-control-plane-update-plan.schema.json", "required": true },
|
|
188
|
+
{ "id": "consumer-control-plane-update-snapshot-verification-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/consumer-control-plane-update-snapshot-verification.schema.json", "required": true },
|
|
189
|
+
{ "id": "consumer-control-plane-update-readback-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/consumer-control-plane-update-readback.schema.json", "required": true },
|
|
190
|
+
{ "id": "consumer-control-plane-update-readback-verification-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/consumer-control-plane-update-readback-verification.schema.json", "required": true },
|
|
191
|
+
{ "id": "consumer-control-plane-update-acceptance-proposal-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/consumer-control-plane-update-acceptance-proposal.schema.json", "required": true },
|
|
192
|
+
{ "id": "consumer-managed-repos-inventory", "ownerRepo": "design-system", "path": "infra/governance/inventory/managed-repos.json", "required": true },
|
|
193
|
+
{ "id": "consumer-managed-repository-ownership-library", "ownerRepo": "design-system", "path": "infra/governance/lib/managed-repository-ownership.mjs", "required": true },
|
|
194
|
+
{ "id": "consumer-repository-path-topology-library", "ownerRepo": "design-system", "path": "infra/governance/lib/repository-path-topology.mjs", "required": true },
|
|
195
|
+
{ "id": "consumer-repository-path-topology-tests", "ownerRepo": "design-system", "path": "infra/governance/test/repository-path-topology.test.mjs", "required": true },
|
|
196
|
+
{ "id": "consumer-bootstrap-library", "ownerRepo": "design-system", "path": "infra/governance/lib/consumer-bootstrap.mjs", "required": true },
|
|
197
|
+
{ "id": "consumer-bootstrap-plan-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/consumer-bootstrap-plan.schema.json", "required": true },
|
|
198
|
+
{ "id": "consumer-bootstrap-snapshot-verification-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/consumer-bootstrap-snapshot-verification.schema.json", "required": true },
|
|
199
|
+
{ "id": "consumer-bootstrap-readback-verification-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/consumer-bootstrap-readback-verification.schema.json", "required": true },
|
|
200
|
+
{ "id": "consumer-bootstrap-promotion-proposal-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/consumer-bootstrap-promotion-proposal.schema.json", "required": true },
|
|
201
|
+
{ "id": "consumer-bootstrap-managed-repos-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/managed-repos.schema.json", "required": true },
|
|
202
|
+
{ "id": "consumer-fanout-dispatch-evidence-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/consumer-fanout-dispatch-evidence.schema.json", "required": true },
|
|
203
|
+
{ "id": "consumer-fanout-review-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/consumer-fanout-review.schema.json", "required": true },
|
|
204
|
+
{ "id": "staged-rollout-plan", "ownerRepo": "design-system", "path": "infra/governance/staged-rollout-plan.json", "required": true },
|
|
205
|
+
{ "id": "staged-rollout-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/staged-rollout.schema.json", "required": true },
|
|
206
|
+
{ "id": "staged-rollout-library", "ownerRepo": "design-system", "path": "infra/governance/lib/staged-rollout.mjs", "required": true },
|
|
207
|
+
{ "id": "staged-rollout-cli", "ownerRepo": "design-system", "path": "infra/governance/bin/staged-rollout.mjs", "required": true },
|
|
208
|
+
{ "id": "staged-rollout-tests", "ownerRepo": "design-system", "path": "infra/governance/test/staged-rollout.test.mjs", "required": true },
|
|
209
|
+
{ "id": "staged-rollout-poison-cases", "ownerRepo": "design-system", "path": "infra/governance/test/fixtures/staged-rollout/poison-cases.json", "required": true },
|
|
210
|
+
{ "id": "provider-neutral-residue-guard", "ownerRepo": "design-system", "path": "scripts/check-provider-neutral-ssot-residue.mjs", "required": true },
|
|
211
|
+
{ "id": "provider-neutral-residue-guard-tests", "ownerRepo": "design-system", "path": "scripts/test-check-provider-neutral-ssot-residue.mjs", "required": true },
|
|
212
|
+
{ "id": "provider-skill-semantics", "ownerRepo": "design-system", "path": "scripts/provider-skill-semantics.json", "required": true },
|
|
213
|
+
{ "id": "provider-skill-semantics-schema", "ownerRepo": "design-system", "path": "scripts/schemas/provider-skill-semantics.schema.json", "required": true },
|
|
214
|
+
{ "id": "provider-compatibility-matrix", "ownerRepo": "design-system", "path": "infra/governance/providers/compatibility-matrix.json", "required": true },
|
|
215
|
+
{ "id": "provider-compatibility-matrix-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/compatibility-matrix.schema.json", "required": true },
|
|
216
|
+
{ "id": "provider-compatibility-library", "ownerRepo": "design-system", "path": "infra/governance/lib/provider-compatibility.mjs", "required": true },
|
|
217
|
+
{ "id": "provider-cli-toolchain-authority", "ownerRepo": "design-system", "path": "infra/governance/providers/provider-cli-toolchain.json", "required": true },
|
|
218
|
+
{ "id": "provider-cli-toolchain-exact-lock", "ownerRepo": "design-system", "path": "infra/governance/providers/provider-cli-toolchain.package-lock.json", "required": true },
|
|
219
|
+
{ "id": "provider-cli-toolchain-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/provider-cli-toolchain.schema.json", "required": true },
|
|
220
|
+
{ "id": "provider-runtime-conformance-profile", "ownerRepo": "design-system", "path": "infra/governance/providers/runtime-conformance.json", "required": true },
|
|
221
|
+
{ "id": "provider-runtime-conformance-profile-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/runtime-conformance-profile.schema.json", "required": true },
|
|
222
|
+
{ "id": "provider-role-surface-policy", "ownerRepo": "design-system", "path": "infra/governance/providers/role-surface-policy.json", "required": true },
|
|
223
|
+
{ "id": "provider-role-surface-policy-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/role-surface-policy.schema.json", "required": true },
|
|
224
|
+
{ "id": "provider-role-surface-policy-library", "ownerRepo": "design-system", "path": "infra/governance/lib/role-surface-policy.mjs", "required": true },
|
|
225
|
+
{ "id": "provider-surface-certifications", "ownerRepo": "design-system", "path": "infra/governance/providers/certifications.json", "carrierProjection": "provider-certification-state-v1", "required": true },
|
|
226
|
+
{ "id": "provider-surface-certifications-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/provider-surface-certification.schema.json", "required": true },
|
|
227
|
+
{ "id": "provider-surface-tests", "ownerRepo": "design-system", "path": "infra/governance/test/provider-surface.test.mjs", "required": true },
|
|
228
|
+
{ "id": "governance-harness-registry", "ownerRepo": "design-system", "path": "infra/governance/providers/harness-registry.json", "required": true },
|
|
229
|
+
{ "id": "governance-harness-registry-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/harness-registry.schema.json", "required": true },
|
|
230
|
+
{ "id": "governance-harness-authority-contracts", "ownerRepo": "design-system", "path": "infra/governance/providers/harness-authority-contracts.json", "required": true },
|
|
231
|
+
{ "id": "governance-harness-authority-contracts-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/harness-authority-contracts.schema.json", "required": true },
|
|
232
|
+
{ "id": "governance-harness-registry-library", "ownerRepo": "design-system", "path": "infra/governance/lib/harness-registry.mjs", "required": true },
|
|
233
|
+
{ "id": "governance-harness-source-inventory", "ownerRepo": "design-system", "path": "infra/governance/providers/harness-source-inventory.json", "required": true },
|
|
234
|
+
{ "id": "governance-harness-source-inventory-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/harness-source-inventory.schema.json", "required": true },
|
|
235
|
+
{ "id": "governance-harness-source-inventory-library", "ownerRepo": "design-system", "path": "infra/governance/lib/harness-source-inventory.mjs", "required": true },
|
|
236
|
+
{ "id": "governance-harness-source-inventory-tests", "ownerRepo": "design-system", "path": "infra/governance/test/harness-source-inventory.test.mjs", "required": true },
|
|
237
|
+
{ "id": "governance-harness-non-governance-exclusions", "ownerRepo": "design-system", "path": "infra/governance/providers/harness-non-governance-exclusions.json", "required": true },
|
|
238
|
+
{ "id": "governance-harness-non-governance-exclusions-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/harness-non-governance-exclusions.schema.json", "required": true },
|
|
239
|
+
{ "id": "governance-harness-runner-library", "ownerRepo": "design-system", "path": "infra/governance/lib/harness-runner.mjs", "required": true },
|
|
240
|
+
{ "id": "governance-playwright-runtime-library", "ownerRepo": "design-system", "path": "infra/governance/lib/playwright-runtime.mjs", "required": true },
|
|
241
|
+
{ "id": "governance-playwright-runtime-tests", "ownerRepo": "design-system", "path": "infra/governance/test/playwright-runtime.test.mjs", "required": true },
|
|
242
|
+
{ "id": "governance-playwright-setup-cli", "ownerRepo": "design-system", "path": "scripts/ensure-playwright-browsers.mjs", "required": true },
|
|
243
|
+
{ "id": "governance-hook-setup-cli", "ownerRepo": "design-system", "path": "scripts/setup-governance-hooks.mjs", "required": true },
|
|
244
|
+
{ "id": "governance-hook-setup-tests", "ownerRepo": "design-system", "path": "scripts/test-setup-governance-hooks.mjs", "required": true },
|
|
245
|
+
{ "id": "governance-authority-setup-cli", "ownerRepo": "design-system", "path": "scripts/setup-authority-governance.mjs", "required": true },
|
|
246
|
+
{ "id": "governance-authority-setup-tests", "ownerRepo": "design-system", "path": "infra/governance/test/authority-setup.test.mjs", "required": true },
|
|
247
|
+
{ "id": "governance-harness-runner-cli", "ownerRepo": "design-system", "path": "infra/governance/bin/run-harnesses.mjs", "required": true },
|
|
248
|
+
{ "id": "governance-harness-suite-runner-cli", "ownerRepo": "design-system", "path": "infra/governance/bin/run-harness-suite.mjs", "required": true },
|
|
249
|
+
{ "id": "governance-harness-registry-tests", "ownerRepo": "design-system", "path": "infra/governance/test/harness-registry.test.mjs", "required": true },
|
|
250
|
+
{ "id": "governance-harness-runner-tests", "ownerRepo": "design-system", "path": "infra/governance/test/harness-runner.test.mjs", "required": true },
|
|
251
|
+
{ "id": "gate-meta-test-exclusions", "ownerRepo": "design-system", "path": "scripts/gate-meta-test-exclusions.json", "required": true },
|
|
252
|
+
{ "id": "gate-meta-test-inventory-library", "ownerRepo": "design-system", "path": "scripts/lib/gate-meta-test-inventory.mjs", "required": true },
|
|
253
|
+
{ "id": "gate-meta-test-inventory-tests", "ownerRepo": "design-system", "path": "scripts/test-gate-meta-test-exclusion-inventory.mjs", "required": true },
|
|
254
|
+
{ "id": "gate-meta-test-runner", "ownerRepo": "design-system", "path": "scripts/run-gate-meta-tests.mjs", "required": true },
|
|
255
|
+
{ "id": "gate-meta-test-isolation-tests", "ownerRepo": "design-system", "path": "scripts/test-run-gate-meta-tests-isolation.mjs", "required": true },
|
|
256
|
+
{ "id": "bundle-size-gate", "ownerRepo": "design-system", "path": "scripts/check-bundle-size.mjs", "required": true },
|
|
257
|
+
{ "id": "bundle-size-gate-tests", "ownerRepo": "design-system", "path": "scripts/test-check-bundle-size.mjs", "required": true },
|
|
258
|
+
{ "id": "governance-infrastructure-runbook", "ownerRepo": "design-system", "path": "infra/governance/README.md", "required": true },
|
|
259
|
+
{ "id": "github-repository-governance", "ownerRepo": "design-system", "path": ".github/", "required": true },
|
|
260
|
+
{ "id": "repository-ignore-boundary", "ownerRepo": "design-system", "path": ".gitignore", "required": true },
|
|
261
|
+
{ "id": "development-container-contract", "ownerRepo": "design-system", "path": ".devcontainer/", "required": true },
|
|
262
|
+
{ "id": "governance-precommit-entrypoint", "ownerRepo": "design-system", "path": ".husky/pre-commit", "required": true },
|
|
263
|
+
{ "id": "governance-root-script-registry", "ownerRepo": "design-system", "path": "package.json", "required": true },
|
|
264
|
+
{ "id": "workspace-lockfile", "ownerRepo": "design-system", "path": "package-lock.json", "required": true },
|
|
265
|
+
{ "id": "changeset-release-policy", "ownerRepo": "design-system", "path": ".changeset/config.json", "required": true },
|
|
266
|
+
{ "id": "npm-release-policy", "ownerRepo": "design-system", "path": ".npmrc", "required": true },
|
|
267
|
+
{ "id": "product-seed-package-contract", "ownerRepo": "design-system", "path": "apps/template/package.json", "required": true },
|
|
268
|
+
{ "id": "design-system-package-contract", "ownerRepo": "design-system", "path": "packages/design-system/package.json", "required": true },
|
|
269
|
+
{ "id": "design-system-utility-registry", "ownerRepo": "design-system", "path": "packages/design-system/src/tokens/utility-registry.json", "required": true },
|
|
270
|
+
{ "id": "design-system-utility-registry-schema", "ownerRepo": "design-system", "path": "packages/design-system/src/tokens/utility-registry.schema.json", "required": true },
|
|
271
|
+
{ "id": "design-system-migration-tools", "ownerRepo": "design-system", "path": "packages/design-system/tools", "required": true },
|
|
272
|
+
{ "id": "eslint-plugin-package-contract", "ownerRepo": "design-system", "path": "packages/eslint-plugin/package.json", "required": true },
|
|
273
|
+
{ "id": "storybook-package-contract", "ownerRepo": "design-system", "path": "packages/storybook-config/package.json", "required": true },
|
|
274
|
+
{ "id": "governance-package-contract", "ownerRepo": "design-system", "path": "packages/governance/package.json", "required": true },
|
|
275
|
+
{ "id": "product-template-package-contract", "ownerRepo": "design-system", "path": "template/ds-product-template/package.json", "required": true },
|
|
276
|
+
{ "id": "product-template-npm-policy", "ownerRepo": "design-system", "path": "template/ds-product-template/.npmrc", "required": true },
|
|
277
|
+
{ "id": "product-template-onboarding-banner", "ownerRepo": "design-system", "path": "template/ds-product-template/.devcontainer/onboard-banner.sh", "required": true },
|
|
278
|
+
{ "id": "product-template-post-create", "ownerRepo": "design-system", "path": "template/ds-product-template/.devcontainer/post-create.mjs", "required": true },
|
|
279
|
+
{ "id": "product-template-audit-workflow", "ownerRepo": "design-system", "path": "template/ds-product-template/.github/workflows/audit.yml", "required": true },
|
|
280
|
+
{ "id": "product-template-governance-anchor-workflow", "ownerRepo": "design-system", "path": "template/ds-product-template/.github/workflows/governance-anchor.yml", "required": true },
|
|
281
|
+
{ "id": "product-template-upgrade-workflow", "ownerRepo": "design-system", "path": "template/ds-product-template/.github/workflows/sync-design-system.yml", "required": true },
|
|
282
|
+
{ "id": "product-template-readme", "ownerRepo": "design-system", "path": "template/ds-product-template/README.md", "required": true },
|
|
283
|
+
{ "id": "product-template-documentation", "ownerRepo": "design-system", "path": "template/ds-product-template/docs", "required": true },
|
|
284
|
+
{ "id": "governance-build-graph-definition", "ownerRepo": "design-system", "path": "scripts/governance-build-graph.json", "required": true },
|
|
285
|
+
{ "id": "governance-build-graph-runner", "ownerRepo": "design-system", "path": "scripts/governance-build-graph.mjs", "required": true },
|
|
286
|
+
{ "id": "governance-build-graph-schema", "ownerRepo": "design-system", "path": "scripts/schemas/governance-build-graph.schema.json", "required": true },
|
|
287
|
+
{ "id": "governance-build-graph-tests", "ownerRepo": "design-system", "path": "scripts/test-governance-build-graph.mjs", "required": true },
|
|
288
|
+
{ "id": "protected-root-classification-inventory", "ownerRepo": "design-system", "path": "infra/governance/protected-root-classification.json", "required": true },
|
|
289
|
+
{ "id": "protected-root-classification-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/protected-root-classification.schema.json", "required": true },
|
|
290
|
+
{ "id": "protected-root-classification-validator", "ownerRepo": "design-system", "path": "scripts/lib/governance-protected-roots.mjs", "required": true },
|
|
291
|
+
{ "id": "protected-root-classification-tests", "ownerRepo": "design-system", "path": "scripts/test-governance-protected-roots.mjs", "required": true },
|
|
292
|
+
{ "id": "plugin-alias-registry", "ownerRepo": "design-system", "path": "packages/governance/canonical/plugin-aliases.json", "required": true },
|
|
293
|
+
{ "id": "plugin-alias-registry-schema", "ownerRepo": "design-system", "path": "packages/governance/canonical/schemas/plugin-aliases.schema.json", "required": true },
|
|
294
|
+
{ "id": "plugin-alias-contract", "ownerRepo": "design-system", "path": "scripts/lib/plugin-alias-contract.mjs", "required": true },
|
|
295
|
+
{ "id": "plugin-alias-generator", "ownerRepo": "design-system", "path": "scripts/sync-plugin-aliases.mjs", "required": true },
|
|
296
|
+
{ "id": "plugin-alias-contract-tests", "ownerRepo": "design-system", "path": "scripts/test-plugin-alias-contract.mjs", "required": true },
|
|
297
|
+
{ "id": "plugin-alias-generator-tests", "ownerRepo": "design-system", "path": "scripts/test-sync-plugin-aliases.mjs", "required": true },
|
|
298
|
+
{ "id": "governance-package-readme", "ownerRepo": "design-system", "path": "packages/governance/README.md", "required": true },
|
|
299
|
+
{ "id": "governance-package-cli-corpus", "ownerRepo": "design-system", "path": "packages/governance/bin/", "required": true },
|
|
300
|
+
{ "id": "governance-package-runtime-corpus", "ownerRepo": "design-system", "path": "packages/governance/src/", "required": true },
|
|
301
|
+
{ "id": "governance-package-test-corpus", "ownerRepo": "design-system", "path": "packages/governance/test/", "required": true },
|
|
302
|
+
{ "id": "governance-baseline-authority", "ownerRepo": "design-system", "path": "infra/governance/baseline/", "required": true },
|
|
303
|
+
{ "id": "governance-control-plane-clis", "ownerRepo": "design-system", "path": "infra/governance/bin/", "required": true },
|
|
304
|
+
{ "id": "workflow-identity-manager", "ownerRepo": "design-system", "path": "infra/governance/bin/sync-workflow-identities.mjs", "required": true },
|
|
305
|
+
{ "id": "workflow-identity-proposal-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/workflow-identity-proposal.schema.json", "required": true },
|
|
306
|
+
{ "id": "workflow-identity-adversarial-tests", "ownerRepo": "design-system", "path": "infra/governance/test/workflow-identity-sync.test.mjs", "required": true },
|
|
307
|
+
{ "id": "governance-github-desired-state", "ownerRepo": "design-system", "path": "infra/governance/desired/", "required": true },
|
|
308
|
+
{ "id": "governance-fleet-inventory", "ownerRepo": "design-system", "path": "infra/governance/inventory/", "required": true },
|
|
309
|
+
{ "id": "governance-control-plane-libraries", "ownerRepo": "design-system", "path": "infra/governance/lib/", "required": true },
|
|
310
|
+
{ "id": "governance-control-plane-schemas", "ownerRepo": "design-system", "path": "infra/governance/schemas/", "required": true },
|
|
311
|
+
{ "id": "governance-control-plane-tests", "ownerRepo": "design-system", "path": "infra/governance/test/", "required": true },
|
|
312
|
+
{ "id": "governance-runtime-ignore-policy", "ownerRepo": "design-system", "path": "infra/governance/runtime/.gitignore", "required": true },
|
|
313
|
+
{ "id": "governance-trust-registry-corpus", "ownerRepo": "design-system", "path": "infra/governance/trust/", "required": true },
|
|
314
|
+
{ "id": "governance-waivers", "ownerRepo": "design-system", "path": "infra/governance/waivers.json", "required": true },
|
|
315
|
+
{ "id": "provider-lifecycle-ledger", "ownerRepo": "design-system", "path": "packages/governance/canonical/provider-lifecycle.json", "required": true },
|
|
316
|
+
{ "id": "provider-lifecycle-schema", "ownerRepo": "design-system", "path": "packages/governance/canonical/schemas/provider-lifecycle.schema.json", "required": true },
|
|
317
|
+
{ "id": "provider-lifecycle-validator", "ownerRepo": "design-system", "path": "scripts/lib/provider-lifecycle.mjs", "required": true },
|
|
318
|
+
{ "id": "managed-host-assurance-desired", "ownerRepo": "design-system", "path": "infra/governance/providers/managed-host-assurance.json", "required": true },
|
|
319
|
+
{ "id": "managed-host-assurance-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/managed-host-assurance.schema.json", "required": true },
|
|
320
|
+
{ "id": "managed-host-assurance-evidence-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/managed-host-assurance-evidence.schema.json", "required": true },
|
|
321
|
+
{ "id": "managed-host-effective-readback-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/managed-host-effective-readback.schema.json", "required": true },
|
|
322
|
+
{ "id": "managed-host-codex-bundle-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/codex-managed-hook-bundle.schema.json", "required": true },
|
|
323
|
+
{ "id": "managed-host-deployment-contracts", "ownerRepo": "design-system", "path": "infra/governance/managed-host/", "required": true },
|
|
324
|
+
{ "id": "managed-host-verifier-library", "ownerRepo": "design-system", "path": "infra/governance/lib/managed-host-assurance.mjs", "required": true },
|
|
325
|
+
{ "id": "managed-host-verifier-cli", "ownerRepo": "design-system", "path": "infra/governance/bin/verify-managed-host-assurance.mjs", "required": true },
|
|
326
|
+
{ "id": "managed-host-adversarial-tests", "ownerRepo": "design-system", "path": "infra/governance/test/managed-host-assurance.test.mjs", "required": true },
|
|
327
|
+
{ "id": "managed-host-release-binding", "ownerRepo": "design-system", "path": "infra/governance/release-rings.json", "required": true },
|
|
328
|
+
{ "id": "managed-host-external-activation", "ownerRepo": "design-system", "path": "infra/governance/external-activation-requirements.json", "carrierProjection": "external-activation-state-v1", "required": true },
|
|
329
|
+
{ "id": "external-activation-catalog-policy", "ownerRepo": "design-system", "path": "infra/governance/external-activation-policy.json", "required": true },
|
|
330
|
+
{ "id": "external-activation-catalog-policy-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/external-activation-policy.schema.json", "required": true },
|
|
331
|
+
{ "id": "managed-host-external-activation-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/external-activation-requirements.schema.json", "required": true },
|
|
332
|
+
{ "id": "github-mutation-boundary-contract", "ownerRepo": "design-system", "path": "infra/governance/providers/github-mutation-boundary-contract.json", "required": true },
|
|
333
|
+
{ "id": "github-mutation-boundary-contract-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/github-mutation-boundary-contract.schema.json", "required": true },
|
|
334
|
+
{ "id": "github-mutation-boundary-library", "ownerRepo": "design-system", "path": "scripts/lib/github-mutation-boundary.mjs", "required": true },
|
|
335
|
+
{ "id": "github-mutation-boundary-verifier", "ownerRepo": "design-system", "path": "scripts/verify-mirror-activation-boundary.mjs", "required": true },
|
|
336
|
+
{ "id": "github-mutation-boundary-tests", "ownerRepo": "design-system", "path": "scripts/test-verify-mirror-activation-boundary.mjs", "required": true },
|
|
337
|
+
{ "id": "claude-managed-plugin-marketplace", "ownerRepo": "design-system", "path": ".claude-plugin/marketplace.json", "required": true },
|
|
338
|
+
{ "id": "claude-managed-plugin-manifest", "ownerRepo": "design-system", "path": ".claude-plugin/plugin.json", "required": true },
|
|
339
|
+
{ "id": "issuer-registry", "ownerRepo": "design-system", "path": "infra/governance/trust/issuers.json", "required": true },
|
|
340
|
+
{ "id": "issuer-registry-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/issuer-registry.schema.json", "required": true },
|
|
341
|
+
{ "id": "issuer-registry-verifier", "ownerRepo": "design-system", "path": "infra/governance/lib/issuer-registry.mjs", "required": true },
|
|
342
|
+
{ "id": "visual-baseline-review-policy", "ownerRepo": "design-system", "path": "infra/governance/visual-baseline-review-policy.json", "required": true },
|
|
343
|
+
{ "id": "visual-baseline-review-policy-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/visual-baseline-review-policy.schema.json", "required": true },
|
|
344
|
+
{ "id": "privileged-trust-root-policy", "ownerRepo": "design-system", "path": "infra/governance/privileged-trust-roots.json", "required": true },
|
|
345
|
+
{ "id": "privileged-trust-root-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/privileged-trust-roots.schema.json", "required": true },
|
|
346
|
+
{ "id": "privileged-change-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/privileged-change-authorization.schema.json", "required": true },
|
|
347
|
+
{ "id": "privileged-change-verifier", "ownerRepo": "design-system", "path": "scripts/verify-privileged-change.mjs", "required": true },
|
|
348
|
+
{ "id": "governance-anchor-workflow", "ownerRepo": "design-system", "path": ".github/workflows/governance-anchor.yml", "required": true },
|
|
349
|
+
{ "id": "governance-anchor-preflight", "ownerRepo": "design-system", "path": "scripts/governance-anchor-preflight.mjs", "required": true },
|
|
350
|
+
{ "id": "governance-anchor-preflight-tests", "ownerRepo": "design-system", "path": "scripts/test-governance-anchor-preflight.mjs", "required": true },
|
|
351
|
+
{ "id": "release-tag-authorization-policy", "ownerRepo": "design-system", "path": "infra/governance/release-tag-authorization-policy.json", "required": true },
|
|
352
|
+
{ "id": "release-tag-authorization-policy-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/release-tag-authorization-policy.schema.json", "required": true },
|
|
353
|
+
{ "id": "release-tag-authorization-envelope-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/release-tag-authorization.schema.json", "required": true },
|
|
354
|
+
{ "id": "release-tag-authorization-verifier", "ownerRepo": "design-system", "path": "infra/governance/lib/release-tag-authorization.mjs", "required": true },
|
|
355
|
+
{ "id": "release-tag-authorization-cli", "ownerRepo": "design-system", "path": "scripts/release-tag-authorization.mjs", "required": true },
|
|
356
|
+
{ "id": "signed-release-tag-verifier", "ownerRepo": "design-system", "path": "infra/governance/lib/signed-release-tag.mjs", "required": true },
|
|
357
|
+
{ "id": "release-trust-preflight-verifier", "ownerRepo": "design-system", "path": "infra/governance/lib/release-trust-preflight.mjs", "required": true },
|
|
358
|
+
{ "id": "release-trust-preflight-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/release-trust-preflight-evidence.schema.json", "required": true },
|
|
359
|
+
{ "id": "release-trust-preflight-cli", "ownerRepo": "design-system", "path": "scripts/release-trust-preflight.mjs", "required": true },
|
|
360
|
+
{ "id": "release-workflow", "ownerRepo": "design-system", "path": ".github/workflows/release.yml", "required": true },
|
|
361
|
+
{ "id": "release-finalizer-workflow", "ownerRepo": "design-system", "path": ".github/workflows/release-finalize.yml", "required": true },
|
|
362
|
+
{ "id": "release-bom-builder", "ownerRepo": "design-system", "path": "scripts/build-release-bom.mjs", "required": true },
|
|
363
|
+
{ "id": "release-bom-contract", "ownerRepo": "design-system", "path": "scripts/release-bom-contract.mjs", "required": true },
|
|
364
|
+
{ "id": "release-set-contract", "ownerRepo": "design-system", "path": "scripts/release-set.mjs", "required": true },
|
|
365
|
+
{ "id": "release-npm-library", "ownerRepo": "design-system", "path": "scripts/release-npm-lib.mjs", "required": true },
|
|
366
|
+
{ "id": "release-npm-stage-writer", "ownerRepo": "design-system", "path": "scripts/release-npm-publish.mjs", "required": true },
|
|
367
|
+
{ "id": "release-npm-approver", "ownerRepo": "design-system", "path": "scripts/release-npm-approve.mjs", "required": true },
|
|
368
|
+
{ "id": "release-npm-promoter", "ownerRepo": "design-system", "path": "scripts/release-npm-promote.mjs", "required": true },
|
|
369
|
+
{ "id": "release-npm-rejector", "ownerRepo": "design-system", "path": "scripts/release-npm-reject.mjs", "required": true },
|
|
370
|
+
{ "id": "release-npm-recovery", "ownerRepo": "design-system", "path": "scripts/release-npm-stage-recover.mjs", "required": true },
|
|
371
|
+
{ "id": "release-stage-run-identity", "ownerRepo": "design-system", "path": "scripts/release-stage-run-identity.mjs", "required": true },
|
|
372
|
+
{ "id": "release-finalization-receipt-writer", "ownerRepo": "design-system", "path": "scripts/release-npm-finalization-receipt.mjs", "required": true },
|
|
373
|
+
{ "id": "release-finalization-verifier", "ownerRepo": "design-system", "path": "scripts/release-npm-finalize-verify.mjs", "required": true },
|
|
374
|
+
{ "id": "release-github-release-writer", "ownerRepo": "design-system", "path": "scripts/release-github-release.mjs", "required": true },
|
|
375
|
+
{ "id": "release-remote-tag-guard", "ownerRepo": "design-system", "path": "scripts/release-remote-tag.mjs", "required": true },
|
|
376
|
+
{ "id": "release-stage-receipt-schema", "ownerRepo": "design-system", "path": "scripts/schemas/npm-stage-receipt.schema.json", "required": true },
|
|
377
|
+
{ "id": "release-finalization-receipt-schema", "ownerRepo": "design-system", "path": "scripts/schemas/npm-finalization-receipt.schema.json", "required": true },
|
|
378
|
+
{ "id": "release-supply-chain-tests", "ownerRepo": "design-system", "path": "scripts/test-release-bom.mjs", "required": true },
|
|
379
|
+
{ "id": "release-workflow-security-auditor", "ownerRepo": "design-system", "path": "scripts/audit-workflow-security.mjs", "required": true },
|
|
380
|
+
{ "id": "release-workflow-security-tests", "ownerRepo": "design-system", "path": "scripts/test-workflow-security.mjs", "required": true },
|
|
381
|
+
{ "id": "release-runbook", "ownerRepo": "design-system", "path": "docs/npm-native-staged-release.md", "required": true },
|
|
382
|
+
{ "id": "issuer-registry-adversarial-tests", "ownerRepo": "design-system", "path": "infra/governance/test/issuer-registry.test.mjs", "required": true },
|
|
383
|
+
{ "id": "release-tag-authorization-adversarial-tests", "ownerRepo": "design-system", "path": "infra/governance/test/release-tag-authorization.test.mjs", "required": true },
|
|
384
|
+
{ "id": "release-trust-preflight-adversarial-tests", "ownerRepo": "design-system", "path": "infra/governance/test/release-trust-preflight.test.mjs", "required": true },
|
|
385
|
+
{ "id": "signed-release-tag-adversarial-tests", "ownerRepo": "design-system", "path": "infra/governance/test/signed-release-tag.test.mjs", "required": true },
|
|
386
|
+
{ "id": "privileged-change-adversarial-tests", "ownerRepo": "design-system", "path": "scripts/test-privileged-change-authorization.mjs", "required": true },
|
|
387
|
+
{ "id": "exact-artifact-attestation-schema", "ownerRepo": "design-system", "path": "packages/governance/canonical/schemas/attestation.schema.json", "required": true },
|
|
388
|
+
{ "id": "exact-artifact-diagnostic-schema", "ownerRepo": "design-system", "path": "packages/governance/canonical/schemas/diagnostic.schema.json", "required": true },
|
|
389
|
+
{ "id": "exact-artifact-lock-schema", "ownerRepo": "design-system", "path": "packages/governance/canonical/schemas/lock.schema.json", "required": true },
|
|
390
|
+
{ "id": "exact-artifact-upgrade-plan-schema", "ownerRepo": "design-system", "path": "packages/governance/canonical/schemas/upgrade-plan.schema.json", "required": true },
|
|
391
|
+
{ "id": "exact-devcontainer-config", "ownerRepo": "design-system", "path": ".devcontainer/devcontainer.json", "required": true },
|
|
392
|
+
{ "id": "exact-devcontainer-post-create", "ownerRepo": "design-system", "path": ".devcontainer/post-create.mjs", "required": true },
|
|
393
|
+
{ "id": "exact-mirror-workflow", "ownerRepo": "design-system", "path": ".github/workflows/mirror-to-published-template.yml", "required": true },
|
|
394
|
+
{ "id": "exact-runtime-conformance-cli", "ownerRepo": "design-system", "path": "infra/governance/bin/conform-provider-runtime.mjs", "required": true },
|
|
395
|
+
{ "id": "exact-runtime-promotion-cli", "ownerRepo": "design-system", "path": "infra/governance/bin/promote-runtime-evidence.mjs", "required": true },
|
|
396
|
+
{ "id": "exact-fleet-reconcile-cli", "ownerRepo": "design-system", "path": "infra/governance/bin/reconcile-github.mjs", "required": true },
|
|
397
|
+
{ "id": "exact-github-desired-state", "ownerRepo": "design-system", "path": "infra/governance/desired/github.json", "required": true },
|
|
398
|
+
{ "id": "exact-governance-common-library", "ownerRepo": "design-system", "path": "infra/governance/lib/common.mjs", "required": true },
|
|
399
|
+
{ "id": "exact-external-surface-evidence-library", "ownerRepo": "design-system", "path": "infra/governance/lib/external-surface-evidence.mjs", "required": true },
|
|
400
|
+
{ "id": "exact-fleet-reconcile-mirror-library", "ownerRepo": "design-system", "path": "infra/governance/lib/fleet-reconcile-mirror.mjs", "required": true },
|
|
401
|
+
{ "id": "exact-model-validation-library", "ownerRepo": "design-system", "path": "infra/governance/lib/model-validation.mjs", "required": true },
|
|
402
|
+
{ "id": "exact-provider-runtime-conformance-library", "ownerRepo": "design-system", "path": "infra/governance/lib/provider-runtime-conformance.mjs", "required": true },
|
|
403
|
+
{ "id": "exact-repository-subject-proof-library", "ownerRepo": "design-system", "path": "infra/governance/lib/repository-subject-proof.mjs", "required": true },
|
|
404
|
+
{ "id": "exact-runtime-certification-library", "ownerRepo": "design-system", "path": "infra/governance/lib/runtime-certification.mjs", "required": true },
|
|
405
|
+
{ "id": "exact-fleet-reconcile-journal-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/fleet-reconcile-journal.schema.json", "required": true },
|
|
406
|
+
{ "id": "exact-fleet-reconcile-bootstrap-transaction-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/fleet-reconcile-bootstrap-transaction.schema.json", "required": true },
|
|
407
|
+
{ "id": "exact-fleet-reconcile-bootstrap-replay-receipt-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/fleet-reconcile-bootstrap-replay-receipt.schema.json", "required": true },
|
|
408
|
+
{ "id": "exact-external-surface-evidence-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/external-surface-evidence.schema.json", "required": true },
|
|
409
|
+
{ "id": "exact-github-desired-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/github-desired.schema.json", "required": true },
|
|
410
|
+
{ "id": "exact-provider-cli-package-content-proposal-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/provider-cli-package-content-proposal.schema.json", "required": true },
|
|
411
|
+
{ "id": "exact-runtime-conformance-evidence-schema", "ownerRepo": "design-system", "path": "infra/governance/schemas/runtime-conformance-evidence.schema.json", "required": true },
|
|
412
|
+
{ "id": "exact-canonical-hook-suite", "ownerRepo": "design-system", "path": "packages/design-system/ds-canonical/hooks/tests/run-all.sh", "required": true },
|
|
413
|
+
{ "id": "exact-deep-audit-skill", "ownerRepo": "design-system", "path": "packages/design-system/ds-canonical/skills/deep-audit-cross-codex/SKILL.md", "required": true },
|
|
414
|
+
{ "id": "exact-independent-review-skill", "ownerRepo": "design-system", "path": "packages/design-system/ds-canonical/skills/independent-review/SKILL.md", "required": true },
|
|
415
|
+
{ "id": "exact-codemod-cli", "ownerRepo": "design-system", "path": "packages/design-system/tools/codemods/cli.mjs", "required": true },
|
|
416
|
+
{ "id": "exact-codemod-library", "ownerRepo": "design-system", "path": "packages/design-system/tools/codemods/index.mjs", "required": true },
|
|
417
|
+
{ "id": "exact-safe-filesystem-library", "ownerRepo": "design-system", "path": "packages/design-system/tools/shared/safe-filesystem.mjs", "required": true },
|
|
418
|
+
{ "id": "exact-visual-baseline-cli", "ownerRepo": "design-system", "path": "packages/design-system/tools/visual-baseline/cli.mjs", "required": true },
|
|
419
|
+
{ "id": "exact-visual-baseline-library", "ownerRepo": "design-system", "path": "packages/design-system/tools/visual-baseline/index.mjs", "required": true },
|
|
420
|
+
{ "id": "exact-governance-package-entrypoint", "ownerRepo": "design-system", "path": "packages/governance/bin/governance.mjs", "required": true },
|
|
421
|
+
{ "id": "exact-provider-registry", "ownerRepo": "design-system", "path": "packages/governance/canonical/providers.json", "required": true },
|
|
422
|
+
{ "id": "exact-provider-registry-schema", "ownerRepo": "design-system", "path": "packages/governance/canonical/schemas/providers.schema.json", "required": true },
|
|
423
|
+
{ "id": "exact-governance-canonical-order-module", "ownerRepo": "design-system", "path": "packages/governance/src/canonical-order.mjs", "required": true },
|
|
424
|
+
{ "id": "exact-governance-common-module", "ownerRepo": "design-system", "path": "packages/governance/src/common.mjs", "required": true },
|
|
425
|
+
{ "id": "exact-governance-contract-module", "ownerRepo": "design-system", "path": "packages/governance/src/contract.mjs", "required": true },
|
|
426
|
+
{ "id": "exact-governance-hook-api-module", "ownerRepo": "design-system", "path": "packages/governance/src/hook-api.mjs", "required": true },
|
|
427
|
+
{ "id": "exact-provider-hook-normalization-module", "ownerRepo": "design-system", "path": "packages/governance/src/provider-hook-normalization.mjs", "required": true },
|
|
428
|
+
{ "id": "exact-gate-meta-test-baseline", "ownerRepo": "design-system", "path": "scripts/audit-gate-meta-test-coverage.baseline.json", "required": true },
|
|
429
|
+
{ "id": "exact-gate-meta-test-auditor", "ownerRepo": "design-system", "path": "scripts/audit-gate-meta-test-coverage.mjs", "required": true },
|
|
430
|
+
{ "id": "exact-fork-governance-builder", "ownerRepo": "design-system", "path": "scripts/build-fork-governance.mjs", "required": true },
|
|
431
|
+
{ "id": "exact-published-template-mirror-builder", "ownerRepo": "design-system", "path": "scripts/build-published-template-mirror.mjs", "required": true },
|
|
432
|
+
{ "id": "exact-fork-governance-classification", "ownerRepo": "design-system", "path": "scripts/fork-governance-classification.json", "required": true },
|
|
433
|
+
{ "id": "exact-story-invariants-fork-override", "ownerRepo": "design-system", "path": "scripts/fork-hook-overrides/check_story_invariants.sh", "required": true },
|
|
434
|
+
{ "id": "exact-governance-metadata-generator", "ownerRepo": "design-system", "path": "scripts/generate-governance-metadata.mjs", "required": true },
|
|
435
|
+
{ "id": "exact-harness-authority-binding-generator", "ownerRepo": "design-system", "path": "scripts/sync-harness-authority-bindings.mjs", "required": true },
|
|
436
|
+
{ "id": "exact-template-package-lock-generator", "ownerRepo": "design-system", "path": "scripts/generate-product-template-package-lock.mjs", "required": true },
|
|
437
|
+
{ "id": "exact-governance-snapshot-entrypoint", "ownerRepo": "design-system", "path": "scripts/governance-snapshot.mjs", "required": true },
|
|
438
|
+
{ "id": "exact-candidate-dependency-installer", "ownerRepo": "design-system", "path": "scripts/install-candidate-dependencies.mjs", "required": true },
|
|
439
|
+
{ "id": "exact-disposable-repository-snapshot-library", "ownerRepo": "design-system", "path": "scripts/lib/disposable-repository-snapshot.mjs", "required": true },
|
|
440
|
+
{ "id": "exact-closed-tool-execution-library", "ownerRepo": "design-system", "path": "packages/governance/src/closed-tool-execution.mjs", "required": true },
|
|
441
|
+
{ "id": "exact-closed-tool-execution-authority-adapter", "ownerRepo": "design-system", "path": "scripts/lib/closed-tool-execution.mjs", "required": true },
|
|
442
|
+
{ "id": "exact-canonical-path-containment-library", "ownerRepo": "design-system", "path": "scripts/lib/canonical-path-containment.mjs", "required": true },
|
|
443
|
+
{ "id": "exact-github-actions-artifact-identity-library", "ownerRepo": "design-system", "path": "scripts/lib/github-actions-artifact-identity.mjs", "required": true },
|
|
444
|
+
{ "id": "exact-governance-dependency-bootstrap-library", "ownerRepo": "design-system", "path": "scripts/lib/governance-dependency-bootstrap.mjs", "required": true },
|
|
445
|
+
{ "id": "exact-provider-projection-contract-library", "ownerRepo": "design-system", "path": "scripts/lib/provider-projection-contract.mjs", "required": true },
|
|
446
|
+
{ "id": "exact-provider-contract-validation-library", "ownerRepo": "design-system", "path": "scripts/lib/provider-contract-validation.mjs", "required": true },
|
|
447
|
+
{ "id": "exact-provider-runtime-contract-library", "ownerRepo": "design-system", "path": "scripts/lib/provider-runtime-contract.mjs", "required": true },
|
|
448
|
+
{ "id": "exact-provider-runtime-validation-library", "ownerRepo": "design-system", "path": "scripts/lib/provider-runtime-validation.mjs", "required": true },
|
|
449
|
+
{ "id": "exact-verified-npm-runtime-library", "ownerRepo": "design-system", "path": "scripts/lib/verified-exact-npm-runtime.mjs", "required": true },
|
|
450
|
+
{ "id": "exact-workspace-post-create-library", "ownerRepo": "design-system", "path": "scripts/lib/workspace-post-create.mjs", "required": true },
|
|
451
|
+
{ "id": "exact-worktree-fingerprint-library", "ownerRepo": "design-system", "path": "scripts/lib/worktree-fingerprint.mjs", "required": true },
|
|
452
|
+
{ "id": "exact-mirror-run-artifact-identity", "ownerRepo": "design-system", "path": "scripts/mirror-run-artifact-identity.mjs", "required": true },
|
|
453
|
+
{ "id": "exact-product-template-scaffold-lock", "ownerRepo": "design-system", "path": "scripts/product-template-scaffold-lock.mjs", "required": true },
|
|
454
|
+
{ "id": "exact-provider-cli-package-content-proposer", "ownerRepo": "design-system", "path": "scripts/propose-provider-cli-package-content.mjs", "required": true },
|
|
455
|
+
{ "id": "exact-published-template-mirror-policy", "ownerRepo": "design-system", "path": "scripts/published-template-mirror-policy.json", "required": true },
|
|
456
|
+
{ "id": "exact-fork-launcher-refresher", "ownerRepo": "design-system", "path": "scripts/refresh-fork-launchers.mjs", "required": true },
|
|
457
|
+
{ "id": "exact-release-finalizer-mirror-handoff", "ownerRepo": "design-system", "path": "scripts/release-finalizer-mirror-handoff.mjs", "required": true },
|
|
458
|
+
{ "id": "exact-governance-setup-cli", "ownerRepo": "design-system", "path": "scripts/setup-governance.mjs", "required": true },
|
|
459
|
+
{ "id": "exact-provider-cli-toolchain-setup", "ownerRepo": "design-system", "path": "scripts/setup-provider-cli-toolchain.mjs", "required": true },
|
|
460
|
+
{ "id": "exact-workspace-setup", "ownerRepo": "design-system", "path": "scripts/setup-workspace.mjs", "required": true },
|
|
461
|
+
{ "id": "exact-sync-all", "ownerRepo": "design-system", "path": "scripts/sync-all.mjs", "required": true },
|
|
462
|
+
{ "id": "exact-provider-adapter-sync-entrypoint", "ownerRepo": "design-system", "path": "scripts/sync-ds-canonical.mjs", "required": true },
|
|
463
|
+
{ "id": "exact-baseline-mirror-sync-entrypoint", "ownerRepo": "design-system", "path": "scripts/sync-governance-baseline-mirrors.mjs", "required": true },
|
|
464
|
+
{ "id": "exact-release-version-sync-entrypoint", "ownerRepo": "design-system", "path": "scripts/sync-version-to-all-manifests.mjs", "required": true },
|
|
465
|
+
{ "id": "exact-provider-cli-proposal-verifier-fixture", "ownerRepo": "design-system", "path": "scripts/test-fixtures/provider-cli-proposal-verifier-child.mjs", "required": true },
|
|
466
|
+
{ "id": "exact-memory-contract-validator", "ownerRepo": "design-system", "path": "scripts/validate-memory-contract.mjs", "required": true },
|
|
467
|
+
{ "id": "exact-planning-registry-validator", "ownerRepo": "design-system", "path": "scripts/validate-planning-registry.mjs", "required": true },
|
|
468
|
+
{ "id": "exact-mirror-evidence-verifier", "ownerRepo": "design-system", "path": "scripts/verify-mirror-evidence.mjs", "required": true },
|
|
469
|
+
{ "id": "exact-mirror-release-verifier", "ownerRepo": "design-system", "path": "scripts/verify-mirror-release.mjs", "required": true },
|
|
470
|
+
{ "id": "exact-upgrade-evidence-verifier", "ownerRepo": "design-system", "path": "scripts/verify-upgrade-evidence.mjs", "required": true },
|
|
471
|
+
{ "id": "exact-upgrade-provenance-verifier", "ownerRepo": "design-system", "path": "scripts/verify-upgrade-provenance.mjs", "required": true },
|
|
472
|
+
{ "id": "exact-template-devcontainer-lock", "ownerRepo": "design-system", "path": "template/ds-product-template/.devcontainer/devcontainer-lock.json", "required": true },
|
|
473
|
+
{ "id": "exact-template-devcontainer-config", "ownerRepo": "design-system", "path": "template/ds-product-template/.devcontainer/devcontainer.json", "required": true },
|
|
474
|
+
{ "id": "audit-rubric", "ownerRepo": "design-system", "path": "packages/design-system/ds-canonical/skills/design-system-audit/references/audit-prompts.md", "required": true }
|
|
475
|
+
]
|
|
476
|
+
}
|