Welcome to pragma-os, the operating system for AI infrastructure. In this guide, you’ll install your first cloud resource - a GCP storage bucket.
New to pragma-os? See How It Works to understand the model before diving in.
The web store is coming soon. For now, you define resources in YAML and install them via the CLI.
Prerequisites
Install the CLI
Or install globally:uv tool install pragmatiks-cli
pipx install pragmatiks-cli
pip install pragmatiks-cli
Authenticate
This opens your browser. Sign in, and you’re connected.
Install your first resource
Create a resource definition called bucket.yaml:
provider: gcp
resource: storage
name: my-first-bucket
config:
location: EU
Now install it:
pragma resources apply bucket.yaml
That’s it - your infrastructure is ready.
See it in action
Check the status of your installed resources:
You just installed your first resource.
Next steps