### Install Agent Computer CLI Source: https://agentcomputer.ai/docs Install the Agent Computer CLI using the staging installer script from GitHub releases. ```bash curl -fsSL https://agentcomputer.ai/install.sh | bash ``` -------------------------------- ### Create a new computer Source: https://agentcomputer.ai/docs Create a new computer instance with default image, browser access, SSH, and port publishing capabilities. ```bash computer create my-computer ``` -------------------------------- ### Open computer via VNC Source: https://agentcomputer.ai/docs Access your computer's graphical interface using VNC. ```bash computer open my-computer --vnc ``` -------------------------------- ### Sign in to Agent Computer Source: https://agentcomputer.ai/docs Run `computer login` to initiate the browser-based sign-in flow and store a local API key for subsequent CLI requests. ```bash computer login ``` -------------------------------- ### Connect to a computer via SSH Source: https://agentcomputer.ai/docs Establish an SSH connection to your computer for a terminal-first workflow. ```bash computer ssh my-computer ``` -------------------------------- ### Publish a computer port Source: https://agentcomputer.ai/docs Make a port served by your computer accessible from the public web. By default, published ports are public. ```bash computer ports publish my-computer 3000 ``` -------------------------------- ### Publish a private computer port Source: https://agentcomputer.ai/docs Publish a computer port that is gated behind an access session, making it private by default. ```bash computer ports publish my-computer 3000 --private ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.