agent-first-data 0.17.1

A naming convention that lets AI agents understand your data without being told what it means.
Documentation
# Canonical clippy config for every Rust spore in this kit. Every binary spore
# is an Agent-First Data emitter — structured events on stdout, never stderr.
#
# Default policy mirrored into each Rust project's clippy.toml. Repository
# tooling may select a project-specific full replacement.

# Production code uses the matching `deny` lint levels in each Cargo.toml.
# Tests may use these failure helpers when they make assertions clearer.
allow-unwrap-in-tests = true
allow-expect-in-tests = true
allow-panic-in-tests = true

disallowed-macros = [
  { path = "std::eprintln", reason = "AFDATA protocol/log events must use stdout only; stderr is not a protocol channel." },
]

disallowed-methods = [
  { path = "std::io::stderr", reason = "AFDATA protocol/log events must use stdout only; stderr is not a protocol channel." },
]