Developer Experience

rosticli

Manage your apps and servers without leaving the terminal. Code deployment has never been easier.

terminal — install

Installation via script (Linux & macOS)

curl -fsSL https://rosti.cz/cli/install.sh | sh

You can also download and inspect the installation script before running it.

SHA-256 checksums: sha256sums-1.4.4.txt

What can you do with it?

Lightning-fast deployment

Forget manual file transfers via FTP/SFTP or complex pipeline configurations. Just one command and your code is built and deployed.

deploy
# Deploy Docker Compose stack from the current directory
$ rosticli stack push
# Or simply:
$ rosticli push
→ Packaging stack files...
→ Uploading to Roští.cz platform...
✓ Stack successfully deployed and started!
update & skills
# Update CLI to the latest version
$ rosticli update
✓ Checking for updates... CLI is up to date (v1.4.4).
# Install skills for local AI agents (Cline, Roo Code, etc.)
$ rosticli install-ai-skills
✓ AI agent skills successfully installed! Agents can now deploy with 'Deploy this code for me'.

Updates & AI Assistant

Keep your dev tools updated with a single command. Roští CLI also supports AI integration – with a single command, it installs skills directly into your local AI agents, so you can simply ask them to "Deploy this code for me" and the agent handles the rest.

Remote Execution & Shell

Run database migrations, manage environment variables (ENV), or open bash directly in the application container. Securely via an SSH tunnel.

shell
# Run a one-off command in the stack container (separated by --)
$ rosticli stack ssh -- php artisan migrate
# Open an interactive SSH shell
$ rosticli stack ssh
root@app-12345:/srv/app# _

For a complete list of commands and options, visit our documentation.

Open CLI Documentation