### Start Shellular CLI (Foreground) Source: https://shellular.dev/docs Run the CLI directly with npx for immediate use. This starts Shellular in the foreground and displays a QR code for pairing. ```bash npx shellular ``` -------------------------------- ### Start Shellular CLI (Background) Source: https://shellular.dev/docs Start the Shellular host in daemon mode to keep it running after closing the terminal. Clients are not approved interactively in this mode. ```bash npx shellular start ``` -------------------------------- ### Approve Unknown Clients Source: https://shellular.dev/docs Manage how unknown clients are handled. 'requires-approval' is the default, prompting for approval. 'always-allow' accepts them automatically, and 'always-reject' denies them. ```bash npx shellular --unknown-clients always-allow ``` ```bash npx shellular --unknown-clients always-reject ``` -------------------------------- ### Stop Shellular CLI (Background) Source: https://shellular.dev/docs Stop the Shellular host when it is no longer needed. Only one instance of Shellular can run at a time per machine. ```bash npx shellular stop ``` -------------------------------- ### Delete Known Client Source: https://shellular.dev/docs Remove a specific client from the local approvals store using its client ID. ```bash shellular clients --delete ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.