agentlas 0.9.10 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +106 -0
- package/README.md +319 -341
- package/bin/agentlas.cjs +32 -9
- package/engine/agentlas-banner.cjs +24 -3
- package/engine/agentlas-composer.cjs +239 -31
- package/engine/agentlas-config.cjs +103 -7
- package/engine/agentlas-core-harness.cjs +48 -4
- package/engine/agentlas-evolution.cjs +3 -4
- package/engine/agentlas-i18n.cjs +88 -32
- package/engine/agentlas-input.cjs +234 -18
- package/engine/agentlas-memory-governance.cjs +3 -5
- package/engine/agentlas-memory-import.cjs +3 -3
- package/engine/agentlas-native-host.cjs +200 -9
- package/engine/agentlas-onboard.cjs +112 -20
- package/engine/agentlas-permissions.cjs +14 -7
- package/engine/agentlas-sqlite-policy.cjs +34 -0
- package/engine/agentlas-ui.cjs +93 -42
- package/engine/agentlas-workforce.cjs +472 -58
- package/engine/agentlas-workload-routing.cjs +8 -3
- package/engine/agentlas.cjs +140 -12367
- package/engine/agents/files.cjs +61 -0
- package/engine/agents/import-local.cjs +237 -0
- package/engine/agents/registry.cjs +158 -0
- package/engine/agents/router.cjs +565 -0
- package/engine/agents/routes.cjs +43 -0
- package/engine/architecture.data.json +2 -2
- package/engine/automation/daemon.cjs +335 -0
- package/engine/automation/schedule.cjs +181 -0
- package/engine/automation/store.cjs +209 -0
- package/engine/cloud/auth.cjs +279 -0
- package/engine/cloud/hub-client.cjs +239 -0
- package/engine/cloud-assets/cargo.cjs +49 -0
- package/engine/cloud-assets/cas.cjs +235 -0
- package/engine/cloud-assets/commands.cjs +273 -0
- package/engine/cloud-assets/package.cjs +936 -0
- package/engine/cloud-assets/restore.cjs +172 -0
- package/engine/cloud-assets/state.cjs +268 -0
- package/engine/commands/automation.cjs +195 -0
- package/engine/commands/billing.cjs +96 -0
- package/engine/commands/browser.cjs +20 -0
- package/engine/commands/build.cjs +33 -0
- package/engine/commands/call.cjs +24 -0
- package/engine/commands/career-graph.cjs +51 -0
- package/engine/commands/cd.cjs +22 -0
- package/engine/commands/chat.cjs +12 -0
- package/engine/commands/chats.cjs +28 -0
- package/engine/commands/cloud.cjs +17 -0
- package/engine/commands/connect.cjs +20 -0
- package/engine/commands/context.cjs +66 -0
- package/engine/commands/creds.cjs +203 -0
- package/engine/commands/doctor.cjs +68 -0
- package/engine/commands/env.cjs +33 -0
- package/engine/commands/evolve.cjs +23 -0
- package/engine/commands/experience.cjs +34 -0
- package/engine/commands/film.cjs +8 -0
- package/engine/commands/firm.cjs +115 -0
- package/engine/commands/help.cjs +65 -0
- package/engine/commands/hep.cjs +23 -0
- package/engine/commands/import.cjs +35 -0
- package/engine/commands/index.cjs +136 -0
- package/engine/commands/install.cjs +27 -0
- package/engine/commands/journal.cjs +31 -0
- package/engine/commands/legacy-network.cjs +29 -0
- package/engine/commands/list.cjs +49 -0
- package/engine/commands/login.cjs +68 -0
- package/engine/commands/logout.cjs +28 -0
- package/engine/commands/mcp.cjs +91 -0
- package/engine/commands/memory.cjs +21 -0
- package/engine/commands/multimodal.cjs +91 -0
- package/engine/commands/native.cjs +34 -0
- package/engine/commands/netadmin.cjs +31 -0
- package/engine/commands/oberon.cjs +70 -0
- package/engine/commands/ontology.cjs +24 -0
- package/engine/commands/open.cjs +48 -0
- package/engine/commands/plugin.cjs +101 -0
- package/engine/commands/project.cjs +47 -0
- package/engine/commands/research.cjs +36 -0
- package/engine/commands/route.cjs +37 -0
- package/engine/commands/run.cjs +149 -0
- package/engine/commands/search.cjs +55 -0
- package/engine/commands/setup.cjs +45 -0
- package/engine/commands/storm.cjs +75 -0
- package/engine/commands/swarm.cjs +75 -0
- package/engine/commands/telegram.cjs +32 -0
- package/engine/commands/uninstall.cjs +68 -0
- package/engine/commands/update.cjs +54 -0
- package/engine/commands/upload.cjs +18 -0
- package/engine/commands/usage.cjs +35 -0
- package/engine/commands/variant.cjs +25 -0
- package/engine/commands/version.cjs +9 -0
- package/engine/commands/whoami.cjs +38 -0
- package/engine/commands/workforce.cjs +103 -0
- package/engine/core/db.cjs +160 -0
- package/engine/core/paths.cjs +35 -0
- package/engine/experience/build.cjs +181 -0
- package/engine/experience/intents.cjs +492 -0
- package/engine/experience/runtime.cjs +242 -0
- package/engine/experience/variant.cjs +196 -0
- package/engine/firms/orchestrate.cjs +333 -0
- package/engine/hephaestus/runtime.cjs +697 -0
- package/engine/hub/install.cjs +872 -0
- package/engine/hub/plugins.cjs +213 -0
- package/engine/mcp/consent.cjs +289 -0
- package/engine/mcp/contract.cjs +202 -0
- package/engine/mcp/index.cjs +43 -0
- package/engine/mcp/inventory.cjs +322 -0
- package/engine/mcp/plan.cjs +286 -0
- package/engine/mcp/probe.cjs +151 -0
- package/engine/memory-cli/curate.cjs +163 -0
- package/engine/oberon/common.cjs +69 -0
- package/engine/oberon/manifest.cjs +164 -0
- package/engine/oberon/outputs.cjs +70 -0
- package/engine/oberon/render.cjs +164 -0
- package/engine/project/career-graph.cjs +249 -0
- package/engine/project/credentials.cjs +262 -0
- package/engine/project/env-file.cjs +46 -0
- package/engine/project/index.cjs +27 -0
- package/engine/project/memory-context.cjs +453 -0
- package/engine/project/ontology.cjs +467 -0
- package/engine/project/paths.cjs +39 -0
- package/engine/project/seed.cjs +200 -0
- package/engine/project/state.cjs +403 -0
- package/engine/project/super-ontology-seed.json +3288 -0
- package/engine/runtimes/detect.cjs +54 -0
- package/engine/runtimes/overrides.cjs +139 -0
- package/engine/runtimes/resolve.cjs +64 -0
- package/engine/sessions/apply-fences.cjs +188 -0
- package/engine/sessions/fences.cjs +362 -0
- package/engine/sessions/orchestrator.cjs +170 -0
- package/engine/sessions/prompt.cjs +212 -0
- package/engine/sessions/session.cjs +245 -0
- package/engine/sessions/sink.cjs +54 -0
- package/engine/sessions/store.cjs +79 -0
- package/engine/storm/deps.cjs +88 -0
- package/engine/storm/storm.cjs +218 -0
- package/engine/storm/swarm.cjs +422 -0
- package/engine/ui/palette.cjs +105 -0
- package/engine/ui/renderer.cjs +85 -0
- package/engine/ui/repl.cjs +444 -0
- package/engine/workforce/capture.cjs +701 -0
- package/engine/workforce/deps.cjs +472 -0
- package/package.json +2 -6
- package/engine/agentlas-experience-mcp.cjs +0 -1709
- package/engine/agentlas-parity.cjs +0 -1499
- package/engine/agentlas-repl.cjs +0 -1780
|
@@ -0,0 +1,3288 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": "1.0",
|
|
3
|
+
"kind": "agentlas-terminal-super-ontology-seed",
|
|
4
|
+
"note": "Byte-identical super-ontology seed documents extracted from the v1 monolith (legacy-v1-engine-snapshot engine/agentlas.cjs ensureProjectMemoryCli). projectId is substituted at write time.",
|
|
5
|
+
"placeholder": "__PROJECT_ID__",
|
|
6
|
+
"documents": [
|
|
7
|
+
{
|
|
8
|
+
"archKey": "superOntologyContractFile",
|
|
9
|
+
"file": "super-ontology-contract.json",
|
|
10
|
+
"doc": {
|
|
11
|
+
"schemaVersion": "1.0",
|
|
12
|
+
"kind": "agentlas-super-ontology-contract",
|
|
13
|
+
"state": "local_candidate",
|
|
14
|
+
"projectId": "__PROJECT_ID__",
|
|
15
|
+
"draftId": null,
|
|
16
|
+
"runtimeGraphWriteEnabled": false,
|
|
17
|
+
"zeroErrorClaim": false,
|
|
18
|
+
"operatorManagedPromotion": {
|
|
19
|
+
"enabled": true,
|
|
20
|
+
"runtimePromotionModel": "operator_managed_local",
|
|
21
|
+
"securityGateMode": "context_folder_routing_only",
|
|
22
|
+
"blockingSecurityGate": false,
|
|
23
|
+
"requiredBeforePromotion": [
|
|
24
|
+
"project_root",
|
|
25
|
+
"source_folder",
|
|
26
|
+
"owner",
|
|
27
|
+
"evidence_refs",
|
|
28
|
+
"rollback_or_replay_path"
|
|
29
|
+
],
|
|
30
|
+
"publicExportRemainsValueFree": true,
|
|
31
|
+
"notes": "Local operators may promote when structure and ownership are explicit. Security labels are routing metadata, not a generic runtime stop sign."
|
|
32
|
+
},
|
|
33
|
+
"layers": [
|
|
34
|
+
"source_intake",
|
|
35
|
+
"evidence_packet",
|
|
36
|
+
"belief_ledger",
|
|
37
|
+
"knowledge_capsule",
|
|
38
|
+
"affordance_action_binding",
|
|
39
|
+
"agentlas_integration_contract",
|
|
40
|
+
"memory_curator_bridge",
|
|
41
|
+
"open_world_coverage_contract",
|
|
42
|
+
"consensus_coordination_contract",
|
|
43
|
+
"task_coverage_contract",
|
|
44
|
+
"contextual_flow_contract",
|
|
45
|
+
"causal_impact_contract",
|
|
46
|
+
"assurance_case_contract",
|
|
47
|
+
"knowledge_homeostasis_contract",
|
|
48
|
+
"adversarial_provenance_contract",
|
|
49
|
+
"epistemic_calibration_contract",
|
|
50
|
+
"semantic_alignment_contract",
|
|
51
|
+
"resilience_control_contract",
|
|
52
|
+
"invariant_verification_contract",
|
|
53
|
+
"observability_telemetry_contract",
|
|
54
|
+
"objective_proxy_validity_contract",
|
|
55
|
+
"stakeholder_preference_governance_contract",
|
|
56
|
+
"normative_authority_drift_contract",
|
|
57
|
+
"side_effect_containment_contract",
|
|
58
|
+
"source_lineage_version_contract",
|
|
59
|
+
"entity_identity_resolution_contract",
|
|
60
|
+
"temporal_state_transition_contract",
|
|
61
|
+
"capability_delegation_authority_contract",
|
|
62
|
+
"privacy_confidentiality_boundary_contract",
|
|
63
|
+
"strategic_incentive_compatibility_contract",
|
|
64
|
+
"reflexive_feedback_stability_contract",
|
|
65
|
+
"promotion_readiness",
|
|
66
|
+
"promotion_replay_drill",
|
|
67
|
+
"architecture_sync_review"
|
|
68
|
+
],
|
|
69
|
+
"evidenceLedgers": {
|
|
70
|
+
"replays": ".agentlas/super-ontology-replays.jsonl",
|
|
71
|
+
"promotionEvidence": ".agentlas/super-ontology-evidence.jsonl",
|
|
72
|
+
"memoryTickets": ".agentlas/memory-log.jsonl",
|
|
73
|
+
"memoryCuratorBridge": ".agentlas/super-ontology-memory-bridge.jsonl",
|
|
74
|
+
"openWorldCoverage": ".agentlas/super-ontology-open-world-coverage.json",
|
|
75
|
+
"consensusCoordination": ".agentlas/super-ontology-consensus-coordination.json",
|
|
76
|
+
"taskCoverage": ".agentlas/super-ontology-task-coverage.json",
|
|
77
|
+
"contextualFlow": ".agentlas/super-ontology-contextual-flow.json",
|
|
78
|
+
"causalImpact": ".agentlas/super-ontology-causal-impact.json",
|
|
79
|
+
"assuranceCase": ".agentlas/super-ontology-assurance-case.json",
|
|
80
|
+
"knowledgeHomeostasis": ".agentlas/super-ontology-knowledge-homeostasis.json",
|
|
81
|
+
"adversarialProvenance": ".agentlas/super-ontology-adversarial-provenance.json",
|
|
82
|
+
"epistemicCalibration": ".agentlas/super-ontology-epistemic-calibration.json",
|
|
83
|
+
"semanticAlignment": ".agentlas/super-ontology-semantic-alignment.json",
|
|
84
|
+
"resilienceControl": ".agentlas/super-ontology-resilience-control.json",
|
|
85
|
+
"invariantVerification": ".agentlas/super-ontology-invariant-verification.json",
|
|
86
|
+
"observabilityTelemetry": ".agentlas/super-ontology-observability-telemetry.json",
|
|
87
|
+
"objectiveProxyValidity": ".agentlas/super-ontology-objective-proxy-validity.json",
|
|
88
|
+
"stakeholderPreferenceGovernance": ".agentlas/super-ontology-stakeholder-preference-governance.json",
|
|
89
|
+
"normativeAuthorityDrift": ".agentlas/super-ontology-normative-authority-drift.json",
|
|
90
|
+
"sideEffectContainment": ".agentlas/super-ontology-side-effect-containment.json",
|
|
91
|
+
"sourceLineageVersion": ".agentlas/super-ontology-source-lineage-version.json",
|
|
92
|
+
"entityIdentityResolution": ".agentlas/super-ontology-entity-identity-resolution.json",
|
|
93
|
+
"temporalStateTransition": ".agentlas/super-ontology-temporal-state-transition.json",
|
|
94
|
+
"capabilityDelegationAuthority": ".agentlas/super-ontology-capability-delegation-authority.json",
|
|
95
|
+
"privacyConfidentialityBoundary": ".agentlas/super-ontology-privacy-confidentiality-boundary.json",
|
|
96
|
+
"strategicIncentiveCompatibility": ".agentlas/super-ontology-strategic-incentive-compatibility.json",
|
|
97
|
+
"reflexiveFeedbackStability": ".agentlas/super-ontology-reflexive-feedback-stability.json"
|
|
98
|
+
},
|
|
99
|
+
"hardStops": [
|
|
100
|
+
"zero_error_claim",
|
|
101
|
+
"raw_source_to_graph_write",
|
|
102
|
+
"forbidden_context_join",
|
|
103
|
+
"whole_graph_exposure",
|
|
104
|
+
"tool_authority_without_provenance",
|
|
105
|
+
"missing_open_world_coverage_contract",
|
|
106
|
+
"proposal_example_equals_all_tasks",
|
|
107
|
+
"unknown_combination_to_runtime_write",
|
|
108
|
+
"untested_modality_to_memory_write",
|
|
109
|
+
"implicit_degradation_as_complete_data",
|
|
110
|
+
"adversarial_source_as_authority",
|
|
111
|
+
"forbidden_authority_to_action",
|
|
112
|
+
"missing_consensus_coordination_contract",
|
|
113
|
+
"agent_agreement_as_truth",
|
|
114
|
+
"majority_vote_as_write_authority",
|
|
115
|
+
"debate_stability_as_proof",
|
|
116
|
+
"model_judge_as_final_evidence",
|
|
117
|
+
"distributed_replica_merge_without_review",
|
|
118
|
+
"route_sync_without_quorum",
|
|
119
|
+
"last_writer_wins_architecture_update",
|
|
120
|
+
"peer_pressure_to_memory_write",
|
|
121
|
+
"validator_disagreement_to_release",
|
|
122
|
+
"appbridge_source_of_truth_write",
|
|
123
|
+
"missing_rollback",
|
|
124
|
+
"missing_shadow_or_canary_evidence",
|
|
125
|
+
"missing_memory_curator_bridge",
|
|
126
|
+
"missing_task_coverage_contract",
|
|
127
|
+
"missing_contextual_flow_contract",
|
|
128
|
+
"forbidden_context_flow",
|
|
129
|
+
"missing_causal_impact_contract",
|
|
130
|
+
"missing_assurance_case_contract",
|
|
131
|
+
"missing_knowledge_homeostasis_contract",
|
|
132
|
+
"error_budget_overrun_continues",
|
|
133
|
+
"critical_homeostasis_runtime_write",
|
|
134
|
+
"privacy_incident_public_export",
|
|
135
|
+
"missing_adversarial_provenance_contract",
|
|
136
|
+
"prompt_injection_as_instruction",
|
|
137
|
+
"forged_provenance_as_trusted_source",
|
|
138
|
+
"poisoned_source_to_memory",
|
|
139
|
+
"tool_output_tampering_to_action",
|
|
140
|
+
"stale_trusted_source_replay_as_current_truth",
|
|
141
|
+
"missing_epistemic_calibration_contract",
|
|
142
|
+
"uncalibrated_confidence_to_answer",
|
|
143
|
+
"unknown_state_to_runtime_write",
|
|
144
|
+
"conflicting_sources_as_current_truth",
|
|
145
|
+
"low_retrieval_relevance_as_confident_answer",
|
|
146
|
+
"wide_judge_interval_to_regulated_answer",
|
|
147
|
+
"missing_semantic_alignment_contract",
|
|
148
|
+
"same_label_as_same_meaning",
|
|
149
|
+
"embedding_similarity_as_exact_match",
|
|
150
|
+
"close_match_as_transitive_truth",
|
|
151
|
+
"generated_label_as_ontology_class",
|
|
152
|
+
"appbridge_route_as_source_ontology_edit",
|
|
153
|
+
"same_individual_without_stable_identifier",
|
|
154
|
+
"unit_label_without_unit_compatibility",
|
|
155
|
+
"source_conflict_to_memory_merge",
|
|
156
|
+
"no_match_promoted_to_weak_match",
|
|
157
|
+
"missing_resilience_control_contract",
|
|
158
|
+
"validator_disagreement_to_graph_write",
|
|
159
|
+
"retrieval_drift_to_current_answer",
|
|
160
|
+
"semantic_regression_to_memory_merge",
|
|
161
|
+
"curator_backlog_to_direct_memory_write",
|
|
162
|
+
"tool_error_spike_to_unbounded_retry",
|
|
163
|
+
"sync_drift_to_release_surface",
|
|
164
|
+
"degraded_parser_to_ontology_class",
|
|
165
|
+
"emergency_stop_bypass_by_route",
|
|
166
|
+
"missing_invariant_verification_contract",
|
|
167
|
+
"memory_write_without_ticket_invariant",
|
|
168
|
+
"graph_write_without_evidence_invariant",
|
|
169
|
+
"tool_action_without_authority_invariant",
|
|
170
|
+
"public_export_without_flow_invariant",
|
|
171
|
+
"route_sync_without_source_contract_invariant",
|
|
172
|
+
"rollback_not_observed_after_violation",
|
|
173
|
+
"emergency_stop_transition_bypassed",
|
|
174
|
+
"unordered_multi_agent_write",
|
|
175
|
+
"non_idempotent_replay_mutation",
|
|
176
|
+
"missing_observability_telemetry_contract",
|
|
177
|
+
"write_without_trace_id",
|
|
178
|
+
"memory_ticket_without_span_lineage",
|
|
179
|
+
"tool_action_without_audit_receipt",
|
|
180
|
+
"public_export_with_stale_metric",
|
|
181
|
+
"route_sync_without_correlation_id",
|
|
182
|
+
"release_seed_when_audit_sink_down",
|
|
183
|
+
"redaction_missing_in_telemetry",
|
|
184
|
+
"metric_green_without_sample_size",
|
|
185
|
+
"alert_suppressed_during_degraded_mode",
|
|
186
|
+
"shadow_replay_not_recorded",
|
|
187
|
+
"repair_without_before_after_snapshot",
|
|
188
|
+
"rollback_without_observed_event",
|
|
189
|
+
"unobservable_runtime_write",
|
|
190
|
+
"missing_objective_proxy_validity_contract",
|
|
191
|
+
"metric_improvement_as_goal_completion",
|
|
192
|
+
"approval_rate_as_trust",
|
|
193
|
+
"benchmark_score_as_reliability",
|
|
194
|
+
"test_pass_rate_as_maintainability",
|
|
195
|
+
"open_rate_as_customer_value",
|
|
196
|
+
"self_judge_score_as_truth",
|
|
197
|
+
"edge_count_as_knowledge_quality",
|
|
198
|
+
"short_term_profit_as_compliance",
|
|
199
|
+
"cost_per_execution_as_sustainability",
|
|
200
|
+
"reward_score_as_quality",
|
|
201
|
+
"label_leakage_as_accuracy",
|
|
202
|
+
"green_dashboard_as_health",
|
|
203
|
+
"proxy_optimization_without_countermetric",
|
|
204
|
+
"optimization_without_stakeholder_map",
|
|
205
|
+
"metric_gaming_without_probe",
|
|
206
|
+
"reward_tampering_to_promotion",
|
|
207
|
+
"construct_underdefined_to_runtime_write",
|
|
208
|
+
"unvalidated_proxy_to_public_release",
|
|
209
|
+
"missing_stakeholder_preference_governance_contract",
|
|
210
|
+
"single_stakeholder_preference_as_global_goal",
|
|
211
|
+
"owner_preference_as_all_stakeholders",
|
|
212
|
+
"majority_preference_as_rights_clearance",
|
|
213
|
+
"average_utility_over_protected_constraint",
|
|
214
|
+
"hidden_affected_party",
|
|
215
|
+
"missing_appeal_path",
|
|
216
|
+
"missing_dissent_capture",
|
|
217
|
+
"strategic_preference_report_as_truth",
|
|
218
|
+
"preference_aggregation_without_rule",
|
|
219
|
+
"preference_conflict_to_runtime_write",
|
|
220
|
+
"consent_absent_to_personalization",
|
|
221
|
+
"minority_harm_hidden_by_aggregate",
|
|
222
|
+
"irreversible_action_without_stakeholder_review",
|
|
223
|
+
"private_preference_to_public_release",
|
|
224
|
+
"cross_context_preference_reuse_without_scope",
|
|
225
|
+
"role_power_as_legitimacy",
|
|
226
|
+
"arrow_impossibility_ignored",
|
|
227
|
+
"manipulable_vote_as_stable_preference",
|
|
228
|
+
"stakeholder_map_missing_for_release",
|
|
229
|
+
"missing_normative_authority_drift_contract",
|
|
230
|
+
"stale_policy_as_current_rule",
|
|
231
|
+
"wrong_jurisdiction_as_valid_policy",
|
|
232
|
+
"draft_policy_as_enforced_rule",
|
|
233
|
+
"superseded_contract_as_current_authority",
|
|
234
|
+
"terms_of_service_without_effective_date",
|
|
235
|
+
"local_custom_as_global_policy",
|
|
236
|
+
"internal_preference_as_legal_requirement",
|
|
237
|
+
"policy_exception_without_owner",
|
|
238
|
+
"conflicting_authorities_without_precedence",
|
|
239
|
+
"regulation_summary_as_primary_law",
|
|
240
|
+
"compliance_claim_without_citation",
|
|
241
|
+
"policy_translation_as_authoritative_text",
|
|
242
|
+
"expired_consent_as_current_permission",
|
|
243
|
+
"missing_retention_or_deletion_rule",
|
|
244
|
+
"cross_border_transfer_without_jurisdiction",
|
|
245
|
+
"licensing_constraint_ignored",
|
|
246
|
+
"audit_requirement_missing_before_release",
|
|
247
|
+
"emergency_exception_without_expiry",
|
|
248
|
+
"legal_advice_without_review",
|
|
249
|
+
"missing_side_effect_containment_contract",
|
|
250
|
+
"read_permission_as_write_permission",
|
|
251
|
+
"preview_as_send",
|
|
252
|
+
"dry_run_result_as_committed",
|
|
253
|
+
"non_idempotent_retry_to_external_action",
|
|
254
|
+
"irreversible_action_without_human_approval",
|
|
255
|
+
"deletion_without_recovery_plan",
|
|
256
|
+
"payment_without_idempotency_key",
|
|
257
|
+
"customer_message_without_review",
|
|
258
|
+
"release_without_rollback",
|
|
259
|
+
"connector_write_without_scope",
|
|
260
|
+
"cross_tool_chain_without_transaction",
|
|
261
|
+
"compensation_plan_missing",
|
|
262
|
+
"blast_radius_unknown",
|
|
263
|
+
"idempotency_key_missing",
|
|
264
|
+
"external_commit_without_receipt",
|
|
265
|
+
"partial_failure_without_saga_state",
|
|
266
|
+
"physical_action_without_safety_interlock",
|
|
267
|
+
"scheduled_action_without_cancellation",
|
|
268
|
+
"side_effect_logging_missing",
|
|
269
|
+
"hosted_tool_without_local_side_effect_wrapper",
|
|
270
|
+
"missing_source_lineage_version_contract",
|
|
271
|
+
"filename_as_version",
|
|
272
|
+
"latest_folder_as_current_source",
|
|
273
|
+
"pdf_export_as_primary_source",
|
|
274
|
+
"summary_as_primary_source",
|
|
275
|
+
"ocr_text_without_source_span",
|
|
276
|
+
"spreadsheet_sheet_without_workbook_revision",
|
|
277
|
+
"email_attachment_without_message_context",
|
|
278
|
+
"duplicate_title_as_same_artifact",
|
|
279
|
+
"checksum_missing_for_authoritative_source",
|
|
280
|
+
"stale_cache_as_current_record",
|
|
281
|
+
"connector_snapshot_without_capture_time",
|
|
282
|
+
"transitive_derivation_as_primary_source",
|
|
283
|
+
"merged_record_without_parent_refs",
|
|
284
|
+
"redacted_copy_as_complete_source",
|
|
285
|
+
"translation_as_authoritative_source",
|
|
286
|
+
"chunk_without_source_span",
|
|
287
|
+
"embedding_hit_without_artifact_version",
|
|
288
|
+
"memory_fact_without_lineage",
|
|
289
|
+
"public_export_without_lineage_evidence",
|
|
290
|
+
"training_example_without_dataset_version",
|
|
291
|
+
"graph_edge_without_derivation_chain",
|
|
292
|
+
"superseded_source_to_runtime_write",
|
|
293
|
+
"lineage_cycle_unresolved",
|
|
294
|
+
"missing_entity_identity_resolution_contract",
|
|
295
|
+
"name_as_identity",
|
|
296
|
+
"email_domain_as_company",
|
|
297
|
+
"fuzzy_match_as_merge",
|
|
298
|
+
"embedding_cluster_as_identity",
|
|
299
|
+
"llm_canonical_name_as_id",
|
|
300
|
+
"crm_id_cross_tenant_merge",
|
|
301
|
+
"recycled_employee_id_as_same_person",
|
|
302
|
+
"redacted_name_as_public_identity",
|
|
303
|
+
"stale_alias_as_current_entity",
|
|
304
|
+
"relationship_edge_without_identity_evidence",
|
|
305
|
+
"memory_note_as_identity_authority",
|
|
306
|
+
"missing_temporal_state_transition_contract",
|
|
307
|
+
"current_snapshot_as_truth",
|
|
308
|
+
"missing_valid_time",
|
|
309
|
+
"missing_transaction_time",
|
|
310
|
+
"local_timestamp_as_global_order",
|
|
311
|
+
"spreadsheet_order_as_event_order",
|
|
312
|
+
"llm_summary_as_event_log",
|
|
313
|
+
"late_event_ignored",
|
|
314
|
+
"retroactive_correction_without_tx_history",
|
|
315
|
+
"future_effective_as_current",
|
|
316
|
+
"expired_state_as_active",
|
|
317
|
+
"deleted_state_without_tombstone",
|
|
318
|
+
"non_idempotent_replay",
|
|
319
|
+
"materialized_view_as_source_of_truth",
|
|
320
|
+
"projection_without_version",
|
|
321
|
+
"recurring_event_without_rule",
|
|
322
|
+
"timezone_free_deadline",
|
|
323
|
+
"state_transition_without_precondition",
|
|
324
|
+
"partial_failure_as_success",
|
|
325
|
+
"clock_skew_as_fact",
|
|
326
|
+
"scheduled_job_without_receipt",
|
|
327
|
+
"memory_fact_without_validity_interval",
|
|
328
|
+
"graph_edge_without_temporal_bounds",
|
|
329
|
+
"missing_capability_delegation_authority_contract",
|
|
330
|
+
"role_as_capability",
|
|
331
|
+
"oauth_scope_as_task_permission",
|
|
332
|
+
"api_key_as_actor",
|
|
333
|
+
"read_access_as_write_authority",
|
|
334
|
+
"parent_agent_unbounded_delegation",
|
|
335
|
+
"delegation_chain_missing",
|
|
336
|
+
"purpose_mismatch_authority",
|
|
337
|
+
"capability_without_caveats",
|
|
338
|
+
"stale_capability_token_as_current",
|
|
339
|
+
"cross_context_capability_reuse",
|
|
340
|
+
"capability_escalation_by_tool_choice",
|
|
341
|
+
"subagent_exceeds_parent_authority",
|
|
342
|
+
"human_consent_reused_for_new_purpose",
|
|
343
|
+
"permission_prompt_as_policy",
|
|
344
|
+
"tool_schema_as_authorization",
|
|
345
|
+
"cached_auth_decision_without_fresh_context",
|
|
346
|
+
"break_glass_without_expiry",
|
|
347
|
+
"admin_role_as_all_actions",
|
|
348
|
+
"shared_service_account_as_identity",
|
|
349
|
+
"task_goal_as_permission",
|
|
350
|
+
"hidden_tool_call_without_policy_decision",
|
|
351
|
+
"missing_privacy_confidentiality_boundary_contract",
|
|
352
|
+
"pii_as_normal_fact",
|
|
353
|
+
"secret_as_graph_label",
|
|
354
|
+
"confidential_deck_as_public_context",
|
|
355
|
+
"consent_missing_for_personal_data",
|
|
356
|
+
"legal_basis_missing_for_processing",
|
|
357
|
+
"purpose_reuse_without_privacy_review",
|
|
358
|
+
"training_on_private_material",
|
|
359
|
+
"public_export_without_redaction",
|
|
360
|
+
"retention_expired_memory",
|
|
361
|
+
"data_subject_delete_ignored",
|
|
362
|
+
"cross_tenant_context_bleed",
|
|
363
|
+
"customer_data_as_public_demo",
|
|
364
|
+
"personal_life_as_company_context",
|
|
365
|
+
"employee_note_as_hr_decision",
|
|
366
|
+
"inferred_sensitive_attribute_to_output",
|
|
367
|
+
"redacted_text_reidentified",
|
|
368
|
+
"connector_cache_as_allowed_use",
|
|
369
|
+
"screenshot_ocr_without_classification",
|
|
370
|
+
"embedding_of_secret_without_policy",
|
|
371
|
+
"vector_search_private_neighbor_leak",
|
|
372
|
+
"shared_memory_without_audience_boundary",
|
|
373
|
+
"confidential_source_to_untrusted_model",
|
|
374
|
+
"legal_privilege_lost_by_disclosure",
|
|
375
|
+
"missing_strategic_incentive_compatibility_contract",
|
|
376
|
+
"self_report_as_truth",
|
|
377
|
+
"kpi_as_objective",
|
|
378
|
+
"commission_report_as_fact",
|
|
379
|
+
"manager_approval_as_no_conflict",
|
|
380
|
+
"vendor_claim_as_source_quality",
|
|
381
|
+
"customer_rating_as_value",
|
|
382
|
+
"agent_vote_as_independent_signal",
|
|
383
|
+
"benchmark_score_as_general_capability",
|
|
384
|
+
"cheap_provider_as_best_provider",
|
|
385
|
+
"data_provider_label_as_quality",
|
|
386
|
+
"compliance_attestation_as_compliance",
|
|
387
|
+
"peer_pressure_as_consensus",
|
|
388
|
+
"hidden_affiliation_as_neutral_review",
|
|
389
|
+
"survey_response_as_stable_preference",
|
|
390
|
+
"retention_metric_as_satisfaction",
|
|
391
|
+
"access_request_as_need_to_know",
|
|
392
|
+
"family_pressure_as_user_preference",
|
|
393
|
+
"approval_chain_as_truthfulness",
|
|
394
|
+
"cost_saving_as_system_health",
|
|
395
|
+
"strategic_silence_as_no_risk",
|
|
396
|
+
"collusive_agents_as_quorum",
|
|
397
|
+
"mechanism_missing_to_runtime_write",
|
|
398
|
+
"incentive_conflict_to_memory_write",
|
|
399
|
+
"reward_model_as_human_goal",
|
|
400
|
+
"missing_reflexive_feedback_stability_contract",
|
|
401
|
+
"observation_after_intervention_as_neutral_truth",
|
|
402
|
+
"recommendation_effect_as_preference",
|
|
403
|
+
"self_generated_content_as_training_data",
|
|
404
|
+
"model_output_as_source_corpus",
|
|
405
|
+
"dashboard_change_as_system_improvement",
|
|
406
|
+
"metric_response_as_real_world_gain",
|
|
407
|
+
"repeated_retrieval_as_relevance",
|
|
408
|
+
"agent_self_score_as_external_feedback",
|
|
409
|
+
"closed_loop_without_counterfactual",
|
|
410
|
+
"runaway_feedback_to_runtime_write",
|
|
411
|
+
"oscillation_as_adaptation",
|
|
412
|
+
"delayed_harm_ignored",
|
|
413
|
+
"synthetic_data_loop_as_real_distribution",
|
|
414
|
+
"intervention_without_stop_condition",
|
|
415
|
+
"user_adaptation_as_stable_preference",
|
|
416
|
+
"market_response_as_causal_truth",
|
|
417
|
+
"personal_nudge_as_identity_change",
|
|
418
|
+
"training_on_ai_outputs_without_real_anchor",
|
|
419
|
+
"feedback_loop_to_memory_write",
|
|
420
|
+
"feedback_loop_to_policy_write",
|
|
421
|
+
"externality_free_assumption",
|
|
422
|
+
"correlation_as_causation",
|
|
423
|
+
"unsupported_claim",
|
|
424
|
+
"direct_durable_memory_write",
|
|
425
|
+
"raw_prompt_or_secret_memory_capture"
|
|
426
|
+
],
|
|
427
|
+
"promotionPolicy": {
|
|
428
|
+
"shadowRequired": true,
|
|
429
|
+
"canaryRequiredForMixedContext": true,
|
|
430
|
+
"rollbackRequired": true,
|
|
431
|
+
"syncReviewRequired": true,
|
|
432
|
+
"appbridgeSourceWritesBlocked": true,
|
|
433
|
+
"memoryCuratorBridgeRequired": true,
|
|
434
|
+
"openWorldCoverageRequired": true,
|
|
435
|
+
"unknownCombinationRuntimeWritesBlocked": true,
|
|
436
|
+
"uncoveredModalityRuntimeWritesBlocked": true,
|
|
437
|
+
"consensusCoordinationRequired": true,
|
|
438
|
+
"agentAgreementRuntimeWritesBlocked": true,
|
|
439
|
+
"majorityVoteRuntimeWritesBlocked": true,
|
|
440
|
+
"splitBrainRuntimeWritesBlocked": true,
|
|
441
|
+
"taskCoverageRequired": true,
|
|
442
|
+
"contextualFlowRequired": true,
|
|
443
|
+
"causalImpactRequired": true,
|
|
444
|
+
"assuranceCaseRequired": true,
|
|
445
|
+
"knowledgeHomeostasisRequired": true,
|
|
446
|
+
"adversarialProvenanceRequired": true,
|
|
447
|
+
"untrustedSourceRuntimeWritesBlocked": true,
|
|
448
|
+
"epistemicCalibrationRequired": true,
|
|
449
|
+
"uncalibratedRuntimeWritesBlocked": true,
|
|
450
|
+
"semanticAlignmentRequired": true,
|
|
451
|
+
"highAuthorityAlignmentReviewRequired": true,
|
|
452
|
+
"unreviewedSemanticRuntimeWritesBlocked": true,
|
|
453
|
+
"resilienceControlRequired": true,
|
|
454
|
+
"degradedRuntimeWritesBlocked": true,
|
|
455
|
+
"emergencyStopBypassBlocked": true,
|
|
456
|
+
"invariantVerificationRequired": true,
|
|
457
|
+
"runtimeInvariantWritesBlocked": true,
|
|
458
|
+
"forbiddenTransitionBlocked": true,
|
|
459
|
+
"observabilityTelemetryRequired": true,
|
|
460
|
+
"unobservableRuntimeWritesBlocked": true,
|
|
461
|
+
"auditSinkRequired": true,
|
|
462
|
+
"crossSurfaceCorrelationRequired": true,
|
|
463
|
+
"objectiveProxyValidityRequired": true,
|
|
464
|
+
"proxyOptimizationRuntimeWritesBlocked": true,
|
|
465
|
+
"countermetricRequired": true,
|
|
466
|
+
"metricGamingProbeRequired": true,
|
|
467
|
+
"stakeholderPreferenceGovernanceRequired": true,
|
|
468
|
+
"singleStakeholderRuntimeWritesBlocked": true,
|
|
469
|
+
"aggregationRuleRequired": true,
|
|
470
|
+
"appealPathRequired": true,
|
|
471
|
+
"normativeAuthorityDriftRequired": true,
|
|
472
|
+
"stalePolicyRuntimeWritesBlocked": true,
|
|
473
|
+
"jurisdictionScopeRequired": true,
|
|
474
|
+
"authorityHierarchyRequired": true,
|
|
475
|
+
"sideEffectContainmentRequired": true,
|
|
476
|
+
"irreversibleRuntimeActionsBlocked": true,
|
|
477
|
+
"idempotencyKeyRequired": true,
|
|
478
|
+
"compensationPlanRequired": true,
|
|
479
|
+
"sourceLineageVersionRequired": true,
|
|
480
|
+
"unversionedSourceRuntimeWritesBlocked": true,
|
|
481
|
+
"derivedArtifactPromotionBlocked": true,
|
|
482
|
+
"lineageRepairRequired": true,
|
|
483
|
+
"entityIdentityResolutionRequired": true,
|
|
484
|
+
"ambiguousIdentityRuntimeWritesBlocked": true,
|
|
485
|
+
"identityMergeReviewRequired": true,
|
|
486
|
+
"identityRollbackRequired": true,
|
|
487
|
+
"temporalStateTransitionRequired": true,
|
|
488
|
+
"timelessStateRuntimeWritesBlocked": true,
|
|
489
|
+
"eventReplayRequired": true,
|
|
490
|
+
"projectionVersionRequired": true,
|
|
491
|
+
"capabilityDelegationAuthorityRequired": true,
|
|
492
|
+
"unscopedCapabilityRuntimeWritesBlocked": true,
|
|
493
|
+
"delegationChainRequired": true,
|
|
494
|
+
"capabilityAttenuationRequired": true,
|
|
495
|
+
"purposeBoundCapabilityRequired": true,
|
|
496
|
+
"directDurableMemoryWritesBlocked": true,
|
|
497
|
+
"privacyConfidentialityBoundaryRequired": true,
|
|
498
|
+
"unclassifiedPrivateRuntimeWritesBlocked": true,
|
|
499
|
+
"privacyBoundaryReviewRequired": true,
|
|
500
|
+
"publicTrainingDisclosureFlagRequired": true,
|
|
501
|
+
"deletionAndRetentionStateRequired": true,
|
|
502
|
+
"crossTenantPrivacyBleedBlocked": true,
|
|
503
|
+
"strategicIncentiveCompatibilityRequired": true,
|
|
504
|
+
"incentiveConflictRuntimeWritesBlocked": true,
|
|
505
|
+
"mechanismReviewRequired": true,
|
|
506
|
+
"independentVerificationRequired": true,
|
|
507
|
+
"collusionCheckRequired": true,
|
|
508
|
+
"mechanismRedesignRequired": true,
|
|
509
|
+
"reflexiveFeedbackStabilityRequired": true,
|
|
510
|
+
"postInterventionRuntimeWritesBlocked": true,
|
|
511
|
+
"feedbackHoldoutRequired": true,
|
|
512
|
+
"realWorldAnchorRequired": true,
|
|
513
|
+
"dampingAndStopConditionRequired": true,
|
|
514
|
+
"modelCollapseLoopBlocked": true
|
|
515
|
+
},
|
|
516
|
+
"surfacePolicy": {
|
|
517
|
+
"desktopTerminal": {
|
|
518
|
+
"defaultDecision": "shadow_required",
|
|
519
|
+
"notes": "Local graph-write behavior needs permission audit and replay."
|
|
520
|
+
},
|
|
521
|
+
"appbridge": {
|
|
522
|
+
"defaultDecision": "blocked",
|
|
523
|
+
"notes": "AppBridge remains a route adapter, never the source of truth."
|
|
524
|
+
}
|
|
525
|
+
}
|
|
526
|
+
}
|
|
527
|
+
},
|
|
528
|
+
{
|
|
529
|
+
"archKey": "superOntologyOpenWorldCoverageFile",
|
|
530
|
+
"file": "super-ontology-open-world-coverage.json",
|
|
531
|
+
"doc": {
|
|
532
|
+
"schemaVersion": "1.0",
|
|
533
|
+
"kind": "agentlas-super-ontology-open-world-coverage",
|
|
534
|
+
"state": "local_candidate",
|
|
535
|
+
"projectId": "__PROJECT_ID__",
|
|
536
|
+
"draftId": null,
|
|
537
|
+
"runtimePromotionAllowed": false,
|
|
538
|
+
"defaultDecision": "lower_authority_before_unknown_combination_write",
|
|
539
|
+
"worldFamilies": [
|
|
540
|
+
"personal_life",
|
|
541
|
+
"company_operations",
|
|
542
|
+
"public_research",
|
|
543
|
+
"scientific_observation",
|
|
544
|
+
"social_institutional",
|
|
545
|
+
"creative_media",
|
|
546
|
+
"regulated_health",
|
|
547
|
+
"legal_compliance",
|
|
548
|
+
"industrial_physical",
|
|
549
|
+
"environmental_geospatial",
|
|
550
|
+
"software_enterprise",
|
|
551
|
+
"education",
|
|
552
|
+
"finance_compliance",
|
|
553
|
+
"multimodal_brand",
|
|
554
|
+
"unknown_mixed"
|
|
555
|
+
],
|
|
556
|
+
"modalities": [
|
|
557
|
+
"text",
|
|
558
|
+
"table",
|
|
559
|
+
"slide",
|
|
560
|
+
"pdf",
|
|
561
|
+
"hwp",
|
|
562
|
+
"image",
|
|
563
|
+
"video",
|
|
564
|
+
"audio",
|
|
565
|
+
"sensor",
|
|
566
|
+
"code",
|
|
567
|
+
"database",
|
|
568
|
+
"email",
|
|
569
|
+
"calendar",
|
|
570
|
+
"web",
|
|
571
|
+
"geospatial"
|
|
572
|
+
],
|
|
573
|
+
"faultModels": [
|
|
574
|
+
"none",
|
|
575
|
+
"explicit_error",
|
|
576
|
+
"implicit_degradation",
|
|
577
|
+
"mixed_fault",
|
|
578
|
+
"missing_field",
|
|
579
|
+
"stale_source",
|
|
580
|
+
"adversarial_source",
|
|
581
|
+
"permission_gap",
|
|
582
|
+
"semantic_ambiguity",
|
|
583
|
+
"causal_gap"
|
|
584
|
+
],
|
|
585
|
+
"authorityStates": [
|
|
586
|
+
"public_allowed",
|
|
587
|
+
"owner_authority_present",
|
|
588
|
+
"authority_unknown",
|
|
589
|
+
"regulated_requires_review",
|
|
590
|
+
"forbidden"
|
|
591
|
+
],
|
|
592
|
+
"coverageGaps": [
|
|
593
|
+
"covered",
|
|
594
|
+
"new_combination",
|
|
595
|
+
"underrepresented_world",
|
|
596
|
+
"missing_fault_fixture",
|
|
597
|
+
"missing_modality_fixture",
|
|
598
|
+
"missing_authority_fixture"
|
|
599
|
+
],
|
|
600
|
+
"requiredGates": [
|
|
601
|
+
"task_coverage",
|
|
602
|
+
"contextual_flow",
|
|
603
|
+
"epistemic_calibration",
|
|
604
|
+
"semantic_alignment",
|
|
605
|
+
"adversarial_provenance",
|
|
606
|
+
"causal_impact",
|
|
607
|
+
"knowledge_homeostasis",
|
|
608
|
+
"resilience_control",
|
|
609
|
+
"invariant_verification",
|
|
610
|
+
"memory_curator_bridge",
|
|
611
|
+
"assurance_case",
|
|
612
|
+
"shadow_canary_replay",
|
|
613
|
+
"owner_review"
|
|
614
|
+
],
|
|
615
|
+
"samplingActions": [
|
|
616
|
+
"allow_as_research_fixture",
|
|
617
|
+
"add_fixture",
|
|
618
|
+
"ask_clarify",
|
|
619
|
+
"shadow_replay",
|
|
620
|
+
"quarantine",
|
|
621
|
+
"block",
|
|
622
|
+
"require_owner_review"
|
|
623
|
+
],
|
|
624
|
+
"promotionDecisions": [
|
|
625
|
+
"candidate_only",
|
|
626
|
+
"shadow_required",
|
|
627
|
+
"sync_review_required",
|
|
628
|
+
"blocked"
|
|
629
|
+
],
|
|
630
|
+
"researchBasis": [
|
|
631
|
+
"open_world_evaluation",
|
|
632
|
+
"professional_agent_benchmarks",
|
|
633
|
+
"real_computer_environment_benchmarks",
|
|
634
|
+
"ontology_oriented_kg_construction",
|
|
635
|
+
"enterprise_ontology_scope_limits",
|
|
636
|
+
"no_free_lunch",
|
|
637
|
+
"zero_trust_architecture"
|
|
638
|
+
],
|
|
639
|
+
"hardStops": [
|
|
640
|
+
"missing_open_world_coverage_contract",
|
|
641
|
+
"proposal_example_equals_all_tasks",
|
|
642
|
+
"unknown_combination_to_runtime_write",
|
|
643
|
+
"untested_modality_to_memory_write",
|
|
644
|
+
"implicit_degradation_as_complete_data",
|
|
645
|
+
"adversarial_source_as_authority",
|
|
646
|
+
"forbidden_authority_to_action",
|
|
647
|
+
"open_world_case_without_shadow_replay",
|
|
648
|
+
"open_world_case_without_owner_or_sync_review"
|
|
649
|
+
]
|
|
650
|
+
}
|
|
651
|
+
},
|
|
652
|
+
{
|
|
653
|
+
"archKey": "superOntologyConsensusCoordinationFile",
|
|
654
|
+
"file": "super-ontology-consensus-coordination.json",
|
|
655
|
+
"doc": {
|
|
656
|
+
"schemaVersion": "1.0",
|
|
657
|
+
"kind": "agentlas-super-ontology-consensus-coordination",
|
|
658
|
+
"state": "local_candidate",
|
|
659
|
+
"projectId": "__PROJECT_ID__",
|
|
660
|
+
"draftId": null,
|
|
661
|
+
"runtimePromotionAllowed": false,
|
|
662
|
+
"defaultDecision": "treat_agent_agreement_as_candidate_signal_not_write_authority",
|
|
663
|
+
"coordinationTopologies": [
|
|
664
|
+
"independent_parallel",
|
|
665
|
+
"star_orchestrator",
|
|
666
|
+
"round_robin",
|
|
667
|
+
"majority_vote",
|
|
668
|
+
"weighted_vote",
|
|
669
|
+
"debate",
|
|
670
|
+
"owner_review_board",
|
|
671
|
+
"distributed_replicas",
|
|
672
|
+
"cross_runtime_sync"
|
|
673
|
+
],
|
|
674
|
+
"failureModes": [
|
|
675
|
+
"majority_corruption",
|
|
676
|
+
"peer_pressure",
|
|
677
|
+
"sycophancy",
|
|
678
|
+
"split_brain",
|
|
679
|
+
"stale_replica",
|
|
680
|
+
"double_write",
|
|
681
|
+
"authority_escalation",
|
|
682
|
+
"validator_disagreement",
|
|
683
|
+
"collusion",
|
|
684
|
+
"unreliable_judge",
|
|
685
|
+
"network_partition",
|
|
686
|
+
"race_condition"
|
|
687
|
+
],
|
|
688
|
+
"requiredGates": [
|
|
689
|
+
"adversarial_provenance",
|
|
690
|
+
"epistemic_calibration",
|
|
691
|
+
"semantic_alignment",
|
|
692
|
+
"knowledge_homeostasis",
|
|
693
|
+
"resilience_control",
|
|
694
|
+
"invariant_verification",
|
|
695
|
+
"memory_curator_bridge",
|
|
696
|
+
"assurance_case",
|
|
697
|
+
"shadow_canary_replay",
|
|
698
|
+
"owner_review",
|
|
699
|
+
"sync_gate"
|
|
700
|
+
],
|
|
701
|
+
"consensusPolicies": [
|
|
702
|
+
"independent_verification",
|
|
703
|
+
"stability_detection",
|
|
704
|
+
"evidence_weighted",
|
|
705
|
+
"unanimity_for_high_risk",
|
|
706
|
+
"owner_tiebreak",
|
|
707
|
+
"quorum_plus_veto",
|
|
708
|
+
"read_only_shadow",
|
|
709
|
+
"two_phase_commit",
|
|
710
|
+
"crdt_merge_with_review",
|
|
711
|
+
"block"
|
|
712
|
+
],
|
|
713
|
+
"conflictResolutions": [
|
|
714
|
+
"ask_clarify",
|
|
715
|
+
"quarantine",
|
|
716
|
+
"shadow_replay",
|
|
717
|
+
"owner_review",
|
|
718
|
+
"sync_review",
|
|
719
|
+
"rollback",
|
|
720
|
+
"emergency_stop",
|
|
721
|
+
"merge_as_contested",
|
|
722
|
+
"reject",
|
|
723
|
+
"read_only_mode"
|
|
724
|
+
],
|
|
725
|
+
"researchBasis": [
|
|
726
|
+
"multi_agent_consensus_risk",
|
|
727
|
+
"peer_pressure_research",
|
|
728
|
+
"distributed_systems_consensus",
|
|
729
|
+
"ontology_conflict_resolution",
|
|
730
|
+
"assurance_case",
|
|
731
|
+
"zero_trust_architecture"
|
|
732
|
+
],
|
|
733
|
+
"hardStops": [
|
|
734
|
+
"missing_consensus_coordination_contract",
|
|
735
|
+
"agent_agreement_as_truth",
|
|
736
|
+
"majority_vote_as_write_authority",
|
|
737
|
+
"debate_stability_as_proof",
|
|
738
|
+
"model_judge_as_final_evidence",
|
|
739
|
+
"distributed_replica_merge_without_review",
|
|
740
|
+
"route_sync_without_quorum",
|
|
741
|
+
"last_writer_wins_architecture_update",
|
|
742
|
+
"peer_pressure_to_memory_write",
|
|
743
|
+
"validator_disagreement_to_release"
|
|
744
|
+
]
|
|
745
|
+
}
|
|
746
|
+
},
|
|
747
|
+
{
|
|
748
|
+
"archKey": "superOntologyContextualFlowFile",
|
|
749
|
+
"file": "super-ontology-contextual-flow.json",
|
|
750
|
+
"doc": {
|
|
751
|
+
"schemaVersion": "1.0",
|
|
752
|
+
"kind": "agentlas-super-ontology-contextual-flow",
|
|
753
|
+
"state": "local_candidate",
|
|
754
|
+
"projectId": "__PROJECT_ID__",
|
|
755
|
+
"draftId": null,
|
|
756
|
+
"runtimePromotionAllowed": false,
|
|
757
|
+
"defaultDecision": "contextual_flow_required_before_boundary_crossing",
|
|
758
|
+
"flowStages": [
|
|
759
|
+
"user_to_agent",
|
|
760
|
+
"agent_to_tool",
|
|
761
|
+
"tool_to_agent",
|
|
762
|
+
"agent_to_agent",
|
|
763
|
+
"agent_to_memory",
|
|
764
|
+
"agent_to_output",
|
|
765
|
+
"agent_to_public_surface"
|
|
766
|
+
],
|
|
767
|
+
"contexts": [
|
|
768
|
+
"personal",
|
|
769
|
+
"company",
|
|
770
|
+
"customer",
|
|
771
|
+
"public",
|
|
772
|
+
"regulated",
|
|
773
|
+
"agent_internal"
|
|
774
|
+
],
|
|
775
|
+
"requiredParameters": [
|
|
776
|
+
"source_context",
|
|
777
|
+
"target_context",
|
|
778
|
+
"sender_role",
|
|
779
|
+
"recipient_role",
|
|
780
|
+
"subject_role",
|
|
781
|
+
"attribute_type",
|
|
782
|
+
"transmission_principle",
|
|
783
|
+
"purpose",
|
|
784
|
+
"authority_basis",
|
|
785
|
+
"sensitivity",
|
|
786
|
+
"retention_policy",
|
|
787
|
+
"audit_refs"
|
|
788
|
+
],
|
|
789
|
+
"decisions": [
|
|
790
|
+
"allow",
|
|
791
|
+
"redact",
|
|
792
|
+
"aggregate_only",
|
|
793
|
+
"review_required",
|
|
794
|
+
"block"
|
|
795
|
+
],
|
|
796
|
+
"researchBasis": [
|
|
797
|
+
"contextual_integrity",
|
|
798
|
+
"privacy_flow_graph",
|
|
799
|
+
"multi_agent_contextual_privacy",
|
|
800
|
+
"compositional_privacy",
|
|
801
|
+
"information_flow_control",
|
|
802
|
+
"nist_ai_rmf_gai_profile",
|
|
803
|
+
"w3c_prov",
|
|
804
|
+
"stpa_mode_confusion"
|
|
805
|
+
],
|
|
806
|
+
"hardStops": [
|
|
807
|
+
"same_user_means_all_contexts_joinable",
|
|
808
|
+
"tool_response_as_need_to_know",
|
|
809
|
+
"public_output_after_private_handoff",
|
|
810
|
+
"raw_prompt_or_transcript_to_memory",
|
|
811
|
+
"customer_data_to_public_surface_without_consent",
|
|
812
|
+
"regulated_data_to_training_without_consent_delete_path",
|
|
813
|
+
"agent_internal_trace_to_user_output",
|
|
814
|
+
"cross_project_join_without_scope_review"
|
|
815
|
+
]
|
|
816
|
+
}
|
|
817
|
+
},
|
|
818
|
+
{
|
|
819
|
+
"archKey": "superOntologyCausalImpactFile",
|
|
820
|
+
"file": "super-ontology-causal-impact.json",
|
|
821
|
+
"doc": {
|
|
822
|
+
"schemaVersion": "1.0",
|
|
823
|
+
"kind": "agentlas-super-ontology-causal-impact",
|
|
824
|
+
"state": "local_candidate",
|
|
825
|
+
"projectId": "__PROJECT_ID__",
|
|
826
|
+
"draftId": null,
|
|
827
|
+
"runtimePromotionAllowed": false,
|
|
828
|
+
"defaultDecision": "counterfactual_required_before_state_change",
|
|
829
|
+
"causalClaimTypes": [
|
|
830
|
+
"correlation_only",
|
|
831
|
+
"causal_hypothesis",
|
|
832
|
+
"intervention",
|
|
833
|
+
"counterfactual",
|
|
834
|
+
"temporal_causal",
|
|
835
|
+
"memory_intervention",
|
|
836
|
+
"multi_agent_plan",
|
|
837
|
+
"external_side_effect",
|
|
838
|
+
"physical_or_train"
|
|
839
|
+
],
|
|
840
|
+
"requiredChecks": [
|
|
841
|
+
"intervention_target",
|
|
842
|
+
"expected_outcomes",
|
|
843
|
+
"adverse_outcomes",
|
|
844
|
+
"counterfactual_checks",
|
|
845
|
+
"observability",
|
|
846
|
+
"reversibility",
|
|
847
|
+
"blast_radius",
|
|
848
|
+
"blocked_write_surfaces",
|
|
849
|
+
"rollback_plan"
|
|
850
|
+
],
|
|
851
|
+
"decisions": [
|
|
852
|
+
"allow_read",
|
|
853
|
+
"draft_only",
|
|
854
|
+
"review_required",
|
|
855
|
+
"shadow_required",
|
|
856
|
+
"block"
|
|
857
|
+
],
|
|
858
|
+
"researchBasis": [
|
|
859
|
+
"causal_rag",
|
|
860
|
+
"causal_counterfactual_rag",
|
|
861
|
+
"counterfactual_benchmark",
|
|
862
|
+
"causal_planning",
|
|
863
|
+
"causal_memory_intervention",
|
|
864
|
+
"structural_causal_model",
|
|
865
|
+
"resilience_engineering",
|
|
866
|
+
"systems_theory"
|
|
867
|
+
],
|
|
868
|
+
"hardStops": [
|
|
869
|
+
"correlation_as_causation",
|
|
870
|
+
"retrieved_relation_as_action_permission",
|
|
871
|
+
"missing_counterfactual_check",
|
|
872
|
+
"missing_adverse_outcome",
|
|
873
|
+
"missing_blast_radius",
|
|
874
|
+
"missing_observability",
|
|
875
|
+
"state_change_without_rollback",
|
|
876
|
+
"physical_action_without_human_protocol",
|
|
877
|
+
"training_without_consent_or_delete_path",
|
|
878
|
+
"multi_agent_write_without_ordered_handoff"
|
|
879
|
+
]
|
|
880
|
+
}
|
|
881
|
+
},
|
|
882
|
+
{
|
|
883
|
+
"archKey": "superOntologyAssuranceCaseFile",
|
|
884
|
+
"file": "super-ontology-assurance-case.json",
|
|
885
|
+
"doc": {
|
|
886
|
+
"schemaVersion": "1.0",
|
|
887
|
+
"kind": "agentlas-super-ontology-assurance-case",
|
|
888
|
+
"state": "local_candidate",
|
|
889
|
+
"projectId": "__PROJECT_ID__",
|
|
890
|
+
"draftId": null,
|
|
891
|
+
"runtimePromotionAllowed": false,
|
|
892
|
+
"defaultDecision": "evidence_linked_claim_required",
|
|
893
|
+
"claimTypes": [
|
|
894
|
+
"scope_boundary",
|
|
895
|
+
"source_provenance",
|
|
896
|
+
"knowledge_integrity",
|
|
897
|
+
"memory_safety",
|
|
898
|
+
"action_safety",
|
|
899
|
+
"task_coverage",
|
|
900
|
+
"world_coverage",
|
|
901
|
+
"promotion_safety",
|
|
902
|
+
"sync_integrity",
|
|
903
|
+
"red_team_reporting",
|
|
904
|
+
"rejected_overclaim"
|
|
905
|
+
],
|
|
906
|
+
"evidenceKinds": [
|
|
907
|
+
"schema_check",
|
|
908
|
+
"fixture_check",
|
|
909
|
+
"public_safety_check",
|
|
910
|
+
"typecheck",
|
|
911
|
+
"build",
|
|
912
|
+
"sync_check",
|
|
913
|
+
"shadow_replay",
|
|
914
|
+
"canary_replay",
|
|
915
|
+
"rollback_drill",
|
|
916
|
+
"constraint_validation",
|
|
917
|
+
"provenance_standard",
|
|
918
|
+
"official_standard",
|
|
919
|
+
"red_team_report",
|
|
920
|
+
"human_review",
|
|
921
|
+
"rejected_claim"
|
|
922
|
+
],
|
|
923
|
+
"validators": [
|
|
924
|
+
"json_schema",
|
|
925
|
+
"jsonl_fixture_checker",
|
|
926
|
+
"public_safety_scan",
|
|
927
|
+
"typecheck",
|
|
928
|
+
"sync_gate",
|
|
929
|
+
"shadow_canary_replay",
|
|
930
|
+
"rollback_drill",
|
|
931
|
+
"provenance_ledger",
|
|
932
|
+
"constraint_shape",
|
|
933
|
+
"red_team_question_bank",
|
|
934
|
+
"human_review_queue"
|
|
935
|
+
],
|
|
936
|
+
"researchBasis": [
|
|
937
|
+
"assurance_case",
|
|
938
|
+
"argument_graph",
|
|
939
|
+
"compliance_by_construction",
|
|
940
|
+
"w3c_prov",
|
|
941
|
+
"w3c_shacl",
|
|
942
|
+
"nist_ai_rmf_gai_profile",
|
|
943
|
+
"genai_red_team_reporting",
|
|
944
|
+
"llm_kg_construction",
|
|
945
|
+
"ontology_validation",
|
|
946
|
+
"no_free_lunch"
|
|
947
|
+
],
|
|
948
|
+
"hardStops": [
|
|
949
|
+
"unsupported_claim",
|
|
950
|
+
"missing_required_evidence",
|
|
951
|
+
"hidden_missing_evidence",
|
|
952
|
+
"missing_validator",
|
|
953
|
+
"missing_residual_risk",
|
|
954
|
+
"missing_rollback_plan",
|
|
955
|
+
"perfect_or_zero_error_claim",
|
|
956
|
+
"red_team_without_followup",
|
|
957
|
+
"runtime_claim_without_shadow_or_canary",
|
|
958
|
+
"appbridge_source_of_truth_claim"
|
|
959
|
+
]
|
|
960
|
+
}
|
|
961
|
+
},
|
|
962
|
+
{
|
|
963
|
+
"archKey": "superOntologyKnowledgeHomeostasisFile",
|
|
964
|
+
"file": "super-ontology-knowledge-homeostasis.json",
|
|
965
|
+
"doc": {
|
|
966
|
+
"schemaVersion": "1.0",
|
|
967
|
+
"kind": "agentlas-super-ontology-knowledge-homeostasis",
|
|
968
|
+
"state": "local_candidate",
|
|
969
|
+
"projectId": "__PROJECT_ID__",
|
|
970
|
+
"draftId": null,
|
|
971
|
+
"runtimePromotionAllowed": false,
|
|
972
|
+
"defaultDecision": "homeostasis_required_before_runtime_or_memory_write",
|
|
973
|
+
"signals": [
|
|
974
|
+
"contradiction_rate",
|
|
975
|
+
"stale_claim_age",
|
|
976
|
+
"schema_violation_rate",
|
|
977
|
+
"parser_error_rate",
|
|
978
|
+
"unsupported_claim_rate",
|
|
979
|
+
"repair_backlog",
|
|
980
|
+
"replay_failure_rate",
|
|
981
|
+
"drift_rate",
|
|
982
|
+
"source_freshness",
|
|
983
|
+
"authority_expiry",
|
|
984
|
+
"privacy_incident",
|
|
985
|
+
"promotion_evidence_gap",
|
|
986
|
+
"user_correction_rate",
|
|
987
|
+
"runtime_desync_rate"
|
|
988
|
+
],
|
|
989
|
+
"decisions": [
|
|
990
|
+
"continue",
|
|
991
|
+
"quarantine",
|
|
992
|
+
"degrade_to_read_only",
|
|
993
|
+
"require_review",
|
|
994
|
+
"replay",
|
|
995
|
+
"repair",
|
|
996
|
+
"rollback",
|
|
997
|
+
"block_promotion",
|
|
998
|
+
"retire"
|
|
999
|
+
],
|
|
1000
|
+
"requiredParameters": [
|
|
1001
|
+
"monitored_artifact",
|
|
1002
|
+
"scope_id",
|
|
1003
|
+
"surface",
|
|
1004
|
+
"signal_type",
|
|
1005
|
+
"measurement",
|
|
1006
|
+
"severity",
|
|
1007
|
+
"affected_contexts",
|
|
1008
|
+
"affected_lenses",
|
|
1009
|
+
"affected_claims",
|
|
1010
|
+
"affected_surfaces",
|
|
1011
|
+
"error_budget",
|
|
1012
|
+
"control_decision",
|
|
1013
|
+
"automation_level",
|
|
1014
|
+
"escalation",
|
|
1015
|
+
"evidence_refs",
|
|
1016
|
+
"rollback_plan",
|
|
1017
|
+
"memory_curator_policy",
|
|
1018
|
+
"public_export_policy"
|
|
1019
|
+
],
|
|
1020
|
+
"researchBasis": [
|
|
1021
|
+
"shacl_validation",
|
|
1022
|
+
"kg_repair_evaluation",
|
|
1023
|
+
"ontology_change_propagation",
|
|
1024
|
+
"truth_maintenance",
|
|
1025
|
+
"data_observability",
|
|
1026
|
+
"resilience_engineering",
|
|
1027
|
+
"homeostatic_control",
|
|
1028
|
+
"w3c_prov",
|
|
1029
|
+
"nist_ai_rmf",
|
|
1030
|
+
"ai_agent_index"
|
|
1031
|
+
],
|
|
1032
|
+
"hardStops": [
|
|
1033
|
+
"error_budget_overrun_continues",
|
|
1034
|
+
"critical_homeostasis_runtime_write",
|
|
1035
|
+
"privacy_incident_public_export",
|
|
1036
|
+
"appbridge_route_as_source_authority",
|
|
1037
|
+
"stale_claim_as_current_truth",
|
|
1038
|
+
"parser_error_as_complete_source",
|
|
1039
|
+
"missing_homeostasis_evidence",
|
|
1040
|
+
"memory_write_without_ticket_or_quarantine",
|
|
1041
|
+
"runtime_desync_ignored",
|
|
1042
|
+
"literal_perfection_claim"
|
|
1043
|
+
]
|
|
1044
|
+
}
|
|
1045
|
+
},
|
|
1046
|
+
{
|
|
1047
|
+
"archKey": "superOntologyAdversarialProvenanceFile",
|
|
1048
|
+
"file": "super-ontology-adversarial-provenance.json",
|
|
1049
|
+
"doc": {
|
|
1050
|
+
"schemaVersion": "1.0",
|
|
1051
|
+
"kind": "agentlas-super-ontology-adversarial-provenance",
|
|
1052
|
+
"state": "local_candidate",
|
|
1053
|
+
"projectId": "__PROJECT_ID__",
|
|
1054
|
+
"draftId": null,
|
|
1055
|
+
"runtimePromotionAllowed": false,
|
|
1056
|
+
"defaultDecision": "zero_trust_provenance_required_before_retrieval_memory_tool_or_public_seed",
|
|
1057
|
+
"sourceChannels": [
|
|
1058
|
+
"upload",
|
|
1059
|
+
"web",
|
|
1060
|
+
"email",
|
|
1061
|
+
"chat",
|
|
1062
|
+
"tool_response",
|
|
1063
|
+
"connector",
|
|
1064
|
+
"memory_recall",
|
|
1065
|
+
"public_repo",
|
|
1066
|
+
"media_asset",
|
|
1067
|
+
"appbridge_route",
|
|
1068
|
+
"generated_artifact",
|
|
1069
|
+
"dataset"
|
|
1070
|
+
],
|
|
1071
|
+
"attackVectors": [
|
|
1072
|
+
"prompt_injection",
|
|
1073
|
+
"instruction_smuggling",
|
|
1074
|
+
"data_poisoning",
|
|
1075
|
+
"provenance_forgery",
|
|
1076
|
+
"citation_spoofing",
|
|
1077
|
+
"tool_output_tampering",
|
|
1078
|
+
"ocr_hidden_text",
|
|
1079
|
+
"cross_context_exfiltration",
|
|
1080
|
+
"supply_chain_tampering",
|
|
1081
|
+
"memory_poisoning",
|
|
1082
|
+
"social_engineering",
|
|
1083
|
+
"model_policy_bypass",
|
|
1084
|
+
"media_provenance_conflict",
|
|
1085
|
+
"stale_trusted_source_replay"
|
|
1086
|
+
],
|
|
1087
|
+
"trustBoundaries": [
|
|
1088
|
+
"untrusted_external",
|
|
1089
|
+
"user_private",
|
|
1090
|
+
"company_internal",
|
|
1091
|
+
"customer_confidential",
|
|
1092
|
+
"public_web",
|
|
1093
|
+
"runtime_tool",
|
|
1094
|
+
"agent_internal",
|
|
1095
|
+
"memory_store",
|
|
1096
|
+
"release_artifact"
|
|
1097
|
+
],
|
|
1098
|
+
"instructionPolicies": [
|
|
1099
|
+
"treat_as_data_only",
|
|
1100
|
+
"strip_instructions",
|
|
1101
|
+
"quote_only",
|
|
1102
|
+
"sandbox_tool_output",
|
|
1103
|
+
"require_signature",
|
|
1104
|
+
"require_human_review",
|
|
1105
|
+
"block"
|
|
1106
|
+
],
|
|
1107
|
+
"retrievalPolicies": [
|
|
1108
|
+
"exclude_from_retrieval",
|
|
1109
|
+
"metadata_only",
|
|
1110
|
+
"citation_only",
|
|
1111
|
+
"quarantined_candidate",
|
|
1112
|
+
"low_trust_retrieval",
|
|
1113
|
+
"allow_after_verification"
|
|
1114
|
+
],
|
|
1115
|
+
"memoryPolicies": [
|
|
1116
|
+
"no_memory",
|
|
1117
|
+
"quarantine_ticket",
|
|
1118
|
+
"redact_then_ticket",
|
|
1119
|
+
"supersede_after_review",
|
|
1120
|
+
"discard"
|
|
1121
|
+
],
|
|
1122
|
+
"toolPolicies": [
|
|
1123
|
+
"no_tool_use",
|
|
1124
|
+
"dry_run_only",
|
|
1125
|
+
"allowlisted_read_only",
|
|
1126
|
+
"require_human_approval",
|
|
1127
|
+
"block_external_effect"
|
|
1128
|
+
],
|
|
1129
|
+
"promotionDecisions": [
|
|
1130
|
+
"allow_read",
|
|
1131
|
+
"quarantine",
|
|
1132
|
+
"review_required",
|
|
1133
|
+
"shadow_required",
|
|
1134
|
+
"block",
|
|
1135
|
+
"retire_source"
|
|
1136
|
+
],
|
|
1137
|
+
"requiredParameters": [
|
|
1138
|
+
"source_channel",
|
|
1139
|
+
"attack_vector",
|
|
1140
|
+
"trust_boundary",
|
|
1141
|
+
"claimed_authority",
|
|
1142
|
+
"observed_artifact",
|
|
1143
|
+
"provenance_evidence",
|
|
1144
|
+
"integrity_checks",
|
|
1145
|
+
"instruction_policy",
|
|
1146
|
+
"retrieval_policy",
|
|
1147
|
+
"memory_policy",
|
|
1148
|
+
"tool_policy",
|
|
1149
|
+
"promotion_decision",
|
|
1150
|
+
"required_controls",
|
|
1151
|
+
"must_not_do",
|
|
1152
|
+
"evidence_refs",
|
|
1153
|
+
"rollback_plan"
|
|
1154
|
+
],
|
|
1155
|
+
"researchBasis": [
|
|
1156
|
+
"owasp_llm_top10",
|
|
1157
|
+
"mitre_atlas",
|
|
1158
|
+
"nist_adversarial_ml",
|
|
1159
|
+
"slsa_provenance",
|
|
1160
|
+
"in_toto_attestation",
|
|
1161
|
+
"c2pa_content_credentials",
|
|
1162
|
+
"zero_trust_architecture",
|
|
1163
|
+
"information_flow_control",
|
|
1164
|
+
"adversarial_rag",
|
|
1165
|
+
"secure_rag_prompt_injection"
|
|
1166
|
+
],
|
|
1167
|
+
"hardStops": [
|
|
1168
|
+
"prompt_injection_as_instruction",
|
|
1169
|
+
"instruction_smuggling_as_policy",
|
|
1170
|
+
"poisoned_source_to_memory",
|
|
1171
|
+
"forged_provenance_as_trusted_source",
|
|
1172
|
+
"spoofed_citation_as_grounded_fact",
|
|
1173
|
+
"tool_output_tampering_to_action",
|
|
1174
|
+
"hidden_ocr_instruction_as_user_intent",
|
|
1175
|
+
"cross_context_exfiltration",
|
|
1176
|
+
"unsigned_release_artifact",
|
|
1177
|
+
"route_output_as_source_write_authority",
|
|
1178
|
+
"stale_trusted_source_replay_as_current_truth",
|
|
1179
|
+
"missing_adversarial_provenance_evidence"
|
|
1180
|
+
]
|
|
1181
|
+
}
|
|
1182
|
+
},
|
|
1183
|
+
{
|
|
1184
|
+
"archKey": "superOntologyEpistemicCalibrationFile",
|
|
1185
|
+
"file": "super-ontology-epistemic-calibration.json",
|
|
1186
|
+
"doc": {
|
|
1187
|
+
"schemaVersion": "1.0",
|
|
1188
|
+
"kind": "agentlas-super-ontology-epistemic-calibration",
|
|
1189
|
+
"state": "local_candidate",
|
|
1190
|
+
"projectId": "__PROJECT_ID__",
|
|
1191
|
+
"draftId": null,
|
|
1192
|
+
"runtimePromotionAllowed": false,
|
|
1193
|
+
"defaultDecision": "calibrated_uncertainty_required_before_answer_memory_tool_or_public_seed",
|
|
1194
|
+
"contextTypes": [
|
|
1195
|
+
"user_personal",
|
|
1196
|
+
"company_internal",
|
|
1197
|
+
"customer_confidential",
|
|
1198
|
+
"public_web",
|
|
1199
|
+
"regulated",
|
|
1200
|
+
"scientific",
|
|
1201
|
+
"software",
|
|
1202
|
+
"finance_compliance",
|
|
1203
|
+
"physical",
|
|
1204
|
+
"creative",
|
|
1205
|
+
"agent_internal",
|
|
1206
|
+
"mixed_context",
|
|
1207
|
+
"multimodal",
|
|
1208
|
+
"appbridge_route",
|
|
1209
|
+
"release_surface"
|
|
1210
|
+
],
|
|
1211
|
+
"claimTypes": [
|
|
1212
|
+
"factual_answer",
|
|
1213
|
+
"graph_edge",
|
|
1214
|
+
"ontology_class",
|
|
1215
|
+
"relation_mapping",
|
|
1216
|
+
"action_plan",
|
|
1217
|
+
"memory_write",
|
|
1218
|
+
"tool_action",
|
|
1219
|
+
"public_export",
|
|
1220
|
+
"legal_or_policy",
|
|
1221
|
+
"financial_estimate",
|
|
1222
|
+
"scientific_claim",
|
|
1223
|
+
"physical_action",
|
|
1224
|
+
"creative_generation",
|
|
1225
|
+
"route_sync",
|
|
1226
|
+
"generated_artifact"
|
|
1227
|
+
],
|
|
1228
|
+
"uncertaintySources": [
|
|
1229
|
+
"missing_evidence",
|
|
1230
|
+
"conflicting_sources",
|
|
1231
|
+
"low_retrieval_relevance",
|
|
1232
|
+
"distribution_shift",
|
|
1233
|
+
"ambiguous_intent",
|
|
1234
|
+
"insufficient_permissions",
|
|
1235
|
+
"temporal_staleness",
|
|
1236
|
+
"noisy_ocr",
|
|
1237
|
+
"model_disagreement",
|
|
1238
|
+
"tool_inconclusive",
|
|
1239
|
+
"causal_unknown",
|
|
1240
|
+
"private_context_gap",
|
|
1241
|
+
"benchmark_gap",
|
|
1242
|
+
"low_calibration_support",
|
|
1243
|
+
"adversarial_source_uncertain",
|
|
1244
|
+
"no_ground_truth"
|
|
1245
|
+
],
|
|
1246
|
+
"epistemicStates": [
|
|
1247
|
+
"known_enough_for_read",
|
|
1248
|
+
"partially_supported",
|
|
1249
|
+
"contested",
|
|
1250
|
+
"underspecified",
|
|
1251
|
+
"out_of_distribution",
|
|
1252
|
+
"uncalibrated",
|
|
1253
|
+
"unknowable_for_now"
|
|
1254
|
+
],
|
|
1255
|
+
"calibrationSignals": [
|
|
1256
|
+
"conformal_set_size",
|
|
1257
|
+
"confidence_interval",
|
|
1258
|
+
"prediction_set",
|
|
1259
|
+
"abstention_score",
|
|
1260
|
+
"evidence_coverage",
|
|
1261
|
+
"retrieval_entropy",
|
|
1262
|
+
"contradiction_score",
|
|
1263
|
+
"judge_interval",
|
|
1264
|
+
"self_eval_none_of_above",
|
|
1265
|
+
"ensemble_disagreement",
|
|
1266
|
+
"holdout_error_rate",
|
|
1267
|
+
"calibration_error",
|
|
1268
|
+
"ood_score",
|
|
1269
|
+
"human_feedback_gap"
|
|
1270
|
+
],
|
|
1271
|
+
"confidenceBands": [
|
|
1272
|
+
"calibrated_high",
|
|
1273
|
+
"calibrated_medium",
|
|
1274
|
+
"calibrated_low",
|
|
1275
|
+
"uncalibrated",
|
|
1276
|
+
"unknown"
|
|
1277
|
+
],
|
|
1278
|
+
"riskTiers": [
|
|
1279
|
+
"low",
|
|
1280
|
+
"moderate",
|
|
1281
|
+
"high",
|
|
1282
|
+
"critical"
|
|
1283
|
+
],
|
|
1284
|
+
"allowedOutputs": [
|
|
1285
|
+
"answer_with_caveat",
|
|
1286
|
+
"ask_clarifying_question",
|
|
1287
|
+
"retrieve_more",
|
|
1288
|
+
"cite_only",
|
|
1289
|
+
"draft_only",
|
|
1290
|
+
"human_review",
|
|
1291
|
+
"abstain",
|
|
1292
|
+
"block",
|
|
1293
|
+
"shadow_replay"
|
|
1294
|
+
],
|
|
1295
|
+
"requiredParameters": [
|
|
1296
|
+
"context_type",
|
|
1297
|
+
"claim_type",
|
|
1298
|
+
"uncertainty_source",
|
|
1299
|
+
"epistemic_state",
|
|
1300
|
+
"calibration_signal",
|
|
1301
|
+
"confidence_band",
|
|
1302
|
+
"risk_tier",
|
|
1303
|
+
"allowed_output",
|
|
1304
|
+
"required_controls",
|
|
1305
|
+
"blocked_shortcuts",
|
|
1306
|
+
"evidence_refs",
|
|
1307
|
+
"research_basis",
|
|
1308
|
+
"memory_policy",
|
|
1309
|
+
"tool_policy",
|
|
1310
|
+
"public_export_policy",
|
|
1311
|
+
"rollback_plan"
|
|
1312
|
+
],
|
|
1313
|
+
"researchBasis": [
|
|
1314
|
+
"conformal_prediction",
|
|
1315
|
+
"conformal_risk_control",
|
|
1316
|
+
"selective_prediction",
|
|
1317
|
+
"abstention_policy",
|
|
1318
|
+
"llm_self_evaluation",
|
|
1319
|
+
"verbalized_confidence_calibration",
|
|
1320
|
+
"rag_uncertainty_benchmark",
|
|
1321
|
+
"nist_ai_rmf",
|
|
1322
|
+
"ood_detection",
|
|
1323
|
+
"human_in_the_loop",
|
|
1324
|
+
"calibration_error",
|
|
1325
|
+
"uncertainty_alignment"
|
|
1326
|
+
],
|
|
1327
|
+
"hardStops": [
|
|
1328
|
+
"missing_evidence_as_complete_answer",
|
|
1329
|
+
"conflicting_sources_as_current_truth",
|
|
1330
|
+
"low_retrieval_relevance_as_confident_answer",
|
|
1331
|
+
"ambiguous_intent_to_memory_write",
|
|
1332
|
+
"distribution_shift_to_financial_estimate",
|
|
1333
|
+
"stale_policy_as_current_policy",
|
|
1334
|
+
"model_disagreement_as_consensus",
|
|
1335
|
+
"noisy_ocr_as_ontology_class",
|
|
1336
|
+
"inconclusive_tool_output_to_action",
|
|
1337
|
+
"causal_unknown_to_physical_action",
|
|
1338
|
+
"benchmark_gap_to_public_release",
|
|
1339
|
+
"uncalibrated_route_sync",
|
|
1340
|
+
"adversarial_uncertainty_to_graph_edge",
|
|
1341
|
+
"wide_judge_interval_to_regulated_answer"
|
|
1342
|
+
]
|
|
1343
|
+
}
|
|
1344
|
+
},
|
|
1345
|
+
{
|
|
1346
|
+
"archKey": "superOntologySemanticAlignmentFile",
|
|
1347
|
+
"file": "super-ontology-semantic-alignment.json",
|
|
1348
|
+
"doc": {
|
|
1349
|
+
"schemaVersion": "1.0",
|
|
1350
|
+
"kind": "agentlas-super-ontology-semantic-alignment",
|
|
1351
|
+
"state": "local_candidate",
|
|
1352
|
+
"projectId": "__PROJECT_ID__",
|
|
1353
|
+
"draftId": null,
|
|
1354
|
+
"runtimePromotionAllowed": false,
|
|
1355
|
+
"defaultDecision": "scoped_candidate_alignment_required_before_graph_memory_or_public_seed",
|
|
1356
|
+
"sourceContexts": [
|
|
1357
|
+
"company_internal",
|
|
1358
|
+
"user_personal",
|
|
1359
|
+
"customer_confidential",
|
|
1360
|
+
"public_web",
|
|
1361
|
+
"regulated",
|
|
1362
|
+
"scientific",
|
|
1363
|
+
"software_schema",
|
|
1364
|
+
"finance_compliance",
|
|
1365
|
+
"multimodal_ocr",
|
|
1366
|
+
"appbridge_route",
|
|
1367
|
+
"release_surface",
|
|
1368
|
+
"cross_team",
|
|
1369
|
+
"legacy_system",
|
|
1370
|
+
"mixed_context",
|
|
1371
|
+
"generated_artifact"
|
|
1372
|
+
],
|
|
1373
|
+
"artifactTypes": [
|
|
1374
|
+
"glossary",
|
|
1375
|
+
"database_schema",
|
|
1376
|
+
"spreadsheet",
|
|
1377
|
+
"presentation",
|
|
1378
|
+
"contract",
|
|
1379
|
+
"policy_doc",
|
|
1380
|
+
"source_code",
|
|
1381
|
+
"ticket",
|
|
1382
|
+
"email",
|
|
1383
|
+
"pdf",
|
|
1384
|
+
"image_ocr",
|
|
1385
|
+
"ontology",
|
|
1386
|
+
"knowledge_graph",
|
|
1387
|
+
"app_route",
|
|
1388
|
+
"generated_output"
|
|
1389
|
+
],
|
|
1390
|
+
"alignmentIntents": [
|
|
1391
|
+
"synonym_discovery",
|
|
1392
|
+
"schema_column_match",
|
|
1393
|
+
"class_alignment",
|
|
1394
|
+
"property_alignment",
|
|
1395
|
+
"entity_resolution",
|
|
1396
|
+
"hierarchy_mapping",
|
|
1397
|
+
"relation_mapping",
|
|
1398
|
+
"unit_mapping",
|
|
1399
|
+
"business_process_mapping",
|
|
1400
|
+
"compliance_mapping",
|
|
1401
|
+
"source_system_merge",
|
|
1402
|
+
"ontology_change",
|
|
1403
|
+
"release_sync",
|
|
1404
|
+
"memory_merge",
|
|
1405
|
+
"no_match_detection"
|
|
1406
|
+
],
|
|
1407
|
+
"candidateRelations": [
|
|
1408
|
+
"exact_match",
|
|
1409
|
+
"close_match",
|
|
1410
|
+
"broad_match",
|
|
1411
|
+
"narrow_match",
|
|
1412
|
+
"related_match",
|
|
1413
|
+
"equivalent_class",
|
|
1414
|
+
"equivalent_property",
|
|
1415
|
+
"same_individual",
|
|
1416
|
+
"synonym",
|
|
1417
|
+
"no_match",
|
|
1418
|
+
"conflict"
|
|
1419
|
+
],
|
|
1420
|
+
"alignmentScopes": [
|
|
1421
|
+
"local_task",
|
|
1422
|
+
"project",
|
|
1423
|
+
"team",
|
|
1424
|
+
"company",
|
|
1425
|
+
"customer",
|
|
1426
|
+
"regulated_domain",
|
|
1427
|
+
"public_export",
|
|
1428
|
+
"appbridge_route",
|
|
1429
|
+
"release_surface"
|
|
1430
|
+
],
|
|
1431
|
+
"ambiguityTypes": [
|
|
1432
|
+
"homonym",
|
|
1433
|
+
"synonym",
|
|
1434
|
+
"polysemy",
|
|
1435
|
+
"abbreviation",
|
|
1436
|
+
"language_variant",
|
|
1437
|
+
"unit_mismatch",
|
|
1438
|
+
"temporal_version",
|
|
1439
|
+
"scope_collision",
|
|
1440
|
+
"granularity_mismatch",
|
|
1441
|
+
"relation_direction_unknown",
|
|
1442
|
+
"entity_class_confusion",
|
|
1443
|
+
"ocr_noise",
|
|
1444
|
+
"source_conflict",
|
|
1445
|
+
"generated_label",
|
|
1446
|
+
"missing_definition"
|
|
1447
|
+
],
|
|
1448
|
+
"validationChecks": [
|
|
1449
|
+
"candidate_retrieval",
|
|
1450
|
+
"bidirectional_check",
|
|
1451
|
+
"contradiction_check",
|
|
1452
|
+
"disjointness_check",
|
|
1453
|
+
"transitivity_check",
|
|
1454
|
+
"sample_instance_check",
|
|
1455
|
+
"roundtrip_query_check",
|
|
1456
|
+
"shacl_validation",
|
|
1457
|
+
"owl_consistency",
|
|
1458
|
+
"kgcl_diff",
|
|
1459
|
+
"human_owner_review",
|
|
1460
|
+
"rollback_drill",
|
|
1461
|
+
"shadow_replay",
|
|
1462
|
+
"relation_direction_check",
|
|
1463
|
+
"unit_compatibility"
|
|
1464
|
+
],
|
|
1465
|
+
"researchBasis": [
|
|
1466
|
+
"skos_mapping",
|
|
1467
|
+
"owl_reasoning",
|
|
1468
|
+
"shacl_validation",
|
|
1469
|
+
"kgcl_change_language",
|
|
1470
|
+
"llm_schema_matching",
|
|
1471
|
+
"retrieval_augmented_ontology_matching",
|
|
1472
|
+
"human_in_loop_schema_discovery",
|
|
1473
|
+
"schema_rollup_drilldown",
|
|
1474
|
+
"entity_resolution",
|
|
1475
|
+
"data_contracts",
|
|
1476
|
+
"provenance_review",
|
|
1477
|
+
"ontology_change_management"
|
|
1478
|
+
],
|
|
1479
|
+
"hardStops": [
|
|
1480
|
+
"same_label_as_same_meaning",
|
|
1481
|
+
"embedding_similarity_as_exact_match",
|
|
1482
|
+
"close_match_as_transitive_truth",
|
|
1483
|
+
"abbreviation_without_owner_glossary",
|
|
1484
|
+
"broad_or_narrow_without_direction_check",
|
|
1485
|
+
"generated_label_as_ontology_class",
|
|
1486
|
+
"ocr_label_as_property_alignment",
|
|
1487
|
+
"appbridge_route_as_source_ontology_edit",
|
|
1488
|
+
"source_conflict_to_memory_merge",
|
|
1489
|
+
"customer_confidential_mapping_to_public_export",
|
|
1490
|
+
"release_sync_without_rollback",
|
|
1491
|
+
"ontology_change_without_diff",
|
|
1492
|
+
"same_individual_without_stable_identifier",
|
|
1493
|
+
"unit_label_without_unit_compatibility",
|
|
1494
|
+
"no_match_promoted_to_weak_match"
|
|
1495
|
+
]
|
|
1496
|
+
}
|
|
1497
|
+
},
|
|
1498
|
+
{
|
|
1499
|
+
"archKey": "superOntologyResilienceControlFile",
|
|
1500
|
+
"file": "super-ontology-resilience-control.json",
|
|
1501
|
+
"doc": {
|
|
1502
|
+
"schemaVersion": "1.0",
|
|
1503
|
+
"kind": "agentlas-super-ontology-resilience-control",
|
|
1504
|
+
"state": "local_candidate",
|
|
1505
|
+
"projectId": "__PROJECT_ID__",
|
|
1506
|
+
"draftId": null,
|
|
1507
|
+
"runtimePromotionAllowed": false,
|
|
1508
|
+
"defaultDecision": "degrade_authority_before_runtime_graph_memory_tool_or_sync_write",
|
|
1509
|
+
"controlLoopPhases": [
|
|
1510
|
+
"monitor",
|
|
1511
|
+
"analyze",
|
|
1512
|
+
"plan",
|
|
1513
|
+
"execute",
|
|
1514
|
+
"learn",
|
|
1515
|
+
"sync"
|
|
1516
|
+
],
|
|
1517
|
+
"operatingModes": [
|
|
1518
|
+
"nominal",
|
|
1519
|
+
"watch",
|
|
1520
|
+
"degraded",
|
|
1521
|
+
"shadow_only",
|
|
1522
|
+
"read_only",
|
|
1523
|
+
"quarantine",
|
|
1524
|
+
"owner_review",
|
|
1525
|
+
"rollback",
|
|
1526
|
+
"emergency_stop"
|
|
1527
|
+
],
|
|
1528
|
+
"degradationSignals": [
|
|
1529
|
+
"contradiction_spike",
|
|
1530
|
+
"validator_disagreement",
|
|
1531
|
+
"retrieval_drift",
|
|
1532
|
+
"semantic_alignment_regression",
|
|
1533
|
+
"provenance_gap",
|
|
1534
|
+
"memory_curator_backlog",
|
|
1535
|
+
"tool_error_spike",
|
|
1536
|
+
"user_correction_spike",
|
|
1537
|
+
"unknown_task_family",
|
|
1538
|
+
"context_flow_violation",
|
|
1539
|
+
"causal_impact_uncertain",
|
|
1540
|
+
"sync_drift",
|
|
1541
|
+
"model_judge_divergence",
|
|
1542
|
+
"latency_budget_overrun",
|
|
1543
|
+
"replay_failure",
|
|
1544
|
+
"permission_boundary_unknown",
|
|
1545
|
+
"sensor_or_parser_degraded",
|
|
1546
|
+
"external_side_effect_detected"
|
|
1547
|
+
],
|
|
1548
|
+
"hazardTypes": [
|
|
1549
|
+
"unsafe_control_action",
|
|
1550
|
+
"missing_feedback",
|
|
1551
|
+
"delayed_feedback",
|
|
1552
|
+
"wrong_mode",
|
|
1553
|
+
"authority_escalation",
|
|
1554
|
+
"control_loop_oscillation",
|
|
1555
|
+
"stale_process_model",
|
|
1556
|
+
"degraded_sensor",
|
|
1557
|
+
"conflicting_controller",
|
|
1558
|
+
"runaway_repair",
|
|
1559
|
+
"unbounded_retry",
|
|
1560
|
+
"brittle_threshold",
|
|
1561
|
+
"silent_fail_open",
|
|
1562
|
+
"operator_overload"
|
|
1563
|
+
],
|
|
1564
|
+
"controlDecisions": [
|
|
1565
|
+
"continue",
|
|
1566
|
+
"observe",
|
|
1567
|
+
"ask_clarify",
|
|
1568
|
+
"retrieve_more",
|
|
1569
|
+
"shadow_only",
|
|
1570
|
+
"read_only",
|
|
1571
|
+
"quarantine",
|
|
1572
|
+
"require_owner_review",
|
|
1573
|
+
"rollback",
|
|
1574
|
+
"emergency_stop"
|
|
1575
|
+
],
|
|
1576
|
+
"requiredFeedback": [
|
|
1577
|
+
"fresh_source_retrieval",
|
|
1578
|
+
"validator_matrix",
|
|
1579
|
+
"curator_queue_depth",
|
|
1580
|
+
"tool_trace",
|
|
1581
|
+
"source_identity_check",
|
|
1582
|
+
"contextual_flow_replay",
|
|
1583
|
+
"causal_impact_review",
|
|
1584
|
+
"semantic_alignment_replay",
|
|
1585
|
+
"epistemic_calibration_replay",
|
|
1586
|
+
"architecture_sync_diff",
|
|
1587
|
+
"rollback_confirmation",
|
|
1588
|
+
"owner_review_ticket"
|
|
1589
|
+
],
|
|
1590
|
+
"researchBasis": [
|
|
1591
|
+
"mape_k",
|
|
1592
|
+
"self_adaptive_systems",
|
|
1593
|
+
"stpa",
|
|
1594
|
+
"unsafe_control_actions",
|
|
1595
|
+
"robustness_analysis",
|
|
1596
|
+
"degradation_state_analysis",
|
|
1597
|
+
"agentic_self_awareness",
|
|
1598
|
+
"adaptive_hierarchical_kg",
|
|
1599
|
+
"resilience_engineering",
|
|
1600
|
+
"cybernetics_feedback",
|
|
1601
|
+
"incident_command",
|
|
1602
|
+
"sociotechnical_escalation"
|
|
1603
|
+
],
|
|
1604
|
+
"hardStops": [
|
|
1605
|
+
"validator_disagreement_to_graph_write",
|
|
1606
|
+
"retrieval_drift_to_current_answer",
|
|
1607
|
+
"semantic_regression_to_memory_merge",
|
|
1608
|
+
"provenance_gap_to_tool_authority",
|
|
1609
|
+
"curator_backlog_to_direct_memory_write",
|
|
1610
|
+
"tool_error_spike_to_unbounded_retry",
|
|
1611
|
+
"unknown_task_to_normal_execution",
|
|
1612
|
+
"context_flow_violation_to_public_export",
|
|
1613
|
+
"sync_drift_to_release_surface",
|
|
1614
|
+
"judge_divergence_to_regulated_answer",
|
|
1615
|
+
"degraded_parser_to_ontology_class",
|
|
1616
|
+
"rollback_failure_to_runtime_promotion",
|
|
1617
|
+
"emergency_stop_bypass_by_route"
|
|
1618
|
+
]
|
|
1619
|
+
}
|
|
1620
|
+
},
|
|
1621
|
+
{
|
|
1622
|
+
"archKey": "superOntologyInvariantVerificationFile",
|
|
1623
|
+
"file": "super-ontology-invariant-verification.json",
|
|
1624
|
+
"doc": {
|
|
1625
|
+
"schemaVersion": "1.0",
|
|
1626
|
+
"kind": "agentlas-super-ontology-invariant-verification",
|
|
1627
|
+
"state": "local_candidate",
|
|
1628
|
+
"projectId": "__PROJECT_ID__",
|
|
1629
|
+
"draftId": null,
|
|
1630
|
+
"runtimePromotionAllowed": false,
|
|
1631
|
+
"defaultDecision": "runtime_monitor_required_before_graph_memory_tool_route_release_or_public_write",
|
|
1632
|
+
"eventStreams": [
|
|
1633
|
+
"source_intake",
|
|
1634
|
+
"evidence_packet",
|
|
1635
|
+
"belief_update",
|
|
1636
|
+
"semantic_alignment",
|
|
1637
|
+
"resilience_mode",
|
|
1638
|
+
"memory_ticket",
|
|
1639
|
+
"graph_write",
|
|
1640
|
+
"tool_call",
|
|
1641
|
+
"public_export",
|
|
1642
|
+
"route_sync",
|
|
1643
|
+
"release_seed",
|
|
1644
|
+
"rollback",
|
|
1645
|
+
"emergency_stop"
|
|
1646
|
+
],
|
|
1647
|
+
"invariantTypes": [
|
|
1648
|
+
"safety",
|
|
1649
|
+
"liveness",
|
|
1650
|
+
"ordering",
|
|
1651
|
+
"separation",
|
|
1652
|
+
"cardinality",
|
|
1653
|
+
"idempotency",
|
|
1654
|
+
"provenance",
|
|
1655
|
+
"authority",
|
|
1656
|
+
"consent",
|
|
1657
|
+
"rollback",
|
|
1658
|
+
"audit",
|
|
1659
|
+
"determinism"
|
|
1660
|
+
],
|
|
1661
|
+
"temporalOperators": [
|
|
1662
|
+
"always",
|
|
1663
|
+
"never",
|
|
1664
|
+
"eventually",
|
|
1665
|
+
"until",
|
|
1666
|
+
"before",
|
|
1667
|
+
"after",
|
|
1668
|
+
"within",
|
|
1669
|
+
"once"
|
|
1670
|
+
],
|
|
1671
|
+
"monitors": [
|
|
1672
|
+
"json_schema",
|
|
1673
|
+
"event_sequence",
|
|
1674
|
+
"state_machine",
|
|
1675
|
+
"temporal_logic",
|
|
1676
|
+
"property_test",
|
|
1677
|
+
"shadow_replay",
|
|
1678
|
+
"model_check",
|
|
1679
|
+
"sync_check",
|
|
1680
|
+
"curator_ticket_audit",
|
|
1681
|
+
"human_owner_review"
|
|
1682
|
+
],
|
|
1683
|
+
"violationActions": [
|
|
1684
|
+
"block",
|
|
1685
|
+
"reject",
|
|
1686
|
+
"quarantine",
|
|
1687
|
+
"rollback",
|
|
1688
|
+
"emergency_stop",
|
|
1689
|
+
"ask_clarify",
|
|
1690
|
+
"review_required",
|
|
1691
|
+
"shadow_only"
|
|
1692
|
+
],
|
|
1693
|
+
"researchBasis": [
|
|
1694
|
+
"runtime_verification",
|
|
1695
|
+
"temporal_logic",
|
|
1696
|
+
"model_checking",
|
|
1697
|
+
"contract_based_design",
|
|
1698
|
+
"assume_guarantee_contracts",
|
|
1699
|
+
"finite_state_monitor",
|
|
1700
|
+
"agent_runtime_monitoring",
|
|
1701
|
+
"formal_methods_for_planning",
|
|
1702
|
+
"formal_skill_verification",
|
|
1703
|
+
"multi_agent_safety_invariants",
|
|
1704
|
+
"memory_safety_invariants",
|
|
1705
|
+
"audit_log_invariants"
|
|
1706
|
+
],
|
|
1707
|
+
"hardStops": [
|
|
1708
|
+
"memory_write_without_ticket_invariant",
|
|
1709
|
+
"graph_write_without_evidence_invariant",
|
|
1710
|
+
"tool_action_without_authority_invariant",
|
|
1711
|
+
"public_export_without_flow_invariant",
|
|
1712
|
+
"route_sync_without_source_contract_invariant",
|
|
1713
|
+
"rollback_not_observed_after_violation",
|
|
1714
|
+
"emergency_stop_transition_bypassed",
|
|
1715
|
+
"unordered_multi_agent_write",
|
|
1716
|
+
"non_idempotent_replay_mutation"
|
|
1717
|
+
]
|
|
1718
|
+
}
|
|
1719
|
+
},
|
|
1720
|
+
{
|
|
1721
|
+
"archKey": "superOntologyObservabilityTelemetryFile",
|
|
1722
|
+
"file": "super-ontology-observability-telemetry.json",
|
|
1723
|
+
"doc": {
|
|
1724
|
+
"schemaVersion": "1.0",
|
|
1725
|
+
"kind": "agentlas-super-ontology-observability-telemetry",
|
|
1726
|
+
"state": "local_candidate",
|
|
1727
|
+
"projectId": "__PROJECT_ID__",
|
|
1728
|
+
"draftId": null,
|
|
1729
|
+
"runtimePromotionAllowed": false,
|
|
1730
|
+
"defaultDecision": "observability_required_before_runtime_graph_memory_tool_route_release_or_public_write",
|
|
1731
|
+
"eventTypes": [
|
|
1732
|
+
"source_intake",
|
|
1733
|
+
"evidence_packet",
|
|
1734
|
+
"belief_update",
|
|
1735
|
+
"graph_write",
|
|
1736
|
+
"memory_ticket",
|
|
1737
|
+
"tool_action",
|
|
1738
|
+
"public_export",
|
|
1739
|
+
"route_sync",
|
|
1740
|
+
"release_seed",
|
|
1741
|
+
"repair_event",
|
|
1742
|
+
"rollback",
|
|
1743
|
+
"emergency_stop"
|
|
1744
|
+
],
|
|
1745
|
+
"failureModes": [
|
|
1746
|
+
"missing_trace_id",
|
|
1747
|
+
"dropped_span",
|
|
1748
|
+
"partial_log",
|
|
1749
|
+
"stale_metric",
|
|
1750
|
+
"redaction_gap",
|
|
1751
|
+
"audit_sink_down",
|
|
1752
|
+
"clock_skew",
|
|
1753
|
+
"sample_bias",
|
|
1754
|
+
"alert_suppression",
|
|
1755
|
+
"replay_not_recorded",
|
|
1756
|
+
"repair_without_snapshot",
|
|
1757
|
+
"cross_surface_correlation_missing"
|
|
1758
|
+
],
|
|
1759
|
+
"requiredTelemetry": [
|
|
1760
|
+
"trace_id",
|
|
1761
|
+
"span_id",
|
|
1762
|
+
"parent_span_id",
|
|
1763
|
+
"correlation_id",
|
|
1764
|
+
"source_ref",
|
|
1765
|
+
"evidence_ref",
|
|
1766
|
+
"actor_role",
|
|
1767
|
+
"authority_state",
|
|
1768
|
+
"decision_state",
|
|
1769
|
+
"risk_tier",
|
|
1770
|
+
"redaction_policy",
|
|
1771
|
+
"retention_policy",
|
|
1772
|
+
"clock_source",
|
|
1773
|
+
"checksum",
|
|
1774
|
+
"before_snapshot_ref",
|
|
1775
|
+
"after_snapshot_ref",
|
|
1776
|
+
"rollback_ref",
|
|
1777
|
+
"alert_ref",
|
|
1778
|
+
"audit_sink_ref",
|
|
1779
|
+
"sample_size"
|
|
1780
|
+
],
|
|
1781
|
+
"traceStates": [
|
|
1782
|
+
"complete",
|
|
1783
|
+
"partial",
|
|
1784
|
+
"missing",
|
|
1785
|
+
"corrupted",
|
|
1786
|
+
"untrusted",
|
|
1787
|
+
"redacted"
|
|
1788
|
+
],
|
|
1789
|
+
"auditChannels": [
|
|
1790
|
+
"jsonl_ledger",
|
|
1791
|
+
"otel_trace",
|
|
1792
|
+
"memory_ticket",
|
|
1793
|
+
"sync_log",
|
|
1794
|
+
"release_log",
|
|
1795
|
+
"tool_receipt",
|
|
1796
|
+
"owner_review_queue"
|
|
1797
|
+
],
|
|
1798
|
+
"decisions": [
|
|
1799
|
+
"allow_read",
|
|
1800
|
+
"candidate_only",
|
|
1801
|
+
"shadow_required",
|
|
1802
|
+
"sync_review_required",
|
|
1803
|
+
"quarantine",
|
|
1804
|
+
"rollback",
|
|
1805
|
+
"emergency_stop",
|
|
1806
|
+
"blocked"
|
|
1807
|
+
],
|
|
1808
|
+
"researchBasis": [
|
|
1809
|
+
"agent_execution_provenance",
|
|
1810
|
+
"agent_observability_telemetry",
|
|
1811
|
+
"trace_reasoning_benchmark",
|
|
1812
|
+
"opentelemetry",
|
|
1813
|
+
"w3c_trace_context",
|
|
1814
|
+
"sre_monitoring",
|
|
1815
|
+
"nist_ai_rmf_gai_profile",
|
|
1816
|
+
"runtime_assurance",
|
|
1817
|
+
"audit_log_invariants",
|
|
1818
|
+
"data_observability"
|
|
1819
|
+
],
|
|
1820
|
+
"hardStops": [
|
|
1821
|
+
"missing_observability_telemetry_contract",
|
|
1822
|
+
"write_without_trace_id",
|
|
1823
|
+
"memory_ticket_without_span_lineage",
|
|
1824
|
+
"tool_action_without_audit_receipt",
|
|
1825
|
+
"public_export_with_stale_metric",
|
|
1826
|
+
"route_sync_without_correlation_id",
|
|
1827
|
+
"release_seed_when_audit_sink_down",
|
|
1828
|
+
"redaction_missing_in_telemetry",
|
|
1829
|
+
"metric_green_without_sample_size",
|
|
1830
|
+
"alert_suppressed_during_degraded_mode",
|
|
1831
|
+
"shadow_replay_not_recorded",
|
|
1832
|
+
"repair_without_before_after_snapshot",
|
|
1833
|
+
"rollback_without_observed_event",
|
|
1834
|
+
"unobservable_runtime_write"
|
|
1835
|
+
]
|
|
1836
|
+
}
|
|
1837
|
+
},
|
|
1838
|
+
{
|
|
1839
|
+
"archKey": "superOntologyObjectiveProxyValidityFile",
|
|
1840
|
+
"file": "super-ontology-objective-proxy-validity.json",
|
|
1841
|
+
"doc": {
|
|
1842
|
+
"schemaVersion": "1.0",
|
|
1843
|
+
"kind": "agentlas-super-ontology-objective-proxy-validity",
|
|
1844
|
+
"state": "local_candidate",
|
|
1845
|
+
"projectId": "__PROJECT_ID__",
|
|
1846
|
+
"draftId": null,
|
|
1847
|
+
"runtimePromotionAllowed": false,
|
|
1848
|
+
"defaultDecision": "construct_validity_required_before_metric_driven_runtime_graph_memory_tool_route_release_or_public_write",
|
|
1849
|
+
"constructs": [
|
|
1850
|
+
"user_value",
|
|
1851
|
+
"business_outcome",
|
|
1852
|
+
"safety",
|
|
1853
|
+
"quality",
|
|
1854
|
+
"truthfulness",
|
|
1855
|
+
"trust",
|
|
1856
|
+
"learning",
|
|
1857
|
+
"wellbeing",
|
|
1858
|
+
"compliance",
|
|
1859
|
+
"fairness",
|
|
1860
|
+
"reliability",
|
|
1861
|
+
"maintainability",
|
|
1862
|
+
"environmental_impact",
|
|
1863
|
+
"financial_return",
|
|
1864
|
+
"operational_efficiency",
|
|
1865
|
+
"reputation"
|
|
1866
|
+
],
|
|
1867
|
+
"proxyMetrics": [
|
|
1868
|
+
"approval_rate",
|
|
1869
|
+
"open_rate",
|
|
1870
|
+
"click_rate",
|
|
1871
|
+
"benchmark_score",
|
|
1872
|
+
"test_pass_rate",
|
|
1873
|
+
"self_judge_score",
|
|
1874
|
+
"ontology_edge_count",
|
|
1875
|
+
"memory_recall_count",
|
|
1876
|
+
"short_term_profit",
|
|
1877
|
+
"cost_per_execution",
|
|
1878
|
+
"green_dashboard_percentage",
|
|
1879
|
+
"reward_score_delta"
|
|
1880
|
+
],
|
|
1881
|
+
"validityGaps": [
|
|
1882
|
+
"construct_underdefined",
|
|
1883
|
+
"proxy_not_construct",
|
|
1884
|
+
"proxy_overoptimized",
|
|
1885
|
+
"benchmark_contamination",
|
|
1886
|
+
"reward_tampering",
|
|
1887
|
+
"metric_gaming",
|
|
1888
|
+
"stakeholder_harm_hidden",
|
|
1889
|
+
"short_term_metric_long_term_harm",
|
|
1890
|
+
"sample_not_representative",
|
|
1891
|
+
"measurement_noninvariance",
|
|
1892
|
+
"label_leakage",
|
|
1893
|
+
"evaluator_conflict",
|
|
1894
|
+
"target_shift"
|
|
1895
|
+
],
|
|
1896
|
+
"goodhartModes": [
|
|
1897
|
+
"regressional",
|
|
1898
|
+
"extremal",
|
|
1899
|
+
"causal",
|
|
1900
|
+
"adversarial",
|
|
1901
|
+
"campbell_law",
|
|
1902
|
+
"reward_hacking",
|
|
1903
|
+
"proxy_gaming",
|
|
1904
|
+
"benchmark_gaming"
|
|
1905
|
+
],
|
|
1906
|
+
"requiredValidityEvidence": [
|
|
1907
|
+
"construct_definition",
|
|
1908
|
+
"stakeholder_map",
|
|
1909
|
+
"countermetric",
|
|
1910
|
+
"negative_control",
|
|
1911
|
+
"holdout_distribution",
|
|
1912
|
+
"baseline_comparison",
|
|
1913
|
+
"item_level_analysis",
|
|
1914
|
+
"causal_path",
|
|
1915
|
+
"gaming_probe",
|
|
1916
|
+
"benchmark_provenance",
|
|
1917
|
+
"human_owner_review",
|
|
1918
|
+
"longitudinal_check",
|
|
1919
|
+
"measurement_invariance_check",
|
|
1920
|
+
"sample_size",
|
|
1921
|
+
"error_bar",
|
|
1922
|
+
"rollback_plan"
|
|
1923
|
+
],
|
|
1924
|
+
"countermetrics": [
|
|
1925
|
+
"harm_rate",
|
|
1926
|
+
"complaint_rate",
|
|
1927
|
+
"long_term_retention",
|
|
1928
|
+
"quality_review_score",
|
|
1929
|
+
"fairness_delta",
|
|
1930
|
+
"safety_incident_rate",
|
|
1931
|
+
"source_grounding_rate",
|
|
1932
|
+
"maintenance_burden",
|
|
1933
|
+
"cost_per_success",
|
|
1934
|
+
"reversal_rate",
|
|
1935
|
+
"learning_transfer",
|
|
1936
|
+
"user_trust_signal",
|
|
1937
|
+
"denominator"
|
|
1938
|
+
],
|
|
1939
|
+
"decisions": [
|
|
1940
|
+
"allow_read",
|
|
1941
|
+
"candidate_only",
|
|
1942
|
+
"shadow_required",
|
|
1943
|
+
"human_review_required",
|
|
1944
|
+
"redesign_metric",
|
|
1945
|
+
"quarantine",
|
|
1946
|
+
"block_optimization",
|
|
1947
|
+
"rollback",
|
|
1948
|
+
"emergency_stop"
|
|
1949
|
+
],
|
|
1950
|
+
"researchBasis": [
|
|
1951
|
+
"goodharts_law",
|
|
1952
|
+
"campbells_law",
|
|
1953
|
+
"construct_validity",
|
|
1954
|
+
"psychometrics",
|
|
1955
|
+
"measurement_theory",
|
|
1956
|
+
"reward_hacking",
|
|
1957
|
+
"specification_gaming",
|
|
1958
|
+
"benchmark_validity",
|
|
1959
|
+
"ai_risk_management",
|
|
1960
|
+
"sociotechnical_evaluation",
|
|
1961
|
+
"causal_inference",
|
|
1962
|
+
"program_evaluation"
|
|
1963
|
+
],
|
|
1964
|
+
"hardStops": [
|
|
1965
|
+
"missing_objective_proxy_validity_contract",
|
|
1966
|
+
"metric_improvement_as_goal_completion",
|
|
1967
|
+
"approval_rate_as_trust",
|
|
1968
|
+
"benchmark_score_as_reliability",
|
|
1969
|
+
"test_pass_rate_as_maintainability",
|
|
1970
|
+
"open_rate_as_customer_value",
|
|
1971
|
+
"self_judge_score_as_truth",
|
|
1972
|
+
"edge_count_as_knowledge_quality",
|
|
1973
|
+
"short_term_profit_as_compliance",
|
|
1974
|
+
"cost_per_execution_as_sustainability",
|
|
1975
|
+
"reward_score_as_quality",
|
|
1976
|
+
"label_leakage_as_accuracy",
|
|
1977
|
+
"green_dashboard_as_health",
|
|
1978
|
+
"proxy_optimization_without_countermetric",
|
|
1979
|
+
"optimization_without_stakeholder_map",
|
|
1980
|
+
"metric_gaming_without_probe",
|
|
1981
|
+
"reward_tampering_to_promotion",
|
|
1982
|
+
"construct_underdefined_to_runtime_write",
|
|
1983
|
+
"unvalidated_proxy_to_public_release"
|
|
1984
|
+
]
|
|
1985
|
+
}
|
|
1986
|
+
},
|
|
1987
|
+
{
|
|
1988
|
+
"archKey": "superOntologyStakeholderPreferenceGovernanceFile",
|
|
1989
|
+
"file": "super-ontology-stakeholder-preference-governance.json",
|
|
1990
|
+
"doc": {
|
|
1991
|
+
"schemaVersion": "1.0",
|
|
1992
|
+
"kind": "agentlas-super-ontology-stakeholder-preference-governance",
|
|
1993
|
+
"state": "local_candidate",
|
|
1994
|
+
"projectId": "__PROJECT_ID__",
|
|
1995
|
+
"draftId": null,
|
|
1996
|
+
"runtimePromotionAllowed": false,
|
|
1997
|
+
"defaultDecision": "stakeholder_preference_governance_required_before_multi_party_runtime_graph_memory_tool_route_release_or_public_write",
|
|
1998
|
+
"stakeholderRoles": [
|
|
1999
|
+
"individual_user",
|
|
2000
|
+
"project_owner",
|
|
2001
|
+
"team_member",
|
|
2002
|
+
"manager",
|
|
2003
|
+
"executive",
|
|
2004
|
+
"customer",
|
|
2005
|
+
"customer_end_user",
|
|
2006
|
+
"legal_compliance",
|
|
2007
|
+
"security_privacy",
|
|
2008
|
+
"sales_marketing",
|
|
2009
|
+
"operations_support",
|
|
2010
|
+
"finance_procurement",
|
|
2011
|
+
"public_audience",
|
|
2012
|
+
"regulator",
|
|
2013
|
+
"minority_or_vulnerable_group",
|
|
2014
|
+
"future_maintainer",
|
|
2015
|
+
"student",
|
|
2016
|
+
"teacher",
|
|
2017
|
+
"parent_guardian",
|
|
2018
|
+
"patient_or_caregiver"
|
|
2019
|
+
],
|
|
2020
|
+
"preferenceSignals": [
|
|
2021
|
+
"explicit_instruction",
|
|
2022
|
+
"approval_vote",
|
|
2023
|
+
"ranking",
|
|
2024
|
+
"policy_requirement",
|
|
2025
|
+
"legal_obligation",
|
|
2026
|
+
"contractual_constraint",
|
|
2027
|
+
"customer_feedback",
|
|
2028
|
+
"complaint",
|
|
2029
|
+
"usage_behavior",
|
|
2030
|
+
"accessibility_need",
|
|
2031
|
+
"safety_objection",
|
|
2032
|
+
"privacy_preference",
|
|
2033
|
+
"quality_review",
|
|
2034
|
+
"maintenance_burden",
|
|
2035
|
+
"cost_constraint",
|
|
2036
|
+
"minority_report",
|
|
2037
|
+
"professional_standard",
|
|
2038
|
+
"recency_check"
|
|
2039
|
+
],
|
|
2040
|
+
"conflictTypes": [
|
|
2041
|
+
"stakeholder_conflict",
|
|
2042
|
+
"value_tradeoff",
|
|
2043
|
+
"rights_constraint",
|
|
2044
|
+
"consent_boundary",
|
|
2045
|
+
"power_asymmetry",
|
|
2046
|
+
"minority_harm",
|
|
2047
|
+
"short_term_long_term_conflict",
|
|
2048
|
+
"private_public_tension",
|
|
2049
|
+
"role_scope_collision",
|
|
2050
|
+
"regulatory_conflict",
|
|
2051
|
+
"resource_allocation_conflict",
|
|
2052
|
+
"strategic_misreporting",
|
|
2053
|
+
"preference_drift",
|
|
2054
|
+
"unrepresented_party"
|
|
2055
|
+
],
|
|
2056
|
+
"aggregationRules": [
|
|
2057
|
+
"consent_required",
|
|
2058
|
+
"veto_for_rights",
|
|
2059
|
+
"owner_review",
|
|
2060
|
+
"policy_precedence",
|
|
2061
|
+
"weighted_deliberation",
|
|
2062
|
+
"ranked_choice",
|
|
2063
|
+
"majority_with_veto",
|
|
2064
|
+
"pareto_screen",
|
|
2065
|
+
"minimax_regret",
|
|
2066
|
+
"rawlsian_priority",
|
|
2067
|
+
"human_governance_board",
|
|
2068
|
+
"case_by_case_review",
|
|
2069
|
+
"no_aggregation_allowed"
|
|
2070
|
+
],
|
|
2071
|
+
"requiredGovernanceEvidence": [
|
|
2072
|
+
"stakeholder_map",
|
|
2073
|
+
"preference_source",
|
|
2074
|
+
"scope_of_authority",
|
|
2075
|
+
"affected_party_analysis",
|
|
2076
|
+
"aggregation_rule",
|
|
2077
|
+
"rights_constraint_check",
|
|
2078
|
+
"minority_report",
|
|
2079
|
+
"dissent_capture",
|
|
2080
|
+
"consent_record",
|
|
2081
|
+
"appeal_path",
|
|
2082
|
+
"rollback_plan",
|
|
2083
|
+
"review_owner",
|
|
2084
|
+
"tradeoff_rationale",
|
|
2085
|
+
"public_private_boundary",
|
|
2086
|
+
"recency_check",
|
|
2087
|
+
"policy_or_contract_ref",
|
|
2088
|
+
"manipulation_probe"
|
|
2089
|
+
],
|
|
2090
|
+
"decisions": [
|
|
2091
|
+
"allow_read",
|
|
2092
|
+
"candidate_only",
|
|
2093
|
+
"ask_clarify",
|
|
2094
|
+
"human_review_required",
|
|
2095
|
+
"policy_review_required",
|
|
2096
|
+
"consent_required",
|
|
2097
|
+
"redesign_tradeoff",
|
|
2098
|
+
"quarantine",
|
|
2099
|
+
"block_write",
|
|
2100
|
+
"rollback",
|
|
2101
|
+
"emergency_stop"
|
|
2102
|
+
],
|
|
2103
|
+
"researchBasis": [
|
|
2104
|
+
"social_choice_theory",
|
|
2105
|
+
"arrow_impossibility",
|
|
2106
|
+
"gibbard_satterthwaite",
|
|
2107
|
+
"pluralistic_alignment",
|
|
2108
|
+
"multi_stakeholder_alignment",
|
|
2109
|
+
"deliberative_democracy",
|
|
2110
|
+
"stakeholder_theory",
|
|
2111
|
+
"value_sensitive_design",
|
|
2112
|
+
"participatory_design",
|
|
2113
|
+
"procedural_justice",
|
|
2114
|
+
"ai_risk_management",
|
|
2115
|
+
"human_subjects_ethics",
|
|
2116
|
+
"governance_risk_compliance"
|
|
2117
|
+
],
|
|
2118
|
+
"hardStops": [
|
|
2119
|
+
"missing_stakeholder_preference_governance_contract",
|
|
2120
|
+
"single_stakeholder_preference_as_global_goal",
|
|
2121
|
+
"owner_preference_as_all_stakeholders",
|
|
2122
|
+
"majority_preference_as_rights_clearance",
|
|
2123
|
+
"average_utility_over_protected_constraint",
|
|
2124
|
+
"hidden_affected_party",
|
|
2125
|
+
"missing_appeal_path",
|
|
2126
|
+
"missing_dissent_capture",
|
|
2127
|
+
"strategic_preference_report_as_truth",
|
|
2128
|
+
"preference_aggregation_without_rule",
|
|
2129
|
+
"preference_conflict_to_runtime_write",
|
|
2130
|
+
"consent_absent_to_personalization",
|
|
2131
|
+
"minority_harm_hidden_by_aggregate",
|
|
2132
|
+
"irreversible_action_without_stakeholder_review",
|
|
2133
|
+
"private_preference_to_public_release",
|
|
2134
|
+
"cross_context_preference_reuse_without_scope",
|
|
2135
|
+
"role_power_as_legitimacy",
|
|
2136
|
+
"arrow_impossibility_ignored",
|
|
2137
|
+
"manipulable_vote_as_stable_preference",
|
|
2138
|
+
"stakeholder_map_missing_for_release"
|
|
2139
|
+
]
|
|
2140
|
+
}
|
|
2141
|
+
},
|
|
2142
|
+
{
|
|
2143
|
+
"archKey": "superOntologyNormativeAuthorityDriftFile",
|
|
2144
|
+
"file": "super-ontology-normative-authority-drift.json",
|
|
2145
|
+
"doc": {
|
|
2146
|
+
"schemaVersion": "1.0",
|
|
2147
|
+
"kind": "agentlas-super-ontology-normative-authority-drift",
|
|
2148
|
+
"state": "local_candidate",
|
|
2149
|
+
"projectId": "__PROJECT_ID__",
|
|
2150
|
+
"draftId": null,
|
|
2151
|
+
"runtimePromotionAllowed": false,
|
|
2152
|
+
"defaultDecision": "normative_authority_required_before_policy_legal_compliance_contract_license_consent_or_runtime_write",
|
|
2153
|
+
"authorityTypes": [
|
|
2154
|
+
"law",
|
|
2155
|
+
"regulation",
|
|
2156
|
+
"contract",
|
|
2157
|
+
"terms_of_service",
|
|
2158
|
+
"internal_policy",
|
|
2159
|
+
"security_policy",
|
|
2160
|
+
"privacy_policy",
|
|
2161
|
+
"data_retention_policy",
|
|
2162
|
+
"license",
|
|
2163
|
+
"standard",
|
|
2164
|
+
"professional_guideline",
|
|
2165
|
+
"customer_commitment",
|
|
2166
|
+
"board_decision",
|
|
2167
|
+
"manager_directive",
|
|
2168
|
+
"emergency_exception"
|
|
2169
|
+
],
|
|
2170
|
+
"scopeDimensions": [
|
|
2171
|
+
"jurisdiction",
|
|
2172
|
+
"effective_date",
|
|
2173
|
+
"expiry_date",
|
|
2174
|
+
"organization",
|
|
2175
|
+
"workspace",
|
|
2176
|
+
"role",
|
|
2177
|
+
"customer_segment",
|
|
2178
|
+
"data_category",
|
|
2179
|
+
"system_surface",
|
|
2180
|
+
"action_type",
|
|
2181
|
+
"retention_period",
|
|
2182
|
+
"transfer_region",
|
|
2183
|
+
"license_scope",
|
|
2184
|
+
"exception_scope"
|
|
2185
|
+
],
|
|
2186
|
+
"conflictTypes": [
|
|
2187
|
+
"stale_authority",
|
|
2188
|
+
"wrong_jurisdiction",
|
|
2189
|
+
"draft_vs_enforced",
|
|
2190
|
+
"superseded_rule",
|
|
2191
|
+
"authority_conflict",
|
|
2192
|
+
"exception_misuse",
|
|
2193
|
+
"translation_mismatch",
|
|
2194
|
+
"summary_vs_primary_source",
|
|
2195
|
+
"role_authority_gap",
|
|
2196
|
+
"license_conflict",
|
|
2197
|
+
"retention_conflict",
|
|
2198
|
+
"cross_border_conflict",
|
|
2199
|
+
"emergency_override",
|
|
2200
|
+
"professional_boundary"
|
|
2201
|
+
],
|
|
2202
|
+
"effectiveTimeStates": [
|
|
2203
|
+
"current",
|
|
2204
|
+
"stale",
|
|
2205
|
+
"future_effective",
|
|
2206
|
+
"expired",
|
|
2207
|
+
"draft",
|
|
2208
|
+
"superseded",
|
|
2209
|
+
"unknown",
|
|
2210
|
+
"exception_active",
|
|
2211
|
+
"emergency_exception"
|
|
2212
|
+
],
|
|
2213
|
+
"jurisdictionStates": [
|
|
2214
|
+
"in_scope",
|
|
2215
|
+
"out_of_scope",
|
|
2216
|
+
"mixed",
|
|
2217
|
+
"unknown",
|
|
2218
|
+
"cross_border",
|
|
2219
|
+
"local_only",
|
|
2220
|
+
"global_claim_unverified"
|
|
2221
|
+
],
|
|
2222
|
+
"authorityHierarchyRules": [
|
|
2223
|
+
"primary_source_precedence",
|
|
2224
|
+
"newer_version_precedence",
|
|
2225
|
+
"contract_clause_precedence",
|
|
2226
|
+
"stricter_rule_precedence",
|
|
2227
|
+
"local_law_precedence",
|
|
2228
|
+
"internal_policy_after_law",
|
|
2229
|
+
"exception_requires_owner_expiry",
|
|
2230
|
+
"human_legal_review",
|
|
2231
|
+
"no_precedence_available"
|
|
2232
|
+
],
|
|
2233
|
+
"requiredAuthorityEvidence": [
|
|
2234
|
+
"primary_source_ref",
|
|
2235
|
+
"effective_date",
|
|
2236
|
+
"version_id",
|
|
2237
|
+
"jurisdiction_scope",
|
|
2238
|
+
"authority_owner",
|
|
2239
|
+
"precedence_rule",
|
|
2240
|
+
"exception_owner",
|
|
2241
|
+
"expiry_or_review_date",
|
|
2242
|
+
"policy_citation",
|
|
2243
|
+
"contract_clause",
|
|
2244
|
+
"license_text",
|
|
2245
|
+
"retention_rule",
|
|
2246
|
+
"transfer_rule",
|
|
2247
|
+
"review_owner",
|
|
2248
|
+
"rollback_plan",
|
|
2249
|
+
"audit_trail"
|
|
2250
|
+
],
|
|
2251
|
+
"decisions": [
|
|
2252
|
+
"allow_read",
|
|
2253
|
+
"candidate_only",
|
|
2254
|
+
"ask_clarify",
|
|
2255
|
+
"human_review_required",
|
|
2256
|
+
"policy_review_required",
|
|
2257
|
+
"legal_review_required",
|
|
2258
|
+
"security_review_required",
|
|
2259
|
+
"quarantine",
|
|
2260
|
+
"block_write",
|
|
2261
|
+
"rollback",
|
|
2262
|
+
"emergency_stop"
|
|
2263
|
+
],
|
|
2264
|
+
"researchBasis": [
|
|
2265
|
+
"legal_informatics",
|
|
2266
|
+
"governance_risk_compliance",
|
|
2267
|
+
"policy_as_code",
|
|
2268
|
+
"compliance_automation",
|
|
2269
|
+
"temporal_knowledge_graphs",
|
|
2270
|
+
"deontic_logic",
|
|
2271
|
+
"defeasible_reasoning",
|
|
2272
|
+
"regulatory_change_management",
|
|
2273
|
+
"records_management",
|
|
2274
|
+
"data_protection",
|
|
2275
|
+
"software_supply_chain_governance",
|
|
2276
|
+
"provenance_standards",
|
|
2277
|
+
"rights_expression_language",
|
|
2278
|
+
"ai_management_systems"
|
|
2279
|
+
],
|
|
2280
|
+
"hardStops": [
|
|
2281
|
+
"missing_normative_authority_drift_contract",
|
|
2282
|
+
"stale_policy_as_current_rule",
|
|
2283
|
+
"wrong_jurisdiction_as_valid_policy",
|
|
2284
|
+
"draft_policy_as_enforced_rule",
|
|
2285
|
+
"superseded_contract_as_current_authority",
|
|
2286
|
+
"terms_of_service_without_effective_date",
|
|
2287
|
+
"local_custom_as_global_policy",
|
|
2288
|
+
"internal_preference_as_legal_requirement",
|
|
2289
|
+
"policy_exception_without_owner",
|
|
2290
|
+
"conflicting_authorities_without_precedence",
|
|
2291
|
+
"regulation_summary_as_primary_law",
|
|
2292
|
+
"compliance_claim_without_citation",
|
|
2293
|
+
"policy_translation_as_authoritative_text",
|
|
2294
|
+
"expired_consent_as_current_permission",
|
|
2295
|
+
"missing_retention_or_deletion_rule",
|
|
2296
|
+
"cross_border_transfer_without_jurisdiction",
|
|
2297
|
+
"licensing_constraint_ignored",
|
|
2298
|
+
"audit_requirement_missing_before_release",
|
|
2299
|
+
"emergency_exception_without_expiry",
|
|
2300
|
+
"legal_advice_without_review"
|
|
2301
|
+
]
|
|
2302
|
+
}
|
|
2303
|
+
},
|
|
2304
|
+
{
|
|
2305
|
+
"archKey": "superOntologySideEffectContainmentFile",
|
|
2306
|
+
"file": "super-ontology-side-effect-containment.json",
|
|
2307
|
+
"doc": {
|
|
2308
|
+
"schemaVersion": "1.0",
|
|
2309
|
+
"kind": "agentlas-super-ontology-side-effect-containment",
|
|
2310
|
+
"state": "local_candidate",
|
|
2311
|
+
"projectId": "__PROJECT_ID__",
|
|
2312
|
+
"draftId": null,
|
|
2313
|
+
"runtimePromotionAllowed": false,
|
|
2314
|
+
"defaultDecision": "containment_required_before_external_file_finance_release_message_route_memory_training_or_physical_action",
|
|
2315
|
+
"sideEffectClasses": [
|
|
2316
|
+
"file_mutation",
|
|
2317
|
+
"external_message",
|
|
2318
|
+
"payment_or_finance",
|
|
2319
|
+
"customer_record_update",
|
|
2320
|
+
"public_release",
|
|
2321
|
+
"account_permission_change",
|
|
2322
|
+
"data_transfer",
|
|
2323
|
+
"memory_write",
|
|
2324
|
+
"training_update",
|
|
2325
|
+
"code_execution",
|
|
2326
|
+
"physical_actuation",
|
|
2327
|
+
"scheduled_job",
|
|
2328
|
+
"multi_system_workflow",
|
|
2329
|
+
"legal_or_compliance_commitment"
|
|
2330
|
+
],
|
|
2331
|
+
"actionSurfaces": [
|
|
2332
|
+
"local_file_system",
|
|
2333
|
+
"email_or_chat",
|
|
2334
|
+
"crm_or_customer_system",
|
|
2335
|
+
"payment_or_procurement",
|
|
2336
|
+
"public_web_or_social",
|
|
2337
|
+
"release_pipeline",
|
|
2338
|
+
"cloud_admin",
|
|
2339
|
+
"database_write",
|
|
2340
|
+
"memory_curator",
|
|
2341
|
+
"training_pipeline",
|
|
2342
|
+
"physical_or_sensor",
|
|
2343
|
+
"appbridge_route",
|
|
2344
|
+
"hosted_connector",
|
|
2345
|
+
"shell_or_code_runner"
|
|
2346
|
+
],
|
|
2347
|
+
"reversibilityStates": [
|
|
2348
|
+
"read_only",
|
|
2349
|
+
"preview_only",
|
|
2350
|
+
"reversible",
|
|
2351
|
+
"compensable",
|
|
2352
|
+
"retryable_after_pivot",
|
|
2353
|
+
"irreversible",
|
|
2354
|
+
"unknown"
|
|
2355
|
+
],
|
|
2356
|
+
"transactionBoundaries": [
|
|
2357
|
+
"single_local_transaction",
|
|
2358
|
+
"saga_compensating_transaction",
|
|
2359
|
+
"external_api_commit",
|
|
2360
|
+
"human_approval_boundary",
|
|
2361
|
+
"two_phase_commit_required",
|
|
2362
|
+
"no_transaction_boundary",
|
|
2363
|
+
"scheduled_future_commit",
|
|
2364
|
+
"physical_world_boundary"
|
|
2365
|
+
],
|
|
2366
|
+
"idempotencyStates": [
|
|
2367
|
+
"idempotent_key_present",
|
|
2368
|
+
"idempotent_by_design",
|
|
2369
|
+
"non_idempotent",
|
|
2370
|
+
"duplicate_risk_unknown",
|
|
2371
|
+
"retry_guard_missing",
|
|
2372
|
+
"replay_safe_dry_run"
|
|
2373
|
+
],
|
|
2374
|
+
"blastRadii": [
|
|
2375
|
+
"user_local",
|
|
2376
|
+
"workspace",
|
|
2377
|
+
"customer",
|
|
2378
|
+
"organization",
|
|
2379
|
+
"public",
|
|
2380
|
+
"financial",
|
|
2381
|
+
"legal_compliance",
|
|
2382
|
+
"physical_safety",
|
|
2383
|
+
"cross_system",
|
|
2384
|
+
"cross_border_data"
|
|
2385
|
+
],
|
|
2386
|
+
"externalCommitStates": [
|
|
2387
|
+
"not_committed",
|
|
2388
|
+
"dry_run_only",
|
|
2389
|
+
"pending_human_commit",
|
|
2390
|
+
"committed_with_receipt",
|
|
2391
|
+
"partial_commit",
|
|
2392
|
+
"ambiguous_commit",
|
|
2393
|
+
"scheduled_commit",
|
|
2394
|
+
"irreversible_commit"
|
|
2395
|
+
],
|
|
2396
|
+
"requiredContainmentEvidence": [
|
|
2397
|
+
"user_intent_span",
|
|
2398
|
+
"tool_scope",
|
|
2399
|
+
"auth_scope",
|
|
2400
|
+
"idempotency_key",
|
|
2401
|
+
"dry_run_receipt",
|
|
2402
|
+
"preflight_diff",
|
|
2403
|
+
"approval_receipt",
|
|
2404
|
+
"transaction_log",
|
|
2405
|
+
"compensation_action",
|
|
2406
|
+
"rollback_snapshot",
|
|
2407
|
+
"cancellation_path",
|
|
2408
|
+
"rate_limit_budget",
|
|
2409
|
+
"blast_radius_bound",
|
|
2410
|
+
"external_commit_receipt",
|
|
2411
|
+
"audit_trace",
|
|
2412
|
+
"policy_gate_ref",
|
|
2413
|
+
"memory_ticket_ref",
|
|
2414
|
+
"safety_interlock",
|
|
2415
|
+
"operator_owner",
|
|
2416
|
+
"post_action_verification"
|
|
2417
|
+
],
|
|
2418
|
+
"decisions": [
|
|
2419
|
+
"allow_read",
|
|
2420
|
+
"allow_dry_run",
|
|
2421
|
+
"prepare_only",
|
|
2422
|
+
"ask_clarify",
|
|
2423
|
+
"human_approval_required",
|
|
2424
|
+
"policy_review_required",
|
|
2425
|
+
"security_review_required",
|
|
2426
|
+
"containment_required",
|
|
2427
|
+
"block_execute",
|
|
2428
|
+
"rollback",
|
|
2429
|
+
"compensate",
|
|
2430
|
+
"emergency_stop"
|
|
2431
|
+
],
|
|
2432
|
+
"researchBasis": [
|
|
2433
|
+
"excessive_agency",
|
|
2434
|
+
"least_privilege",
|
|
2435
|
+
"systems_security_engineering",
|
|
2436
|
+
"saga_pattern",
|
|
2437
|
+
"compensating_transaction",
|
|
2438
|
+
"idempotent_workflow",
|
|
2439
|
+
"human_in_the_loop",
|
|
2440
|
+
"complete_mediation",
|
|
2441
|
+
"rate_limiting",
|
|
2442
|
+
"auditability",
|
|
2443
|
+
"safety_engineering",
|
|
2444
|
+
"transaction_processing",
|
|
2445
|
+
"secure_agent_guardrails",
|
|
2446
|
+
"disaster_recovery"
|
|
2447
|
+
],
|
|
2448
|
+
"hardStops": [
|
|
2449
|
+
"missing_side_effect_containment_contract",
|
|
2450
|
+
"read_permission_as_write_permission",
|
|
2451
|
+
"preview_as_send",
|
|
2452
|
+
"dry_run_result_as_committed",
|
|
2453
|
+
"non_idempotent_retry_to_external_action",
|
|
2454
|
+
"irreversible_action_without_human_approval",
|
|
2455
|
+
"deletion_without_recovery_plan",
|
|
2456
|
+
"payment_without_idempotency_key",
|
|
2457
|
+
"customer_message_without_review",
|
|
2458
|
+
"release_without_rollback",
|
|
2459
|
+
"connector_write_without_scope",
|
|
2460
|
+
"cross_tool_chain_without_transaction",
|
|
2461
|
+
"compensation_plan_missing",
|
|
2462
|
+
"blast_radius_unknown",
|
|
2463
|
+
"idempotency_key_missing",
|
|
2464
|
+
"external_commit_without_receipt",
|
|
2465
|
+
"partial_failure_without_saga_state",
|
|
2466
|
+
"physical_action_without_safety_interlock",
|
|
2467
|
+
"scheduled_action_without_cancellation",
|
|
2468
|
+
"side_effect_logging_missing",
|
|
2469
|
+
"hosted_tool_without_local_side_effect_wrapper"
|
|
2470
|
+
]
|
|
2471
|
+
}
|
|
2472
|
+
},
|
|
2473
|
+
{
|
|
2474
|
+
"archKey": "superOntologySourceLineageVersionFile",
|
|
2475
|
+
"file": "super-ontology-source-lineage-version.json",
|
|
2476
|
+
"doc": {
|
|
2477
|
+
"schemaVersion": "1.0",
|
|
2478
|
+
"kind": "agentlas-super-ontology-source-lineage-version",
|
|
2479
|
+
"state": "local_candidate",
|
|
2480
|
+
"projectId": "__PROJECT_ID__",
|
|
2481
|
+
"draftId": null,
|
|
2482
|
+
"runtimePromotionAllowed": false,
|
|
2483
|
+
"defaultDecision": "lineage_required_before_graph_memory_public_training_tool_or_route_authority",
|
|
2484
|
+
"documentFamilies": [
|
|
2485
|
+
"policy",
|
|
2486
|
+
"contract",
|
|
2487
|
+
"sales_deck",
|
|
2488
|
+
"spreadsheet",
|
|
2489
|
+
"hwp_doc",
|
|
2490
|
+
"pdf_export",
|
|
2491
|
+
"email_attachment",
|
|
2492
|
+
"crm_record",
|
|
2493
|
+
"code_artifact",
|
|
2494
|
+
"dataset",
|
|
2495
|
+
"model_artifact",
|
|
2496
|
+
"sensor_log",
|
|
2497
|
+
"meeting_notes",
|
|
2498
|
+
"public_web_page"
|
|
2499
|
+
],
|
|
2500
|
+
"sourceArtifactTypes": [
|
|
2501
|
+
"primary_document",
|
|
2502
|
+
"derived_document",
|
|
2503
|
+
"exported_pdf",
|
|
2504
|
+
"spreadsheet_workbook",
|
|
2505
|
+
"sheet_tab",
|
|
2506
|
+
"email_message",
|
|
2507
|
+
"attachment",
|
|
2508
|
+
"connector_record",
|
|
2509
|
+
"database_snapshot",
|
|
2510
|
+
"web_snapshot",
|
|
2511
|
+
"chunk",
|
|
2512
|
+
"embedding_vector",
|
|
2513
|
+
"summary",
|
|
2514
|
+
"translation",
|
|
2515
|
+
"redacted_copy",
|
|
2516
|
+
"dataset_snapshot",
|
|
2517
|
+
"model_checkpoint",
|
|
2518
|
+
"sensor_batch"
|
|
2519
|
+
],
|
|
2520
|
+
"requiredLineageEvidence": [
|
|
2521
|
+
"source_uri",
|
|
2522
|
+
"source_checksum",
|
|
2523
|
+
"content_hash",
|
|
2524
|
+
"version_id",
|
|
2525
|
+
"revision_id",
|
|
2526
|
+
"effective_date",
|
|
2527
|
+
"capture_time",
|
|
2528
|
+
"transformation_log",
|
|
2529
|
+
"derivation_chain",
|
|
2530
|
+
"parent_artifact_ref",
|
|
2531
|
+
"primary_source_ref",
|
|
2532
|
+
"authority_owner",
|
|
2533
|
+
"approval_record",
|
|
2534
|
+
"deprecation_record",
|
|
2535
|
+
"supersedes_ref",
|
|
2536
|
+
"checksum_or_signature",
|
|
2537
|
+
"connector_snapshot_id",
|
|
2538
|
+
"parser_version",
|
|
2539
|
+
"chunk_span",
|
|
2540
|
+
"memory_ticket_ref",
|
|
2541
|
+
"audit_trace",
|
|
2542
|
+
"rollback_snapshot"
|
|
2543
|
+
],
|
|
2544
|
+
"decisions": [
|
|
2545
|
+
"allow_read",
|
|
2546
|
+
"candidate_only",
|
|
2547
|
+
"ask_clarify",
|
|
2548
|
+
"lineage_repair_required",
|
|
2549
|
+
"source_owner_review_required",
|
|
2550
|
+
"deprecate",
|
|
2551
|
+
"quarantine",
|
|
2552
|
+
"block_graph_write",
|
|
2553
|
+
"block_memory_write",
|
|
2554
|
+
"block_public_export",
|
|
2555
|
+
"rollback"
|
|
2556
|
+
],
|
|
2557
|
+
"hardStops": [
|
|
2558
|
+
"missing_source_lineage_version_contract",
|
|
2559
|
+
"filename_as_version",
|
|
2560
|
+
"latest_folder_as_current_source",
|
|
2561
|
+
"pdf_export_as_primary_source",
|
|
2562
|
+
"summary_as_primary_source",
|
|
2563
|
+
"ocr_text_without_source_span",
|
|
2564
|
+
"spreadsheet_sheet_without_workbook_revision",
|
|
2565
|
+
"email_attachment_without_message_context",
|
|
2566
|
+
"duplicate_title_as_same_artifact",
|
|
2567
|
+
"checksum_missing_for_authoritative_source",
|
|
2568
|
+
"stale_cache_as_current_record",
|
|
2569
|
+
"connector_snapshot_without_capture_time",
|
|
2570
|
+
"transitive_derivation_as_primary_source",
|
|
2571
|
+
"merged_record_without_parent_refs",
|
|
2572
|
+
"redacted_copy_as_complete_source",
|
|
2573
|
+
"translation_as_authoritative_source",
|
|
2574
|
+
"chunk_without_source_span",
|
|
2575
|
+
"embedding_hit_without_artifact_version",
|
|
2576
|
+
"memory_fact_without_lineage",
|
|
2577
|
+
"public_export_without_lineage_evidence",
|
|
2578
|
+
"training_example_without_dataset_version",
|
|
2579
|
+
"graph_edge_without_derivation_chain",
|
|
2580
|
+
"superseded_source_to_runtime_write",
|
|
2581
|
+
"lineage_cycle_unresolved"
|
|
2582
|
+
]
|
|
2583
|
+
}
|
|
2584
|
+
},
|
|
2585
|
+
{
|
|
2586
|
+
"archKey": "superOntologyEntityIdentityResolutionFile",
|
|
2587
|
+
"file": "super-ontology-entity-identity-resolution.json",
|
|
2588
|
+
"doc": {
|
|
2589
|
+
"schemaVersion": "1.0",
|
|
2590
|
+
"kind": "agentlas-super-ontology-entity-identity-resolution",
|
|
2591
|
+
"state": "local_candidate",
|
|
2592
|
+
"projectId": "__PROJECT_ID__",
|
|
2593
|
+
"draftId": null,
|
|
2594
|
+
"runtimePromotionAllowed": false,
|
|
2595
|
+
"defaultDecision": "identity_evidence_required_before_canonical_graph_memory_public_training_tool_or_route_authority",
|
|
2596
|
+
"entityFamilies": [
|
|
2597
|
+
"person",
|
|
2598
|
+
"company",
|
|
2599
|
+
"customer_account",
|
|
2600
|
+
"vendor",
|
|
2601
|
+
"product",
|
|
2602
|
+
"project",
|
|
2603
|
+
"model",
|
|
2604
|
+
"location",
|
|
2605
|
+
"team",
|
|
2606
|
+
"patient_or_user",
|
|
2607
|
+
"device",
|
|
2608
|
+
"document"
|
|
2609
|
+
],
|
|
2610
|
+
"mentionArtifactTypes": [
|
|
2611
|
+
"name_string",
|
|
2612
|
+
"alias",
|
|
2613
|
+
"email_address",
|
|
2614
|
+
"phone_number",
|
|
2615
|
+
"domain",
|
|
2616
|
+
"crm_id",
|
|
2617
|
+
"employee_id",
|
|
2618
|
+
"spreadsheet_row",
|
|
2619
|
+
"external_uri",
|
|
2620
|
+
"embedding_cluster",
|
|
2621
|
+
"llm_generated_canonical",
|
|
2622
|
+
"redacted_identifier"
|
|
2623
|
+
],
|
|
2624
|
+
"requiredIdentityEvidence": [
|
|
2625
|
+
"canonical_entity_id",
|
|
2626
|
+
"source_system_id",
|
|
2627
|
+
"entity_type",
|
|
2628
|
+
"source_uri",
|
|
2629
|
+
"source_span",
|
|
2630
|
+
"negative_evidence",
|
|
2631
|
+
"disambiguating_attributes",
|
|
2632
|
+
"temporal_validity",
|
|
2633
|
+
"tenant_or_context_id",
|
|
2634
|
+
"privacy_basis",
|
|
2635
|
+
"owner_review",
|
|
2636
|
+
"merge_policy",
|
|
2637
|
+
"split_policy",
|
|
2638
|
+
"tombstone_record",
|
|
2639
|
+
"audit_trace",
|
|
2640
|
+
"rollback_snapshot"
|
|
2641
|
+
],
|
|
2642
|
+
"hardStops": [
|
|
2643
|
+
"missing_entity_identity_resolution_contract",
|
|
2644
|
+
"name_as_identity",
|
|
2645
|
+
"email_domain_as_company",
|
|
2646
|
+
"fuzzy_match_as_merge",
|
|
2647
|
+
"embedding_cluster_as_identity",
|
|
2648
|
+
"llm_canonical_name_as_id",
|
|
2649
|
+
"crm_id_cross_tenant_merge",
|
|
2650
|
+
"recycled_employee_id_as_same_person",
|
|
2651
|
+
"redacted_name_as_public_identity",
|
|
2652
|
+
"stale_alias_as_current_entity",
|
|
2653
|
+
"relationship_edge_without_identity_evidence",
|
|
2654
|
+
"memory_note_as_identity_authority"
|
|
2655
|
+
]
|
|
2656
|
+
}
|
|
2657
|
+
},
|
|
2658
|
+
{
|
|
2659
|
+
"archKey": "superOntologyTemporalStateTransitionFile",
|
|
2660
|
+
"file": "super-ontology-temporal-state-transition.json",
|
|
2661
|
+
"doc": {
|
|
2662
|
+
"schemaVersion": "1.0",
|
|
2663
|
+
"kind": "agentlas-super-ontology-temporal-state-transition",
|
|
2664
|
+
"state": "local_candidate",
|
|
2665
|
+
"projectId": "__PROJECT_ID__",
|
|
2666
|
+
"draftId": null,
|
|
2667
|
+
"runtimePromotionAllowed": false,
|
|
2668
|
+
"defaultDecision": "temporal_state_evidence_required_before_graph_memory_public_training_tool_route_scheduled_permission_financial_release_or_customer_authority",
|
|
2669
|
+
"stateSubjectFamilies": [
|
|
2670
|
+
"person",
|
|
2671
|
+
"company",
|
|
2672
|
+
"customer_account",
|
|
2673
|
+
"vendor",
|
|
2674
|
+
"product",
|
|
2675
|
+
"project",
|
|
2676
|
+
"policy",
|
|
2677
|
+
"contract",
|
|
2678
|
+
"dataset",
|
|
2679
|
+
"model",
|
|
2680
|
+
"document",
|
|
2681
|
+
"workflow",
|
|
2682
|
+
"task",
|
|
2683
|
+
"asset",
|
|
2684
|
+
"device",
|
|
2685
|
+
"payment",
|
|
2686
|
+
"permission",
|
|
2687
|
+
"release",
|
|
2688
|
+
"memory_fact",
|
|
2689
|
+
"graph_edge"
|
|
2690
|
+
],
|
|
2691
|
+
"eventArtifactTypes": [
|
|
2692
|
+
"timestamp",
|
|
2693
|
+
"valid_interval",
|
|
2694
|
+
"transaction_record",
|
|
2695
|
+
"event_log_entry",
|
|
2696
|
+
"state_snapshot",
|
|
2697
|
+
"spreadsheet_row",
|
|
2698
|
+
"document_revision",
|
|
2699
|
+
"calendar_event",
|
|
2700
|
+
"webhook_event",
|
|
2701
|
+
"connector_delta",
|
|
2702
|
+
"message_thread",
|
|
2703
|
+
"scheduled_job",
|
|
2704
|
+
"audit_log",
|
|
2705
|
+
"migration_batch",
|
|
2706
|
+
"derived_projection",
|
|
2707
|
+
"llm_summary",
|
|
2708
|
+
"memory_note",
|
|
2709
|
+
"graph_edge"
|
|
2710
|
+
],
|
|
2711
|
+
"requiredTemporalEvidence": [
|
|
2712
|
+
"valid_time",
|
|
2713
|
+
"transaction_time",
|
|
2714
|
+
"event_id",
|
|
2715
|
+
"event_sequence",
|
|
2716
|
+
"source_uri",
|
|
2717
|
+
"source_span",
|
|
2718
|
+
"pre_state",
|
|
2719
|
+
"post_state",
|
|
2720
|
+
"transition_guard",
|
|
2721
|
+
"idempotency_key",
|
|
2722
|
+
"replay_log",
|
|
2723
|
+
"rollback_snapshot",
|
|
2724
|
+
"projection_version",
|
|
2725
|
+
"owner_review",
|
|
2726
|
+
"audit_trace",
|
|
2727
|
+
"tombstone_record",
|
|
2728
|
+
"scheduler_receipt",
|
|
2729
|
+
"post_action_verification"
|
|
2730
|
+
],
|
|
2731
|
+
"hardStops": [
|
|
2732
|
+
"missing_temporal_state_transition_contract",
|
|
2733
|
+
"current_snapshot_as_truth",
|
|
2734
|
+
"missing_valid_time",
|
|
2735
|
+
"missing_transaction_time",
|
|
2736
|
+
"local_timestamp_as_global_order",
|
|
2737
|
+
"spreadsheet_order_as_event_order",
|
|
2738
|
+
"llm_summary_as_event_log",
|
|
2739
|
+
"late_event_ignored",
|
|
2740
|
+
"retroactive_correction_without_tx_history",
|
|
2741
|
+
"future_effective_as_current",
|
|
2742
|
+
"expired_state_as_active",
|
|
2743
|
+
"deleted_state_without_tombstone",
|
|
2744
|
+
"non_idempotent_replay",
|
|
2745
|
+
"materialized_view_as_source_of_truth",
|
|
2746
|
+
"projection_without_version",
|
|
2747
|
+
"recurring_event_without_rule",
|
|
2748
|
+
"timezone_free_deadline",
|
|
2749
|
+
"stale_cache_as_current",
|
|
2750
|
+
"state_transition_without_precondition",
|
|
2751
|
+
"partial_failure_as_success",
|
|
2752
|
+
"clock_skew_as_fact",
|
|
2753
|
+
"scheduled_job_without_receipt",
|
|
2754
|
+
"memory_fact_without_validity_interval",
|
|
2755
|
+
"graph_edge_without_temporal_bounds"
|
|
2756
|
+
]
|
|
2757
|
+
}
|
|
2758
|
+
},
|
|
2759
|
+
{
|
|
2760
|
+
"archKey": "superOntologyCapabilityDelegationAuthorityFile",
|
|
2761
|
+
"file": "super-ontology-capability-delegation-authority.json",
|
|
2762
|
+
"doc": {
|
|
2763
|
+
"schemaVersion": "1.0",
|
|
2764
|
+
"kind": "agentlas-super-ontology-capability-delegation-authority",
|
|
2765
|
+
"state": "local_candidate",
|
|
2766
|
+
"projectId": "__PROJECT_ID__",
|
|
2767
|
+
"draftId": null,
|
|
2768
|
+
"runtimePromotionAllowed": false,
|
|
2769
|
+
"defaultDecision": "capability_evidence_required_before_graph_memory_public_training_tool_route_scheduled_permission_financial_release_customer_or_physical_authority",
|
|
2770
|
+
"principalTypes": [
|
|
2771
|
+
"human_user",
|
|
2772
|
+
"delegated_agent",
|
|
2773
|
+
"child_agent",
|
|
2774
|
+
"service_account",
|
|
2775
|
+
"oauth_client",
|
|
2776
|
+
"api_key_holder",
|
|
2777
|
+
"mcp_tool",
|
|
2778
|
+
"scheduler",
|
|
2779
|
+
"workflow_runner",
|
|
2780
|
+
"enterprise_connector",
|
|
2781
|
+
"browser_session",
|
|
2782
|
+
"unknown_principal"
|
|
2783
|
+
],
|
|
2784
|
+
"capabilityArtifactTypes": [
|
|
2785
|
+
"role",
|
|
2786
|
+
"group_membership",
|
|
2787
|
+
"oauth_scope",
|
|
2788
|
+
"api_key",
|
|
2789
|
+
"service_account_key",
|
|
2790
|
+
"session_cookie",
|
|
2791
|
+
"tool_schema",
|
|
2792
|
+
"policy_decision",
|
|
2793
|
+
"approval_record",
|
|
2794
|
+
"delegation_token",
|
|
2795
|
+
"agent_identity_token",
|
|
2796
|
+
"signed_attestation",
|
|
2797
|
+
"capability_token",
|
|
2798
|
+
"cached_authorization_decision"
|
|
2799
|
+
],
|
|
2800
|
+
"authoritySurfaces": [
|
|
2801
|
+
"graph_authority",
|
|
2802
|
+
"memory_authority",
|
|
2803
|
+
"public_export_authority",
|
|
2804
|
+
"training_authority",
|
|
2805
|
+
"tool_authority",
|
|
2806
|
+
"route_authority",
|
|
2807
|
+
"scheduled_authority",
|
|
2808
|
+
"permission_authority",
|
|
2809
|
+
"financial_authority",
|
|
2810
|
+
"release_authority",
|
|
2811
|
+
"customer_output_authority",
|
|
2812
|
+
"physical_authority"
|
|
2813
|
+
],
|
|
2814
|
+
"requiredCapabilityEvidence": [
|
|
2815
|
+
"actor_identity",
|
|
2816
|
+
"agent_identity",
|
|
2817
|
+
"user_intent",
|
|
2818
|
+
"task_id",
|
|
2819
|
+
"workflow_step",
|
|
2820
|
+
"delegation_chain",
|
|
2821
|
+
"parent_capability",
|
|
2822
|
+
"policy_decision",
|
|
2823
|
+
"policy_version",
|
|
2824
|
+
"resource_id",
|
|
2825
|
+
"operation",
|
|
2826
|
+
"scope",
|
|
2827
|
+
"purpose",
|
|
2828
|
+
"caveat_set",
|
|
2829
|
+
"consent_record",
|
|
2830
|
+
"owner_approval",
|
|
2831
|
+
"time_bound",
|
|
2832
|
+
"recipient_bound",
|
|
2833
|
+
"environment_context",
|
|
2834
|
+
"proof_of_possession",
|
|
2835
|
+
"revocation_check",
|
|
2836
|
+
"audit_trace",
|
|
2837
|
+
"rollback_snapshot",
|
|
2838
|
+
"post_action_verification"
|
|
2839
|
+
],
|
|
2840
|
+
"hardStops": [
|
|
2841
|
+
"role_as_capability",
|
|
2842
|
+
"oauth_scope_as_task_permission",
|
|
2843
|
+
"api_key_as_actor",
|
|
2844
|
+
"read_access_as_write_authority",
|
|
2845
|
+
"parent_agent_unbounded_delegation",
|
|
2846
|
+
"delegation_chain_missing",
|
|
2847
|
+
"purpose_mismatch_authority",
|
|
2848
|
+
"capability_without_caveats",
|
|
2849
|
+
"stale_capability_token_as_current",
|
|
2850
|
+
"cross_context_capability_reuse",
|
|
2851
|
+
"capability_escalation_by_tool_choice",
|
|
2852
|
+
"subagent_exceeds_parent_authority",
|
|
2853
|
+
"human_consent_reused_for_new_purpose",
|
|
2854
|
+
"permission_prompt_as_policy",
|
|
2855
|
+
"tool_schema_as_authorization",
|
|
2856
|
+
"cached_auth_decision_without_fresh_context",
|
|
2857
|
+
"break_glass_without_expiry",
|
|
2858
|
+
"admin_role_as_all_actions",
|
|
2859
|
+
"shared_service_account_as_identity",
|
|
2860
|
+
"task_goal_as_permission",
|
|
2861
|
+
"hidden_tool_call_without_policy_decision"
|
|
2862
|
+
],
|
|
2863
|
+
"researchBasis": [
|
|
2864
|
+
"least_privilege",
|
|
2865
|
+
"zero_trust",
|
|
2866
|
+
"abac",
|
|
2867
|
+
"rebac",
|
|
2868
|
+
"capability_security",
|
|
2869
|
+
"macaroons",
|
|
2870
|
+
"zanzibar",
|
|
2871
|
+
"oauth_oidc",
|
|
2872
|
+
"oidc_agents",
|
|
2873
|
+
"agentic_jwt",
|
|
2874
|
+
"privilege_control",
|
|
2875
|
+
"contextual_integrity",
|
|
2876
|
+
"policy_as_code",
|
|
2877
|
+
"proof_of_possession",
|
|
2878
|
+
"auditability",
|
|
2879
|
+
"delegation_logic",
|
|
2880
|
+
"threat_modeling"
|
|
2881
|
+
]
|
|
2882
|
+
}
|
|
2883
|
+
},
|
|
2884
|
+
{
|
|
2885
|
+
"archKey": "superOntologyPrivacyConfidentialityBoundaryFile",
|
|
2886
|
+
"file": "super-ontology-privacy-confidentiality-boundary.json",
|
|
2887
|
+
"doc": {
|
|
2888
|
+
"schemaVersion": "1.0",
|
|
2889
|
+
"kind": "agentlas-super-ontology-privacy-confidentiality-boundary",
|
|
2890
|
+
"state": "local_candidate",
|
|
2891
|
+
"projectId": "__PROJECT_ID__",
|
|
2892
|
+
"draftId": null,
|
|
2893
|
+
"runtimePromotionAllowed": false,
|
|
2894
|
+
"defaultDecision": "privacy_boundary_evidence_required_before_graph_memory_public_training_tool_route_customer_output_personalization_retrieval_or_analytics_authority",
|
|
2895
|
+
"dataClassifications": [
|
|
2896
|
+
"public",
|
|
2897
|
+
"internal",
|
|
2898
|
+
"confidential",
|
|
2899
|
+
"restricted",
|
|
2900
|
+
"regulated_pii",
|
|
2901
|
+
"sensitive_pii",
|
|
2902
|
+
"credentials_or_secret",
|
|
2903
|
+
"financial",
|
|
2904
|
+
"health",
|
|
2905
|
+
"legal_privileged",
|
|
2906
|
+
"biometric",
|
|
2907
|
+
"location",
|
|
2908
|
+
"behavioral_profile",
|
|
2909
|
+
"inferred_sensitive",
|
|
2910
|
+
"unknown"
|
|
2911
|
+
],
|
|
2912
|
+
"boundarySurfaces": [
|
|
2913
|
+
"graph_authority",
|
|
2914
|
+
"memory_authority",
|
|
2915
|
+
"public_export_authority",
|
|
2916
|
+
"training_authority",
|
|
2917
|
+
"tool_authority",
|
|
2918
|
+
"route_authority",
|
|
2919
|
+
"customer_output_authority",
|
|
2920
|
+
"personalization_authority",
|
|
2921
|
+
"retrieval_authority",
|
|
2922
|
+
"analytics_authority"
|
|
2923
|
+
],
|
|
2924
|
+
"requiredPrivacyEvidence": [
|
|
2925
|
+
"data_classification",
|
|
2926
|
+
"sensitivity_label",
|
|
2927
|
+
"source_span",
|
|
2928
|
+
"data_subject_category",
|
|
2929
|
+
"controller_or_owner",
|
|
2930
|
+
"processing_purpose",
|
|
2931
|
+
"legal_basis_or_owner_approval",
|
|
2932
|
+
"consent_or_confidentiality_basis",
|
|
2933
|
+
"audience",
|
|
2934
|
+
"minimization_reason",
|
|
2935
|
+
"redaction_policy",
|
|
2936
|
+
"retention_policy",
|
|
2937
|
+
"deletion_or_legal_hold_state",
|
|
2938
|
+
"transfer_basis",
|
|
2939
|
+
"model_trust_tier",
|
|
2940
|
+
"training_allowed_flag",
|
|
2941
|
+
"public_disclosure_allowed_flag",
|
|
2942
|
+
"access_policy_decision",
|
|
2943
|
+
"audit_trace",
|
|
2944
|
+
"rollback_snapshot",
|
|
2945
|
+
"breach_response_owner",
|
|
2946
|
+
"reidentification_risk_assessment",
|
|
2947
|
+
"vector_index_policy",
|
|
2948
|
+
"memory_write_scope"
|
|
2949
|
+
],
|
|
2950
|
+
"hardStops": [
|
|
2951
|
+
"pii_as_normal_fact",
|
|
2952
|
+
"secret_as_graph_label",
|
|
2953
|
+
"confidential_deck_as_public_context",
|
|
2954
|
+
"consent_missing",
|
|
2955
|
+
"legal_basis_missing",
|
|
2956
|
+
"purpose_reuse_without_review",
|
|
2957
|
+
"training_on_private_material",
|
|
2958
|
+
"public_export_without_redaction",
|
|
2959
|
+
"retention_expired_memory",
|
|
2960
|
+
"data_subject_delete_ignored",
|
|
2961
|
+
"cross_tenant_context_bleed",
|
|
2962
|
+
"customer_data_as_demo",
|
|
2963
|
+
"personal_life_as_company_context",
|
|
2964
|
+
"employee_note_as_hr_decision",
|
|
2965
|
+
"inferred_sensitive_attribute_public",
|
|
2966
|
+
"redacted_text_reidentified",
|
|
2967
|
+
"connector_cache_as_allowed_use",
|
|
2968
|
+
"screenshot_ocr_without_classification",
|
|
2969
|
+
"embedding_of_secret_without_policy",
|
|
2970
|
+
"vector_search_leaks_private_neighbors",
|
|
2971
|
+
"shared_memory_without_audience_boundary",
|
|
2972
|
+
"confidential_source_in_prompt_to_untrusted_model",
|
|
2973
|
+
"trade_secret_as_embedding_neighbor",
|
|
2974
|
+
"legal_privilege_lost_by_disclosure"
|
|
2975
|
+
],
|
|
2976
|
+
"researchBasis": [
|
|
2977
|
+
"nist_privacy_framework",
|
|
2978
|
+
"nist_pii_confidentiality",
|
|
2979
|
+
"oecd_privacy_principles",
|
|
2980
|
+
"gdpr_principles",
|
|
2981
|
+
"contextual_integrity",
|
|
2982
|
+
"data_minimization",
|
|
2983
|
+
"purpose_limitation",
|
|
2984
|
+
"privacy_by_design",
|
|
2985
|
+
"information_flow_control",
|
|
2986
|
+
"privacy_risk_management",
|
|
2987
|
+
"reidentification_risk",
|
|
2988
|
+
"secrets_management",
|
|
2989
|
+
"records_retention",
|
|
2990
|
+
"zero_trust",
|
|
2991
|
+
"auditability"
|
|
2992
|
+
]
|
|
2993
|
+
}
|
|
2994
|
+
},
|
|
2995
|
+
{
|
|
2996
|
+
"archKey": "superOntologyStrategicIncentiveCompatibilityFile",
|
|
2997
|
+
"file": "super-ontology-strategic-incentive-compatibility.json",
|
|
2998
|
+
"doc": {
|
|
2999
|
+
"schemaVersion": "1.0",
|
|
3000
|
+
"kind": "agentlas-super-ontology-strategic-incentive-compatibility",
|
|
3001
|
+
"state": "local_candidate",
|
|
3002
|
+
"projectId": "__PROJECT_ID__",
|
|
3003
|
+
"draftId": null,
|
|
3004
|
+
"runtimePromotionAllowed": false,
|
|
3005
|
+
"defaultDecision": "incentive_evidence_required_before_graph_memory_public_training_tool_route_release_financial_hiring_policy_customer_output_analytics_evaluation_or_personalization_authority",
|
|
3006
|
+
"incentiveSignalTypes": [
|
|
3007
|
+
"kpi_bonus",
|
|
3008
|
+
"commission",
|
|
3009
|
+
"promotion",
|
|
3010
|
+
"cost_savings",
|
|
3011
|
+
"approval_rate",
|
|
3012
|
+
"benchmark_score",
|
|
3013
|
+
"customer_rating",
|
|
3014
|
+
"retention_metric",
|
|
3015
|
+
"compliance_attestation",
|
|
3016
|
+
"vote_power",
|
|
3017
|
+
"access_grant",
|
|
3018
|
+
"data_payment",
|
|
3019
|
+
"social_status",
|
|
3020
|
+
"family_pressure",
|
|
3021
|
+
"none_declared"
|
|
3022
|
+
],
|
|
3023
|
+
"authoritySurfaces": [
|
|
3024
|
+
"graph_authority",
|
|
3025
|
+
"memory_authority",
|
|
3026
|
+
"public_export_authority",
|
|
3027
|
+
"training_authority",
|
|
3028
|
+
"tool_authority",
|
|
3029
|
+
"route_authority",
|
|
3030
|
+
"release_authority",
|
|
3031
|
+
"financial_authority",
|
|
3032
|
+
"hiring_authority",
|
|
3033
|
+
"policy_authority",
|
|
3034
|
+
"customer_output_authority",
|
|
3035
|
+
"analytics_authority",
|
|
3036
|
+
"evaluation_authority",
|
|
3037
|
+
"personalization_authority"
|
|
3038
|
+
],
|
|
3039
|
+
"requiredIncentiveEvidence": [
|
|
3040
|
+
"principal_id",
|
|
3041
|
+
"agent_id",
|
|
3042
|
+
"role_or_delegation",
|
|
3043
|
+
"private_information_inventory",
|
|
3044
|
+
"objective_function",
|
|
3045
|
+
"payoff_or_reward_model",
|
|
3046
|
+
"conflict_of_interest_disclosure",
|
|
3047
|
+
"strategic_behavior_hypothesis",
|
|
3048
|
+
"counterfactual_truthfulness_check",
|
|
3049
|
+
"holdout_or_audit_sample",
|
|
3050
|
+
"independent_verification",
|
|
3051
|
+
"collusion_check",
|
|
3052
|
+
"peer_pressure_check",
|
|
3053
|
+
"mechanism_constraint",
|
|
3054
|
+
"counter_incentive",
|
|
3055
|
+
"review_owner",
|
|
3056
|
+
"appeal_or_challenge_path",
|
|
3057
|
+
"audit_trace",
|
|
3058
|
+
"rollback_snapshot",
|
|
3059
|
+
"post_decision_monitoring",
|
|
3060
|
+
"data_quality_contribution",
|
|
3061
|
+
"budget_or_transfer_rule",
|
|
3062
|
+
"incentive_compatibility_argument",
|
|
3063
|
+
"residual_incentive_risk"
|
|
3064
|
+
],
|
|
3065
|
+
"hardStops": [
|
|
3066
|
+
"self_report_as_truth",
|
|
3067
|
+
"kpi_as_objective",
|
|
3068
|
+
"commission_report_as_fact",
|
|
3069
|
+
"manager_approval_as_no_conflict",
|
|
3070
|
+
"vendor_claim_as_source_quality",
|
|
3071
|
+
"customer_rating_as_value",
|
|
3072
|
+
"agent_vote_as_independent_signal",
|
|
3073
|
+
"benchmark_score_as_general_capability",
|
|
3074
|
+
"cheap_provider_as_best_provider",
|
|
3075
|
+
"data_provider_label_as_quality",
|
|
3076
|
+
"compliance_attestation_as_compliance",
|
|
3077
|
+
"peer_pressure_as_consensus",
|
|
3078
|
+
"hidden_affiliation_as_neutral_review",
|
|
3079
|
+
"survey_response_as_stable_preference",
|
|
3080
|
+
"retention_metric_as_satisfaction",
|
|
3081
|
+
"access_request_as_need_to_know",
|
|
3082
|
+
"family_pressure_as_user_preference",
|
|
3083
|
+
"approval_chain_as_truthfulness",
|
|
3084
|
+
"cost_saving_as_system_health",
|
|
3085
|
+
"strategic_silence_as_no_risk",
|
|
3086
|
+
"collusive_agents_as_quorum",
|
|
3087
|
+
"mechanism_missing_to_runtime_write",
|
|
3088
|
+
"incentive_conflict_to_memory_write",
|
|
3089
|
+
"reward_model_as_human_goal"
|
|
3090
|
+
],
|
|
3091
|
+
"researchBasis": [
|
|
3092
|
+
"mechanism_design",
|
|
3093
|
+
"incentive_compatibility",
|
|
3094
|
+
"principal_agent_theory",
|
|
3095
|
+
"information_asymmetry",
|
|
3096
|
+
"moral_hazard",
|
|
3097
|
+
"adverse_selection",
|
|
3098
|
+
"strategic_classification",
|
|
3099
|
+
"goodhart_law",
|
|
3100
|
+
"campbell_law",
|
|
3101
|
+
"game_theory",
|
|
3102
|
+
"multi_agent_systems",
|
|
3103
|
+
"nist_ai_rmf",
|
|
3104
|
+
"nist_genai_profile",
|
|
3105
|
+
"oecd_ai_principles",
|
|
3106
|
+
"auditability",
|
|
3107
|
+
"human_factors"
|
|
3108
|
+
]
|
|
3109
|
+
}
|
|
3110
|
+
},
|
|
3111
|
+
{
|
|
3112
|
+
"archKey": "superOntologyReflexiveFeedbackStabilityFile",
|
|
3113
|
+
"file": "super-ontology-reflexive-feedback-stability.json",
|
|
3114
|
+
"doc": {
|
|
3115
|
+
"schemaVersion": "1.0",
|
|
3116
|
+
"kind": "agentlas-super-ontology-reflexive-feedback-stability",
|
|
3117
|
+
"state": "local_candidate",
|
|
3118
|
+
"projectId": "__PROJECT_ID__",
|
|
3119
|
+
"draftId": null,
|
|
3120
|
+
"runtimePromotionAllowed": false,
|
|
3121
|
+
"defaultDecision": "feedback_stability_evidence_required_before_graph_memory_public_training_tool_route_release_financial_hiring_policy_customer_output_analytics_evaluation_physical_or_personalization_authority",
|
|
3122
|
+
"interventionTypes": [
|
|
3123
|
+
"recommendation",
|
|
3124
|
+
"ranking",
|
|
3125
|
+
"notification",
|
|
3126
|
+
"automation",
|
|
3127
|
+
"memory_write",
|
|
3128
|
+
"retrieval_biasing",
|
|
3129
|
+
"dashboard_metric",
|
|
3130
|
+
"pricing_or_budget_change",
|
|
3131
|
+
"training_update",
|
|
3132
|
+
"route_update",
|
|
3133
|
+
"access_policy_change",
|
|
3134
|
+
"social_prompt",
|
|
3135
|
+
"customer_message",
|
|
3136
|
+
"physical_action",
|
|
3137
|
+
"none_declared"
|
|
3138
|
+
],
|
|
3139
|
+
"loopSignalTypes": [
|
|
3140
|
+
"post_intervention_observation",
|
|
3141
|
+
"behavior_change",
|
|
3142
|
+
"data_distribution_shift",
|
|
3143
|
+
"self_generated_content",
|
|
3144
|
+
"model_output_reuse",
|
|
3145
|
+
"metric_response",
|
|
3146
|
+
"user_adaptation",
|
|
3147
|
+
"agent_self_evaluation",
|
|
3148
|
+
"market_response",
|
|
3149
|
+
"social_contagion",
|
|
3150
|
+
"scheduler_replay"
|
|
3151
|
+
],
|
|
3152
|
+
"authoritySurfaces": [
|
|
3153
|
+
"graph_authority",
|
|
3154
|
+
"memory_authority",
|
|
3155
|
+
"public_export_authority",
|
|
3156
|
+
"training_authority",
|
|
3157
|
+
"tool_authority",
|
|
3158
|
+
"route_authority",
|
|
3159
|
+
"release_authority",
|
|
3160
|
+
"financial_authority",
|
|
3161
|
+
"hiring_authority",
|
|
3162
|
+
"policy_authority",
|
|
3163
|
+
"customer_output_authority",
|
|
3164
|
+
"analytics_authority",
|
|
3165
|
+
"evaluation_authority",
|
|
3166
|
+
"personalization_authority",
|
|
3167
|
+
"physical_authority"
|
|
3168
|
+
],
|
|
3169
|
+
"requiredFeedbackEvidence": [
|
|
3170
|
+
"intervention_id",
|
|
3171
|
+
"pre_intervention_baseline",
|
|
3172
|
+
"feedback_path_map",
|
|
3173
|
+
"time_lag_window",
|
|
3174
|
+
"post_intervention_observation",
|
|
3175
|
+
"counterfactual_or_holdout",
|
|
3176
|
+
"real_world_data_anchor",
|
|
3177
|
+
"synthetic_data_ratio",
|
|
3178
|
+
"stability_margin_or_error_budget",
|
|
3179
|
+
"damping_or_rate_limit",
|
|
3180
|
+
"saturation_bound",
|
|
3181
|
+
"externality_map",
|
|
3182
|
+
"affected_stakeholders",
|
|
3183
|
+
"monitoring_trace",
|
|
3184
|
+
"rollback_snapshot",
|
|
3185
|
+
"stop_condition",
|
|
3186
|
+
"owner_review",
|
|
3187
|
+
"residual_feedback_risk"
|
|
3188
|
+
],
|
|
3189
|
+
"hardStops": [
|
|
3190
|
+
"observation_after_intervention_as_neutral_truth",
|
|
3191
|
+
"recommendation_effect_as_preference",
|
|
3192
|
+
"self_generated_content_as_training_data",
|
|
3193
|
+
"model_output_as_source_corpus",
|
|
3194
|
+
"dashboard_change_as_system_improvement",
|
|
3195
|
+
"metric_response_as_real_world_gain",
|
|
3196
|
+
"repeated_retrieval_as_relevance",
|
|
3197
|
+
"agent_self_score_as_external_feedback",
|
|
3198
|
+
"closed_loop_without_counterfactual",
|
|
3199
|
+
"runaway_feedback_to_runtime_write",
|
|
3200
|
+
"oscillation_as_adaptation",
|
|
3201
|
+
"delayed_harm_ignored",
|
|
3202
|
+
"synthetic_data_loop_as_real_distribution",
|
|
3203
|
+
"intervention_without_stop_condition",
|
|
3204
|
+
"user_adaptation_as_stable_preference",
|
|
3205
|
+
"market_response_as_causal_truth",
|
|
3206
|
+
"personal_nudge_as_identity_change",
|
|
3207
|
+
"training_on_ai_outputs_without_real_anchor",
|
|
3208
|
+
"feedback_loop_to_memory_write",
|
|
3209
|
+
"feedback_loop_to_policy_write",
|
|
3210
|
+
"externality_free_assumption"
|
|
3211
|
+
],
|
|
3212
|
+
"researchBasis": [
|
|
3213
|
+
"performative_prediction",
|
|
3214
|
+
"control_theory",
|
|
3215
|
+
"cybernetics",
|
|
3216
|
+
"systems_dynamics",
|
|
3217
|
+
"model_collapse",
|
|
3218
|
+
"distribution_shift",
|
|
3219
|
+
"causal_inference",
|
|
3220
|
+
"reinforcement_learning_feedback",
|
|
3221
|
+
"human_factors",
|
|
3222
|
+
"fairness_feedback_loops",
|
|
3223
|
+
"nist_ai_rmf",
|
|
3224
|
+
"safety_engineering",
|
|
3225
|
+
"ecological_feedback",
|
|
3226
|
+
"social_contagion"
|
|
3227
|
+
]
|
|
3228
|
+
}
|
|
3229
|
+
},
|
|
3230
|
+
{
|
|
3231
|
+
"archKey": "superOntologyTaskCoverageFile",
|
|
3232
|
+
"file": "super-ontology-task-coverage.json",
|
|
3233
|
+
"doc": {
|
|
3234
|
+
"schemaVersion": "1.0",
|
|
3235
|
+
"kind": "agentlas-super-ontology-task-coverage",
|
|
3236
|
+
"state": "local_candidate",
|
|
3237
|
+
"projectId": "__PROJECT_ID__",
|
|
3238
|
+
"draftId": null,
|
|
3239
|
+
"runtimePromotionAllowed": false,
|
|
3240
|
+
"taskFamilies": [
|
|
3241
|
+
"retrieve_answer",
|
|
3242
|
+
"summarize_synthesize",
|
|
3243
|
+
"draft_artifact",
|
|
3244
|
+
"transform_format",
|
|
3245
|
+
"analyze_decide",
|
|
3246
|
+
"plan_sequence",
|
|
3247
|
+
"coordinate_social",
|
|
3248
|
+
"execute_tool",
|
|
3249
|
+
"monitor_repair",
|
|
3250
|
+
"personalize_memory",
|
|
3251
|
+
"regulated_boundary",
|
|
3252
|
+
"multimodal_generate",
|
|
3253
|
+
"physical_or_sensor",
|
|
3254
|
+
"software_change",
|
|
3255
|
+
"financial_or_compliance",
|
|
3256
|
+
"education_or_coaching"
|
|
3257
|
+
],
|
|
3258
|
+
"affordanceTypes": [
|
|
3259
|
+
"read",
|
|
3260
|
+
"draft",
|
|
3261
|
+
"write",
|
|
3262
|
+
"publish",
|
|
3263
|
+
"execute",
|
|
3264
|
+
"physical",
|
|
3265
|
+
"train"
|
|
3266
|
+
],
|
|
3267
|
+
"evidenceModes": [
|
|
3268
|
+
"citation",
|
|
3269
|
+
"current_approved_source",
|
|
3270
|
+
"owner_authority",
|
|
3271
|
+
"policy_or_law",
|
|
3272
|
+
"measurement_or_dataset",
|
|
3273
|
+
"license_or_consent",
|
|
3274
|
+
"runtime_test",
|
|
3275
|
+
"rollback_plan"
|
|
3276
|
+
],
|
|
3277
|
+
"defaultDecision": "classify_before_action",
|
|
3278
|
+
"hardStops": [
|
|
3279
|
+
"missing_task_family",
|
|
3280
|
+
"missing_affordance_type",
|
|
3281
|
+
"missing_evidence_mode",
|
|
3282
|
+
"write_without_rollback",
|
|
3283
|
+
"publish_execute_physical_or_train_without_authority"
|
|
3284
|
+
]
|
|
3285
|
+
}
|
|
3286
|
+
}
|
|
3287
|
+
]
|
|
3288
|
+
}
|