Open
Conversation
This was referenced May 5, 2026
mdheller
added a commit
to SourceOS-Linux/sourceos-devtools
that referenced
this pull request
May 6, 2026
Adds the first sourceosctl tooling slice for the SourceOS/SociOS local-first agentic graph foundation. Includes: - .sourceos/manifest.json for sourceos-devtools - contract validate, repo scan, estate scan, graph doctor, sync doctor, and policy explain helpers - entrypoint routing for new command groups - tests for manifest validation and repo scanning - integration documentation for M1 contract validation Related: SourceOS-Linux/sourceos-spec#86, SourceOS-Linux/sourceos-spec#94, #18
This was referenced May 6, 2026
mdheller
added a commit
to SocioProphet/policy-fabric
that referenced
this pull request
May 6, 2026
Adds .sourceos/manifest.json so Policy Fabric is scanner-visible for SourceOS/SociOS governed local-first agentic graph M1. Declares the policy domain, sourceos.sync.policy-fabric engine, critical policy class, strongest_policy_wins merge strategy, authority repos, audit events, and dangerous policy surfaces. Related: SourceOS-Linux/sourceos-spec#86, SourceOS-Linux/sourceos-spec#94, SourceOS-Linux/sourceos-devtools#23, #50
mdheller
added a commit
to SocioProphet/agent-registry
that referenced
this pull request
May 6, 2026
Adds .sourceos/manifest.json so Agent Registry is scanner-visible for SourceOS/SociOS governed local-first agentic graph M1. Declares the agent domain, sourceos.sync.agent-registry engine, critical policy class, signed_authority_required merge strategy, authority repos, audit events, and dangerous agent surfaces. Related: SourceOS-Linux/sourceos-spec#86, SourceOS-Linux/sourceos-spec#94, SourceOS-Linux/sourceos-devtools#23, #15
mdheller
added a commit
to SocioProphet/memory-mesh
that referenced
this pull request
May 6, 2026
Adds .sourceos/manifest.json so Memory Mesh is scanner-visible for SourceOS/SociOS governed local-first agentic graph M1. Declares the memory domain, sourceos.sync.memory-mesh engine, high policy class, manual_review merge strategy, authority repos, audit events, and dangerous memory surfaces. Related: SourceOS-Linux/sourceos-spec#86, SourceOS-Linux/sourceos-spec#94, SourceOS-Linux/sourceos-devtools#23, #18
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds the SourceOS/SociOS local-first agentic graph foundation as an additive architecture, security, integration, and machine-readable contract layer.
This PR establishes the control-plane spec for integrating SourceOS, Prophet Workspace, Memory Mesh, Agent Registry, Policy Fabric, TurtleTerm, BearBrowser, Mesh Rush, Sherlock, and related runtime repos around one governed graph substrate.
Added docs
docs/architecture/local-first-agentic-graph.mddocs/security/agentic-sync-threat-model.mddocs/specs/sync-engine-registry.mddocs/specs/sourcechannel.mddocs/integration/repo-map.mdAdded schemas
schemas/SourceOSRepoManifest.jsonschemas/SyncEngineManifest.jsonschemas/SourceChannelEnvelope.jsonschemas/SourceGraphWrite.jsonschemas/AgentCapabilityLease.jsonschemas/AuditEvent.jsonAdded examples and manifest
.sourceos/manifest.jsonexamples/sourceos-repo-manifest.jsonexamples/sync-engine-manifest.jsonexamples/sourcechannel-envelope.jsonexamples/agent-capability-lease.jsonexamples/audit-event.jsonDesign intent
This keeps
sourceos-specas the constitutional contract repo and prevents downstream implementation repos from inventing separate models for sync, policy, memory, agents, shell, browser, relay, and audit.Notes
The branch is additive. It does not rewrite existing schemas or APIs.
One
SourceGraphWriteexample fixture was deferred because the connector safety layer blocked that synthetic fixture write. The schema itself is included.Follow-up work
schemas/README.mdandexamples/README.mdindex tables..sourceos/manifest.jsonacross M1 repos.sourceos-devtools.Related