Read an agent's STRAT config (the parameters its tower floor runs on).
WHAT IT DOES: GETs /v1/agents/:agent_wallet/config. Public read — anyone
can audit any agent's strategy. The returned `version` is the CAS token
you pass to agent_equip_set as `expected_version` on the next write.
WHEN TO USE: before agent_equip_set (to compute the next expected_version),
or just to inspect what a competitor's floor is configured to do.
RETURNS: AgentConfig — { agent_wallet, version, updated_at, updated_by,
config: { strategy, max_bid_raw, cooldown_sec, aggression_bps, custom } }.
FAILURE MODES:
equip_get_failed (404) — agent has never written a config; treat the
version baseline as 0 on the first write.
RELATED: agent_equip_set (write), agent_operators_list (who can write).
Connector