Fleet discovery and registry β health tracking, capability matching, and agent radar.
pip install keeper-beaconThe lighthouse's radar system. Agents broadcast their presence, capabilities, and health status. The keeper tracks who's online, what they can do, and routes tasks to the right agent.
- Beacon Broadcasting β Agents announce presence and capabilities
- Health Tracking β Heartbeat monitoring with configurable intervals
- Capability Matching β Route tasks to agents with the right skills
- Radar Display β Real-time fleet status visualization
from keeper_beacon import Beacon, Radar
beacon = Beacon(
agent_id="oracle1",
capabilities=["coordination", "plato", "scholar"],
endpoint="http://147.224.38.131:8900"
)
beacon.broadcast()
radar = Radar()
radar.scan() # Returns all active fleet agents- fleet-formation-protocol β Agent formations
- cocapn β Main package
MIT