ThesisCapabilitiesInstitutionsDevelopersTrustBriefing

The implementation thesis: ontology, schema, API, MCP, workflow, audit.

Kinetic capabilities are designed as productized interfaces. This static site documents the intended capability surface and demo/reference architecture; it does not expose a live sensitive API.

OntologySchemaAPIMCP ToolWorkflowAudit

Every capability has the same contract shape.

The public product language is simple; the engineering model is explicit. Each capability defines the domain objects, input and output schemas, API routes, MCP tool mapping, events, access policy, and audit semantics.

{
  "capability_id": "kinetic.evidence_graph.v1",
  "domain": "public_integrity",
  "interfaces": {
    "rest": ["POST /v1/evidence/graph/demo"],
    "mcp": ["build_evidence_graph"],
    "events": ["evidence.graph.created"]
  },
  "governance": {
    "human_review_required": true,
    "audit_level": "full"
  }
}

Routes describe the capability model.

GET /v1/capabilitiesList available capability families and access posture.
POST /v1/evidence/graph/demoBuild a sample evidence graph from synthetic material.
POST /v1/records/redact/demoClassify and prepare a demo records packet for review.
POST /v1/triage/no-wrong-door/demoRoute a synthetic issue into next steps and documents.
POST /v1/cyber/incident/demoStructure a defensive incident coordination docket.
GET /v1/schemas/{schema_id}Retrieve a versioned schema definition.
GET /v1/ontologies/{ontology_id}Retrieve a domain object model.

These routes document intended demo/reference interfaces. No sensitive production capability is exposed by this static site.

Every sensitive call needs a governance envelope.

The Trust Kernel carries actor, organization, role, purpose, capability scope, data classes, review requirement, retention policy, and audit level.

Open API reference file
{
  "actor": { "role": "records_officer" },
  "purpose": { "authorized_use": "records_processing" },
  "capability": { "id": "kinetic.records.release.v1" },
  "governance": {
    "pii_minimization": true,
    "human_review_required": true,
    "audit_level": "full"
  }
}