-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
138 lines (105 loc) · 6.79 KB
/
Copy pathMakefile
File metadata and controls
138 lines (105 loc) · 6.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
.PHONY: validate validate-resource-contract validate-measurement validate-value-type validate-source-locator validate-sourceos-repo-manifest validate-mesh-action-registry validate-control-plane-examples validate-nlboot-examples validate-lattice-data-governai-examples validate-ops-history-examples validate-runtime-observability-examples validate-interpretability-examples validate-lifecycle-boundary-examples validate-svf-contracts validate-sync-cycle-receipts validate-onboarding-examples validate-runtime-causality-examples validate-agentic-os-examples validate-triparty-examples validate-labor-market-examples validate-supply-chain-risk-examples validate-reasoning-examples validate-mpcc-event-examples validate-knowledge-nugget-examples validate-semantic-action-examples validate-epistemic-kernel-examples validate-ab-update-examples validate-device-service-examples validate-duplicate-schema-ids validate-lawful-dispatch-receipt validate-architectural-building-block validate-agent-passport-examples validate-seam-definition-examples validate-agent-system-vocabulary validate-measurement
validate: validate-control-plane-examples validate-nlboot-examples validate-lattice-data-governai-examples validate-ops-history-examples validate-runtime-observability-examples validate-interpretability-examples validate-lifecycle-boundary-examples validate-svf-contracts validate-sync-cycle-receipts validate-onboarding-examples validate-runtime-causality-examples validate-agentic-os-examples validate-triparty-examples validate-labor-market-examples validate-supply-chain-risk-examples validate-reasoning-examples validate-mpcc-event-examples validate-knowledge-nugget-examples validate-semantic-action-examples validate-epistemic-kernel-examples validate-ab-update-examples validate-device-service-examples validate-duplicate-schema-ids validate-value-type validate-source-locator validate-sourceos-repo-manifest validate-mesh-action-registry validate-lawful-dispatch-receipt validate-architectural-building-block validate-agent-passport-examples validate-seam-definition-examples validate-agent-system-vocabulary validate-measurement validate-resource-contract
@echo "OK: validate"
validate-agent-system-vocabulary:
python3 tools/validate_agent_system_vocabulary.py
validate-agent-passport-examples:
python3 -m pip install --user jsonschema >/dev/null
python3 tools/validate_agent_passport_examples.py
validate-seam-definition-examples:
python3 -m pip install --user jsonschema >/dev/null
python3 tools/validate_seam_definition_examples.py
validate-source-locator:
python3 tools/validate_source_locator.py
validate-sourceos-repo-manifest:
python3 tools/validate_sourceos_repo_manifest.py
validate-mesh-action-registry:
python3 tools/validate_mesh_action_registry.py
# Truth = Law × Evidence, enforced by the contract rather than by each app's goodwill.
validate-lawful-dispatch-receipt:
python3 -m pip install --user jsonschema >/dev/null
python3 tools/validate_lawful_dispatch_receipt.py
# Reusable role-named technical components. Zurich E-RDA2 uses the same abstraction —
# an ABB names a FUNCTION (DATABASE, IMPLEMENTATION CONTROLLER) that any vendor can fill.
validate-resource-contract:
python3 -m pip install --user jsonschema >/dev/null
python3 tools/validate_resource_contract.py
validate-measurement:
python3 -m pip install --user jsonschema >/dev/null
python3 tools/validate_measurement.py
validate-architectural-building-block:
python3 -m pip install --user jsonschema >/dev/null
python3 tools/validate_architectural_building_block.py
validate-ab-update-examples:
python3 -m pip install --user jsonschema >/dev/null
python3 tools/validate_ab_update_examples.py
# The duplicate-$$id guardrail already runs in CI (.github/workflows/validate.yml)
# but was not reachable from `make validate`, so a local run could not reproduce
# the check that gates the PR. Wiring it in costs nothing and removes a way for
# local and CI verdicts to disagree.
validate-device-service-examples:
python3 -m pip install --user jsonschema >/dev/null
python3 tools/validate_device_service_examples.py
validate-duplicate-schema-ids:
python3 scripts/check_duplicate_schema_ids.py
validate-knowledge-nugget-examples:
python3 -m pip install --user jsonschema >/dev/null
python3 tools/validate_knowledge_nugget_examples.py
validate-semantic-action-examples:
python3 -m pip install --user jsonschema >/dev/null
python3 tools/validate_semantic_action_examples.py
validate-epistemic-kernel-examples:
python3 -m pip install --user jsonschema >/dev/null
python3 tools/validate_epistemic_kernel_examples.py
validate-mpcc-event-examples:
python3 -m pip install --user jsonschema >/dev/null
python3 tools/validate_mpcc_event_examples.py
validate-reasoning-examples:
python3 -m pip install --user jsonschema >/dev/null
python3 tools/validate_reasoning_examples.py
validate-agentic-os-examples:
python3 -m pip install --user jsonschema >/dev/null
python3 tools/validate_agentic_os_examples.py
validate-triparty-examples:
python3 -m pip install --user jsonschema >/dev/null
python3 tools/validate_triparty_examples.py
validate-labor-market-examples:
python3 -m pip install --user jsonschema >/dev/null
python3 tools/validate_labor_market_examples.py
validate-supply-chain-risk-examples:
python3 -m pip install --user jsonschema >/dev/null
python3 tools/validate_supply_chain_risk_examples.py
validate-control-plane-examples:
python3 -m pip install --user jsonschema >/dev/null
python3 tools/validate_control_plane_examples.py
validate-nlboot-examples:
python3 -m pip install --user jsonschema >/dev/null
python3 tools/validate_nlboot_examples.py
validate-lattice-data-governai-examples:
python3 -m pip install --user jsonschema >/dev/null
python3 tools/validate_lattice_data_governai_examples.py
validate-ops-history-examples:
python3 -m pip install --user jsonschema >/dev/null
python3 tools/validate_ops_history_examples.py
validate-runtime-causality-examples:
python3 -m pip install --user jsonschema >/dev/null
python3 tools/validate_runtime_causality_examples.py
validate-onboarding-examples:
python3 -m pip install --user jsonschema >/dev/null
python3 tools/validate_onboarding_examples.py
validate-runtime-observability-examples:
python3 -m pip install --user jsonschema >/dev/null
python3 tools/validate_runtime_observability_examples.py
validate-interpretability-examples:
python3 -m pip install --user jsonschema >/dev/null
python3 tools/validate_interpretability_examples.py
validate-lifecycle-boundary-examples:
python3 -m pip install --user jsonschema >/dev/null
python3 tools/validate_lifecycle_boundary_examples.py
validate-svf-contracts:
python3 tools/validate_svf_contracts.py
validate-sync-cycle-receipts:
python3 -m pip install --user jsonschema >/dev/null
python3 tools/validate_sync_cycle_receipts.py
validate-value-type:
python3 tools/validate_value_type.py