agent-first-http 0.6.0

Give an AI agent any URL and get back a usable page — fetched directly, or rendered in a real browser when the page needs one — with a human able to take over the same browser for a login, captcha, or 2FA.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
# 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.
#
# 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 = "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." },
]