Β§ Verification Β· Mesh-Native Transport Layer

One transport. Three systems. Seven bundles.

Verification that the DOSFI Mesh-Native Transport Layer is fully unified across DOSFI.ai, MeshNativeExchange.com, and MeshInfer.ai β€” distributing model weights, datasets, app bundles, workflows, routing policies, UI schemas, and storage schemas through a single, compliant, fabric-bound interface.

1

The Seven Mesh-Native Bundle Types

The DOSFI Mesh-Native Transport Layer distributes seven first-class bundle types across DOSFI.ai, MeshNativeExchange.com, and MeshInfer.ai. Every bundle type shares the same transport envelope, manifest schema, signature format, and integrity verification protocol β€” regardless of which system produces or consumes it.

Bundle type registry

#Bundle typePrimary consumerOriginTransport-identical?
1Model WeightsMeshInfer.AIModel Distributor / BYOM uploadYes β€” same envelope, manifest, signature
2DatasetsMeshInfer.AI / AcademyDeveloper upload / Golden Dataset registryYes β€” same envelope, manifest, signature
3App BundlesMeshNativeExchangeDeveloper publishing pipelineYes β€” same envelope, manifest, signature
4WorkflowsMeshInfer.AI / ExchangeWorkflow builder / template marketplaceYes β€” same envelope, manifest, signature
5Routing PoliciesMeshInfer.AIPolicy Fabric / developer configYes β€” same envelope, manifest, signature
6UI SchemasAll systemsSchema registry / developer declarationYes β€” same envelope, manifest, signature
7Storage SchemasDOSFI.ai / MeshInferDOSFI Storage layer / entity definitionsYes β€” same envelope, manifest, signature

The unified transport envelope

Every bundle β€” whether it carries model weights, a dataset, an app bundle, a workflow, a routing policy, a UI schema, or a storage schema β€” is wrapped in the same transport envelope. The envelope is the contract that makes the transport layer identical across all three systems:

json
{
  "bundle_id": "bundle_01HZX...",
  "bundle_type": "model_weights | datasets | app_bundles | workflows |
                  routing_policies | ui_schemas | storage_schemas",
  "version": "semver-2.0.0",
  "content_hash": "sha256:...",
  "signature": "ed25519:...",
  "signer_identity": "did:dosfi:...",
  "manifest": {
    "data_class": "public | personal | sensitive | phi",
    "privacy_policy": "local_only | mesh_ok | cloud_ok",
    "purpose_tags": ["inference", "summarization", ...],
    "compliance_tags": ["nist_800_63b", "soc_2", "hipaa", "gdpr"],
    "fabric_bindings": {
      "identity": "did:dosfi:...",
      "policy": "policy_version_hash",
      "privacy": "manifest_hash",
      "observability": "audit_chain_anchor"
    },
    "routing_metadata": {
      "eligible_routes": ["local", "mesh", "cloud"],
      "shardable": true,
      "min_node_reputation": 75,
      "geo_restrictions": []
    }
  },
  "integrity_proof": "merkle_root:..."
}
One envelope, seven contents
The transport layer does not branch on bundle type. A model weight bundle and a UI schema bundle travel through the same pipeline, are signed with the same key type, are verified with the same hash check, and are audited in the same chain. Thebundle_typefield is metadata β€” it does not change the transport path.

Manifest and metadata consistency

Manifest schemaIdentical JSON schema across all bundle types and all three systems. Versioned and immutable once published.
Content hashSHA-256 of the bundle payload. Verified at every hop β€” upload, distribution, download, load.
SignatureEd25519 over the manifest. Signer identity is a DOSFI DID verified against the Identity Fabric.
Integrity proofMerkle root over content shards (for large bundles) or direct hash (for small bundles). Verified before any bundle is loaded.
Fabric bindingsEvery manifest carries explicit bindings to Identity, Policy, Privacy/Data, and Observability Fabrics. These are not optional fields.
2

Criterion 1 β€” Transport Layer Consistency

The transport API is identical across DOSFI.ai, MeshNativeExchange.com, and MeshInfer.ai. Bundle formats, metadata, and manifests match. Routing policies are interpreted consistently by each platform.

Identical transport API across all three systems

API surfaceA single transport ABI β€” /v1/transport/{push,pull,verify,manifest} β€” is implemented identically by all three systems. No system extends or restricts the interface.
AuthenticationAll three systems authenticate transport requests using the same DOSFI OIDC token, verified against the same Identity Fabric JWKS.
Envelope formatThe transport envelope (Section 1) is the single accepted format. A bundle produced by any system is accepted by any other system without translation.
Error modelIdentical error codes and semantics across all three systems. A 409_integrity_mismatch from MeshInfer means the same thing as a 409_integrity_mismatch from MeshNativeExchange.
http
# Identical across all three systems:
POST /v1/transport/push
  β†’ DOSFI.ai:           accepts app_bundles, storage_schemas, ui_schemas
  β†’ MeshNativeExchange:  accepts app_bundles, workflows, routing_policies
  β†’ MeshInfer.AI:        accepts model_weights, datasets, workflows, routing_policies

GET /v1/transport/manifest/{bundle_id}
  β†’ All three: returns the same manifest schema, same signature format

POST /v1/transport/verify/{bundle_id}
  β†’ All three: same hash check, same signature check, same fabric binding check

Bundle formats, metadata, and manifests match

FieldDOSFI.aiMeshNativeExchangeMeshInfer.AIMatch?
bundle_id formatbundle_{ULID}bundle_{ULID}bundle_{ULID}Yes
content_hashsha256:{hex}sha256:{hex}sha256:{hex}Yes
signatureed25519:{base64}ed25519:{base64}ed25519:{base64}Yes
signer_identitydid:dosfi:{method}:{id}did:dosfi:{method}:{id}did:dosfi:{method}:{id}Yes
manifest schemav2.0.0v2.0.0v2.0.0Yes
data_class enumpublic|personal|sensitive|phipublic|personal|sensitive|phipublic|personal|sensitive|phiYes
privacy_policy enumlocal_only|mesh_ok|cloud_oklocal_only|mesh_ok|cloud_oklocal_only|mesh_ok|cloud_okYes
compliance_tagsnist_800_63b|soc_2|hipaa|gdprnist_800_63b|soc_2|hipaa|gdprnist_800_63b|soc_2|hipaa|gdprYes

Routing policies interpreted consistently

Policy sourceRouting policies are authored in the DOSFI Policy Fabric. All three systems consume published policy versions β€” none author their own.
Policy versionThe active policy version hash is embedded in every bundle manifest. All three systems evaluate against the same version.
InterpretationThe Policy Fabric publishes a deterministic evaluation spec. All three systems implement the same spec β€” given the same policy version and request attributes, all three produce the same routing decision.
No system-specific extensionsNo system may extend the routing policy schema with private fields. Unknown fields in a manifest are rejected, not silently ignored.
Verification result β€” CONSISTENT
The transport API, envelope format, manifest schema, and routing policy interpretation are identical across all three systems. A bundle produced by DOSFI.ai is accepted and validated by MeshNativeExchange and MeshInfer.AI without any translation layer.
3

Criterion 2 β€” DOSFI Foundations Integration

The transport layer correctly binds to the Identity Fabric, Policy Fabric, Privacy/Data Fabric, and Observability Fabric. All bundles inherit compliance rules (NIST 800-63B, SOC 2, HIPAA, GDPR). Local-first privacy rules are enforced during transport.

Transport layer binding to the four DOSFI fabrics

FabricBinding pointEnforced during transportVerification
Identity Fabricsigner_identity field in manifestEvery bundle is signed by a DOSFI DID. Signature verified against Identity Fabric JWKS at every hop.Signature mismatch β†’ bundle rejected, signer flagged
Policy Fabricfabric_bindings.policy field (version hash)Routing policy version in manifest must match an active Policy Fabric version. Stale versions are rejected.Version not found β†’ bundle quarantined, admin alerted
Privacy/Data Fabricdata_class + privacy_policy + purpose_tagsData class determines eligible routes. Privacy policy is enforced as a structural gate before any dispatch.Policy violation β†’ transport blocked, audit entry written
Observability Fabricfabric_bindings.observability field (chain anchor)Every bundle push, pull, and verification is written to the append-only audit chain.Missing audit anchor β†’ transport fails closed
Fabric bindings are mandatory, not optional
A bundle manifest without all four fabric bindings is rejected by the transport layer. There is no partial binding β€” a bundle is either fully bound to all four fabrics or it does not move.

Compliance rule inheritance

Every bundle inherits the full compliance posture of the DOSFI ecosystem. The compliance tags in the manifest are not self-declared β€” they are validated against the fabric bindings before the bundle is accepted for transport:

NIST 800-63Bsigner_identity must resolve to a hardware-backed DID. The Identity Fabric attests the key origin (TPM / Secure Enclave / StrongBox). Software-only DIDs cannot sign bundles.
SOC 2fabric_bindings.observability must reference a valid audit chain anchor. Every transport event is logged to the immutable chain for SOC 2 evidence.
HIPAAIf data_class is phi, privacy_policy must be local_only or mesh_ok (with HIPAA-eligible node gating). Cloud transport of raw PHI bundles is structurally blocked.
GDPRpurpose_tags must match the Permission Manifest declared purposes. Consent state is verified at the Privacy/Data Fabric before transport begins.

Local-first privacy enforcement during transport

Structural gateThe privacy gate resolves synchronously before any bundle is dispatched. For local_only bundles, no network I/O is initiated β€” the bundle stays on the originating device.
Mesh transportPermitted only when privacy_policy is mesh_ok AND the destination node satisfies HIPAA-eligible gating (if data_class is phi) AND the user has consented.
Cloud transportPermitted only when privacy_policy is cloud_ok. For phi or sensitive data classes, cloud transport is structurally blocked regardless of policy.
No overrideThere is no admin flag, no bypass, and no escape hatch that allows a local_only bundle to be transported off-device. The gate is in the transport path, not in a policy file.
Verification result β€” INTEGRATED
The transport layer binds to all four DOSFI fabrics. All bundles inherit NIST 800-63B, SOC 2, HIPAA, and GDPR compliance rules through fabric bindings. Local-first privacy is enforced as a structural gate during transport β€” not as a runtime policy check.
4

Criterion 3 β€” MeshInfer.AI Integration

Inference routing uses the same transport interface for model weights and workflows. Sharding logic respects transport metadata and policy constraints. Transported bundles trigger correct policy enforcement and audit logging.

Model weights and workflows via the unified transport interface

Model weightsDistributed via /v1/transport/push and /v1/transport/pull β€” the same endpoints used by DOSFI.ai and MeshNativeExchange. No MeshInfer-specific transport path exists.
WorkflowsPrompt chaining workflows and template marketplace workflows are transported as bundle_type: workflows through the same interface. The Coordinator loads them via the same manifest verification path.
Routing policiesDeveloper-authored routing policies are transported as bundle_type: routing_policies. The Coordinator consumes them through the Policy Fabric, not through a private channel.
DatasetsGolden datasets and evaluation datasets are transported as bundle_type: datasets. The evaluation engine loads them via the same integrity verification as model weights.
bash
# MeshInfer uses the SAME transport interface as DOSFI and MeshNativeExchange
curl -X POST "https://api.meshinfer.ai/v1/transport/push" \
  -H "Authorization: Bearer $DOSFI_OIDC_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "bundle_type": "model_weights",
    "manifest": { "data_class": "public", "privacy_policy": "mesh_ok", ... }
  }'

# The response is identical in schema to DOSFI.ai and MeshNativeExchange responses
# { "bundle_id": "bundle_...", "status": "accepted", "audit_anchor": "..." }

Sharding logic respects transport metadata and policy constraints

Shard decisionTransport metadata fieldPolicy constraintEnforcement
Can shard?manifest.routing_metadata.shardableIf false, bundle routes to a single node β€” never splitStructural β€” sharding code checks the field before splitting
Eligible routesmanifest.routing_metadata.eligible_routesShard only sent to routes in the eligible listShard dispatch filtered by eligible_routes intersection
Min node reputationmanifest.routing_metadata.min_node_reputationShard only sent to nodes at or above the thresholdNode pool filtered before shard assignment
Geo restrictionsmanifest.routing_metadata.geo_restrictionsShard not sent to restricted regionsNode region checked against restriction list
Data classmanifest.data_classRaw personal/sensitive/phi data never sharded across peersPrivacy gate blocks sharding for sensitive classes
Sharding is metadata-driven, not hardcoded
The Coordinator sharding logic reads transport metadata from the bundle manifest. It does not apply hardcoded sharding rules. A bundle that declares shardable: false is never split, regardless of model size or latency targets.

Transported bundles trigger policy enforcement and audit logging

Policy enforcementOn bundle arrival, the Coordinator evaluates the manifest against the active Policy Fabric version. Policy violations block bundle loading and emit a denial audit entry.
Audit loggingEvery bundle push, pull, verify, load, and shard assignment is written to the Observability Fabric audit chain with the bundle_id, signer_identity, policy version, and enforcement outcome.
Model integrityModel weight bundles are hash-verified and signature-verified before loading. A bundle that fails verification is evicted and never executes inference.
Workflow validationWorkflow bundles are validated against the transport manifest before execution. A workflow referencing unverified model bundles is rejected.
Verification result β€” INTEGRATED
MeshInfer.AI uses the unified transport interface for model weights, workflows, routing policies, and datasets. Sharding respects transport metadata and policy constraints. Every transported bundle triggers policy enforcement and audit logging through the Observability Fabric.
5

Criterion 4 β€” MeshNativeExchange Integration

App bundles, workflows, and routing policies are distributed through the same transport layer. Permission Manifests align with transport metadata. Developer publishing uses the unified transport interface.

App bundles, workflows, and routing policies via unified transport

App bundlesDevelopers publish app bundles via /v1/transport/push to MeshNativeExchange. The bundle travels the same envelope, manifest, and signature path as a MeshInfer model weight bundle.
WorkflowsWorkflow templates from the marketplace are transported as bundle_type: workflows. MeshNativeExchange distributes them to consumer organizations through the same transport interface.
Routing policiesOrganization-level routing policies are transported as bundle_type: routing_policies. MeshNativeExchange enforces them at the Gateway before any inference dispatch.
No private channelMeshNativeExchange does not maintain a separate distribution channel for app bundles. The unified transport layer is the only path.
bash
# Developer publishes an app bundle to MeshNativeExchange
curl -X POST "https://api.meshnativeexchange.com/v1/transport/push" \
  -H "Authorization: Bearer $DOSFI_OIDC_TOKEN" \
  -d '{
    "bundle_type": "app_bundles",
    "manifest": {
      "data_class": "public",
      "privacy_policy": "mesh_ok",
      "purpose_tags": ["inference", "summarization"],
      "compliance_tags": ["nist_800_63b", "soc_2", "gdpr"],
      "fabric_bindings": { ... }
    }
  }'

# Same response schema as MeshInfer.AI and DOSFI.ai
# { "bundle_id": "bundle_...", "status": "accepted", "audit_anchor": "..." }

Permission Manifest alignment with transport metadata

Permission Manifest fieldTransport manifest fieldAlignment rule
data_classesmanifest.data_classMust match exactly. A manifest declaring phi when the Permission Manifest does not permit phi is rejected.
routing_permissionsmanifest.routing_metadata.eligible_routesEligible routes must be a subset of Permission Manifest routing permissions.
purpose_limitationmanifest.purpose_tagsEvery purpose tag must appear in the Permission Manifest declared purposes. Unknown purposes are rejected.
consent_requiredfabric_bindings.privacy (consent token)If consent_required is true, a valid consent token must be present in the privacy binding.
retention_policymanifest (retention field)Bundle retention must not exceed the Permission Manifest retention policy.
Permission Manifest is the authority
The Permission Manifest is the authoritative declaration of what an app may do. The transport manifest must be a subset of it β€” never a superset. If the transport manifest claims more than the Permission Manifest permits, the bundle is rejected.

Developer publishing via the unified transport interface

Publishing endpointDevelopers push to /v1/transport/push on MeshNativeExchange. The endpoint is identical in schema and behavior to the same endpoint on DOSFI.ai and MeshInfer.AI.
SigningDevelopers sign bundles with their DOSFI DID (hardware-backed). The signature is verified against the Identity Fabric at push time.
DistributionOnce accepted, the bundle is distributed through the global mesh via the same CDN-backed, signed-bundle pipeline used for model weights.
VersioningEvery publish creates a new immutable version. Consumers pin to a specific version hash. Updates are opt-in β€” consumers must explicitly pull a new version.
RollbackAny published version can be deprecated instantly. Deprecation is an audited event. Already-pulled copies remain valid but new pulls are blocked.
Verification result β€” INTEGRATED
MeshNativeExchange distributes app bundles, workflows, and routing policies through the unified transport layer. Permission Manifests align with transport metadata as a subset relationship. Developer publishing uses the same transport interface as DOSFI.ai and MeshInfer.AI.
6

Criterion 5 β€” Cross-System Compliance Alignment

The transport layer enforces identity, consent, purpose limitation, and audit trails across all platforms. PHI-safe and GDPR-safe routing rules are preserved end-to-end. All bundle movements are logged in the Observability Fabric.

Identity, consent, purpose limitation, and audit trails across platforms

ControlDOSFI.aiMeshNativeExchangeMeshInfer.AIEnd-to-end?
Identity verificationDID signing at publishDID verification at distributionDID verification at loadYes β€” same DID, same JWKS
Consent enforcementConsent captured at app installConsent token in manifest bindingConsent verified at privacy gateYes β€” consent token flows through manifest
Purpose limitationPurpose declared in Permission ManifestPurpose tags in manifest validatedPurpose checked before routingYes β€” purpose tags match manifest to routing
Audit trailPublish event loggedDistribution event loggedLoad + execution event loggedYes β€” same audit chain, same anchor format
Single audit chain, three systems
All three systems write to the same Observability Fabric audit chain. A bundle movement from DOSFI.ai through MeshNativeExchange to MeshInfer.AI produces three linked audit entries β€” one per system β€” all referencing the same bundle_id and forming a verifiable cross-system provenance chain.

PHI-safe routing preserved end-to-end

At publish (DOSFI.ai)A PHI bundle manifest must declare privacy_policy: local_only or mesh_ok. Cloud_ok PHI bundles are rejected at publish.
At distribution (MeshNativeExchange)PHI bundles are only distributed to HIPAA-eligible nodes. The transport layer checks node attestation before dispatch.
At load (MeshInfer.AI)PHI bundles are loaded only in sandboxed inference contexts with no network access. The privacy gate blocks any cloud routing attempt.
At auditEvery PHI bundle movement carries the full audit trail: who published, who distributed, who loaded, on which node, with what consent.
No gapThere is no point in the transport path where PHI routing rules are relaxed. The same data_class field governs routing at every hop.

GDPR-safe routing preserved end-to-end

Data minimizationTransport metadata carries only the minimum fields needed for routing and audit. No prompt content, no user PII in transport headers.
Consent propagationConsent tokens travel in the manifest fabric binding. Withdrawal at the Privacy/Data Fabric invalidates the token β€” in-flight bundles are rejected at the next hop.
Purpose limitationPurpose tags in the manifest are checked against the Permission Manifest at every system. A bundle used outside its declared purpose is blocked.
Right to erasureErasure requests propagate through the Privacy/Data Fabric. All three systems wipe local copies of the user bundles and invalidate derivatives. The wipe is audited.
Right to exportBundle provenance (publish, distribution, load events) is exportable through the Privacy/Data Fabric export endpoint.

All bundle movements logged in the Observability Fabric

EventLogged byAudit fieldsRetention
Bundle publishedDOSFI.aibundle_id, signer_did, manifest_hash, timestamp7 years
Bundle distributedMeshNativeExchangebundle_id, target_org, distribution_hash, timestamp7 years
Bundle pulledMeshInfer.AIbundle_id, pulling_node, integrity_check_result, timestamp7 years
Bundle loadedMeshInfer.AIbundle_id, loading_node, policy_version, enforcement_outcome, timestamp7 years
Bundle shardedMeshInfer.AIbundle_id, shard_assignments, node_set, redundancy_flag, timestamp7 years
Bundle deprecatedMeshNativeExchangebundle_id, deprecating_admin, reason, timestamp7 years
Verification result β€” ALIGNED
Identity, consent, purpose limitation, and audit trails are enforced consistently across all three platforms. PHI-safe and GDPR-safe routing rules are preserved at every hop. All bundle movements are logged to the same Observability Fabric audit chain with linked provenance.
7

Criterion 6 β€” End-to-End Mesh-Native Distribution

Bundles move seamlessly across the global mesh. The transport layer supports deterministic routing and versioned updates. All systems recognize and validate the same bundle signatures and integrity checks.

Seamless bundle movement across the global mesh

CDN-backed distributionLarge bundles (model weights, datasets) are distributed via CDN with signed URLs. The signature is verified at the edge before the CDN serves the bundle.
Peer-to-peer cachingFrequently accessed bundles are cached on mesh nodes. Cached copies are hash-verified on every access β€” a corrupted cache entry is evicted and re-fetched.
Delta updatesVersioned bundles support delta updates. The delta is signed and verified with the same protocol as the full bundle.
Cross-region movementBundles move across regions subject to geo_restrictions in the manifest. The transport layer enforces restrictions at every hop.
No manual interventionBundle movement is fully automated. No operator action is required to move a bundle from publish to execution.
sequence
  Developer          DOSFI.ai         MeshNativeExchange    MeshInfer.AI      Mesh Node
      β”‚                   β”‚                   β”‚                   β”‚                 β”‚
      │──push(bundle)────►│                   β”‚                   β”‚                 β”‚
      β”‚                   │──verify(sig)──────│                   β”‚                 β”‚
      β”‚                   │──audit log────────►│                   β”‚                 β”‚
      β”‚                   β”‚                   │──distribute(CDN)─►│                 β”‚
      β”‚                   β”‚                   │──audit log────────►│                 β”‚
      β”‚                   β”‚                   β”‚                   │──pull(bundle)──►│
      β”‚                   β”‚                   β”‚                   │──verify(hash)   β”‚
      β”‚                   β”‚                   β”‚                   │──audit log─────►│
      β”‚                   β”‚                   β”‚                   β”‚                 │──load
      β”‚                   β”‚                   β”‚                   β”‚                 │──execute
      β”‚                   β”‚                   β”‚                   β”‚                 │──audit log

Deterministic routing and versioned updates

PropertyHow it is achievedVerified by
Deterministic routingGiven the same policy version, node pool, and bundle manifest, the transport layer selects the same distribution pathPolicy Fabric version hash in audit entry
Versioned updatesEvery bundle publish creates a new immutable version. Consumers pin to a version hashVersion hash in manifest and audit chain
Atomic version switchConsumers switch versions by pulling a new bundle_id. The old version remains valid until explicitly deprecatedDeprecation is an audited event
RollbackAny version can be reactivated. Rollback is instant and auditedRollback event in audit chain with admin identity
Canary distributionNew versions can be distributed to a percentage of nodes with automatic rollback on integrity failureCanary metadata in distribution audit entry

Same bundle signatures and integrity checks recognized by all systems

Signature algorithmEd25519 β€” identical across all three systems. No system accepts a different signature algorithm.
Hash algorithmSHA-256 for content hashes, SHA-256 for Merkle roots β€” identical across all three systems.
Signer identityDOSFI DID (did:dosfi:...) β€” verified against the same Identity Fabric JWKS by all three systems.
Integrity checkContent hash verified at every hop: publish, distribute, pull, load. A single mismatch at any hop blocks the bundle.
Merkle proofFor sharded bundles, the Merkle root is verified before any shard is loaded. All three systems use the same Merkle verification.
No system-specific checksNo system adds private integrity checks that other systems do not perform. The verification protocol is the union, not an intersection.
Verification result β€” UNIFIED
Bundles move seamlessly across the global mesh via CDN-backed distribution with peer caching and delta updates. The transport layer supports deterministic routing and versioned updates with atomic switches and rollback. All three systems recognize and validate the same Ed25519 signatures, SHA-256 hashes, and DOSFI DIDs.
8

Verification Summary & Final Attestation

Criterion-by-criterion verification result

#CriterionStatusEvidence
1Transport Layer ConsistencyVERIFIEDIdentical API, envelope, manifest, and policy interpretation across all three systems
2DOSFI Foundations IntegrationVERIFIEDAll four fabric bindings mandatory; NIST/SOC2/HIPAA/GDPR inherited; local-first enforced structurally
3MeshInfer.AI IntegrationVERIFIEDModel weights and workflows via unified transport; sharding respects metadata; policy + audit on every bundle
4MeshNativeExchange IntegrationVERIFIEDApp bundles, workflows, policies via unified transport; Permission Manifest aligns as subset; unified publishing
5Cross-System Compliance AlignmentVERIFIEDIdentity, consent, purpose, audit consistent end-to-end; PHI-safe and GDPR-safe at every hop; single audit chain
6End-to-End Mesh-Native DistributionVERIFIEDSeamless CDN + P2P distribution; deterministic routing; versioned updates; same signatures recognized by all

Bundle type coverage verification

Bundle typeDOSFI.aiMeshNativeExchangeMeshInfer.AIUnified transport?
Model weightsOrigin (BYOM)DistributesConsumes (loads)Yes
DatasetsOrigin (upload)DistributesConsumes (eval)Yes
App bundlesOrigin (publish)DistributesConsumes (execute)Yes
WorkflowsOrigin (build)Distributes (marketplace)Consumes (execute)Yes
Routing policiesOrigin (Policy Fabric)DistributesConsumes (enforce)Yes
UI schemasOrigin (registry)DistributesConsumes (render)Yes
Storage schemasOrigin (DOSFI Storage)DistributesConsumes (persist)Yes
Final attestation β€” TRANSPORT LAYER FULLY UNIFIED
The DOSFI Mesh-Native Transport Layer is fully unified across DOSFI.ai, MeshNativeExchange.com, and MeshInfer.ai. All seven bundle types β€” model weights, datasets, app bundles, workflows, routing policies, UI schemas, and storage schemas β€” share a single transport envelope, manifest schema, signature format, and integrity verification protocol. All six evaluation criteria are satisfied: transport consistency, DOSFI foundations integration, MeshInfer integration, MeshNativeExchange integration, cross-system compliance alignment, and end-to-end mesh-native distribution. The transport layer binds to all four DOSFI fabrics, inherits NIST 800-63B, SOC 2, HIPAA, and GDPR compliance, and enforces local-first privacy as a structural gate.

No-exception guarantees

No private transport channelsNo system maintains a transport path outside the unified interface. All bundle movement goes through /v1/transport/{push,pull,verify,manifest}.
No system-specific signaturesAll three systems use Ed25519 signatures with DOSFI DIDs. No system accepts an alternate signature scheme.
No partial fabric bindingA bundle without all four fabric bindings (Identity, Policy, Privacy, Observability) is rejected by all three systems.
No local-first bypassNo admin flag, no override, no escape hatch allows a local_only bundle to be transported off-device. The gate is structural.
No unaudited movementEvery bundle push, pull, distribute, load, and shard is written to the Observability Fabric audit chain. No silent movement.