Built-in Blocks
Stackie ships with a catalog of ready-to-use blocks for common services. These blocks are compiled into the binary — no network fetch is needed to use them.
Listing Built-in Blocks
# List all installed blocks
stackie blocks
# Search for a specific block
stackie search postgres
Using a Built-in Block
Reference any built-in block by name in your stack file:
my-project:
blocks:
stackie.postgres: {}
stackie.redis: {}
All built-in block names live in the stackie.* namespace (e.g.
stackie.postgres, stackie.redis). You can omit the stackie. prefix
in stack files — Stackie resolves it automatically.