(no title)
ai_critic | 1 month ago
Please, please, please require HTTPS. Dear god.
The network is not secure.
Your example:
```
# Start a discovery server
python -m server.lad_server --name "My Agent" --port 8080
# Discover agents (in another terminal)
python -m client.lad_client --url http://localhost:8080
```
franzvill|1 month ago
The spec does require TLS - from Section 4.1: > "All HTTP endpoints MUST use TLS 1.2 or higher" > "Clients MUST verify TLS certificates"
The `http://localhost:8080` example is just for local development/demo purposes. In production, all discovery endpoints and AgentCard fetches must use HTTPS.