Summary
AKF has Python and TypeScript SDKs, but many AI/ML tools are written in Rust. A Rust example showing how to read/write AKF metadata would expand the ecosystem.
What needs to happen
- Create
examples/rust/ directory
- Add a simple Rust program that reads an AKF JSON sidecar and prints trust scores
- Add a
Cargo.toml with serde_json for parsing
- Include a README with usage instructions
Helpful context
- AKF metadata is just JSON — no special library needed, just
serde_json
- See
spec/akf-v1.1.schema.json for the schema
- Look at
examples/ for existing examples in other languages
Acceptance criteria
Summary
AKF has Python and TypeScript SDKs, but many AI/ML tools are written in Rust. A Rust example showing how to read/write AKF metadata would expand the ecosystem.
What needs to happen
examples/rust/directoryCargo.tomlwith serde_json for parsingHelpful context
serde_jsonspec/akf-v1.1.schema.jsonfor the schemaexamples/for existing examples in other languagesAcceptance criteria
cargo runreads and prints AKF metadata from a.akffile