contextgraph-types 0.1.1

Context Graph Protocol wire types: context frames, queries, capabilities, provenance. MIT, zero deps beyond serde — publishable to crates.io independently of any stella code.
Documentation
contextgraph-types-0.1.1 has been yanked.

contextgraph-types

crates.io docs.rs

The wire types for the Context Graph Protocol: context frames, queries, capabilities, and provenance.

contextgraph-types is the industry-facing artifact of the Context Graph Protocol crates: MIT licensed, zero dependencies beyond serde. You can implement a CGP provider or host in Rust against this crate alone, with no dependency on Stella or any of its other crates.

Protocol version: contextgraph/1.0-draft (see stability.md for what that means for this crate's semver).

What's in here

Example

use contextgraph_types::{ContextFrame, FrameKind};

let frame = ContextFrame {
    id: "frm_1".into(),
    kind: FrameKind::Doc,
    title: "Getting Started".into(),
    content: "Install with `cargo add contextgraph-types`.".into(),
    uri: Some("file:///docs/getting-started.md".into()),
    score: 0.82,
    token_cost: 64,
    valid_from: None,
    valid_to: None,
    recorded_at: None,
    provenance: vec![],
    citation_label: Some("getting-started.md L1-40".into()),
    embedding: None,
    relations: vec![],
};

assert!(frame.has_valid_score());
let json = serde_json::to_string(&frame)?;
# Ok::<(), serde_json::Error>(())

Every type here round-trips through serde_json — that JSON shape is the protocol; there is no separate IDL.

Building on this crate

  • contextgraph-host — a host runtime (provider discovery, stdio/HTTP transports, consent gating, fan-out routing) built on these types, for anyone who wants a ready-made Context Graph Protocol host rather than hand- rolling the wire protocol.
  • contextgraph-conformance — the public conformance suite. Green on it is what "Context Graph Protocol conformant" means for your declared capability set.

Docs

License

MIT — see LICENSE-MIT in the workspace root.