cmn-hypha 0.3.0

CMN CLI tool — spawn, grow, release, taste, bond, and absorb spores on the Code Mycelial Network
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Canonical clippy config for every Rust spore in this repo. Every binary
# spore is an Agent-First Data emitter — including cmn-tendril, whose
# desktop GUI emits AFD JSONL on stdout alongside hypha, synapse, etc.
#
# Source of truth — `sync-clippy.sh` mirrors this file into each spore's
# clippy.toml. Edit this file, then `bash scripts/sync-clippy.sh`.

disallowed-macros = [
  { path = "std::eprintln", reason = "Agent-First Data convention requires structured events on stdout only; stderr is not a protocol channel." },
]

disallowed-methods = [
  { path = "std::io::stderr", reason = "Agent-First Data convention requires structured events on stdout only; stderr is not a protocol channel." },
]