From 1efee969c8ee139b024ef297ca352206951fb9c5 Mon Sep 17 00:00:00 2001 From: Michael Heller <21163552+mdheller@users.noreply.github.com> Date: Tue, 16 Jun 2026 12:49:24 -0400 Subject: [PATCH 1/2] =?UTF-8?q?Add=20.sourceos/manifest.json=20=E2=80=94?= =?UTF-8?q?=20declare=20agentplane=20as=20SourceOS=20agent-execution=20com?= =?UTF-8?q?ponent?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Registers agentplane in the SourceOS component registry with: - domain: agent-execution - ownedSchemas: Bundle, GovernanceContext, ValidationArtifact, PlacementDecision, RunArtifact, ReplayArtifact, StopGateArtifact, SourceOSContextToolProviderEvidence, SourceOSContextCuminRun - policyClass: critical (stop-gate logic + live Tekton mutation surface) - dangerousSurfaces: live_tekton_mutation, stop_gate.override --- .sourceos/manifest.json | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 .sourceos/manifest.json diff --git a/.sourceos/manifest.json b/.sourceos/manifest.json new file mode 100644 index 0000000..67b7aa3 --- /dev/null +++ b/.sourceos/manifest.json @@ -0,0 +1,36 @@ +{ + "repo": "SocioProphet/agentplane", + "domain": "agent-execution", + "specVersion": "0.1.0", + "ownedSchemas": [ + "Bundle", + "GovernanceContext", + "ValidationArtifact", + "PlacementDecision", + "RunArtifact", + "ReplayArtifact", + "StopGateArtifact", + "SourceOSContextToolProviderEvidence", + "SourceOSContextCuminRun" + ], + "syncEngines": [], + "sourceChannels": [], + "policyClasses": [ + "critical" + ], + "auditEvents": [ + "bundle.validated", + "bundle.placed", + "bundle.executed", + "sourceos.delegated.recorded", + "stop-gate.evaluated" + ], + "dangerousSurfaces": [ + "sourceos.delegated.live_tekton_mutation", + "bundle.stop_gate.override" + ], + "authorityRepos": [ + "SocioProphet/agentplane" + ], + "notes": "Execution control plane for the SocioProphet AI+HW+State stack. Bridges agentplane bundles to SourceOS image production surfaces (Tekton, Katello). Delegated execution records are the evidence boundary between agent intent and SourceOS content lifecycle." +} From 8578cd89b0cf00cc6a24836547e4688e72f92789 Mon Sep 17 00:00:00 2001 From: Michael Heller <21163552+mdheller@users.noreply.github.com> Date: Tue, 16 Jun 2026 13:20:45 -0400 Subject: [PATCH 2/2] Update manifest: add SourceOSInteractionEvidenceBinding + new schemas from main --- .sourceos/manifest.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.sourceos/manifest.json b/.sourceos/manifest.json index 67b7aa3..fd91382 100644 --- a/.sourceos/manifest.json +++ b/.sourceos/manifest.json @@ -11,7 +11,13 @@ "ReplayArtifact", "StopGateArtifact", "SourceOSContextToolProviderEvidence", - "SourceOSContextCuminRun" + "SourceOSContextCuminRun", + "SourceOSInteractionEvidenceBinding", + "AgentCycleHealth", + "AuthorityDependencyEvidence", + "RuntimeSandboxRun", + "WorkspaceProphetControlReceipt", + "ReasoningFailureTrace" ], "syncEngines": [], "sourceChannels": [],