Where does the agno command come from?
pip install agno 2.7+ puts the agno and agnoctl commands on your PATH; both run the same CLI.
Installing agno 2.7 or later gives you the Agno CLI alongside the SDK:
pip install -U agno
agno --helpTwo commands land on your PATH: agno and agnoctl. Both run the same CLI. The agnoctl package is also published standalone with typer, rich, and httpx as dependencies, so you can run it on machines without the SDK:
uvx agnoctl connectThe CLI scaffolds AgentOS projects (agno create), runs them with Docker Compose (agno up), connects coding agents over MCP (agno connect), and manages service-account tokens (agno tokens).