drillbitlisted
Install: claude install-skill itlackey/akm
# drillbit
Command-line tool for provisioning and managing drillbit infrastructure clusters.
```
drillbit <command> [subcommand] [flags]
```
## provision
Create a new cluster node.
```sh
drillbit \
provision --cluster <name> --tier <tier> --region <region> --replicas <n>
```
Flags:
- `--cluster` — cluster identifier string (required)
- `--tier` — node tier, one of: `edge`, `core`, `control-plane` (required)
- `--region` — deployment region, one of: `az-west`, `az-east`, `eu-central` (required)
- `--replicas` — replica count, integer, default 1
Examples:
```sh
drillbit \
provision --cluster my-edge-1 --tier edge --region az-west --replicas 3
drillbit \
provision --cluster hub-east --tier core --region az-east --replicas 5
drillbit \
provision --cluster mgmt --tier control-plane --region eu-central --replicas 1
```
Note: `--tier` is not `--type` or `--size`. Region values use `az-west` / `az-east` / `eu-central` — not cloud-provider region names like `westus` or `us-west-2`.
## scale
Adjust the replica count for an existing cluster. The cluster name is positional (not a flag).
```sh
drillbit \
scale <cluster-name> --replicas <n>
```
Examples:
```sh
drillbit \
scale my-core --replicas 8
drillbit \
scale my-edge --replicas 2
```
## secret rotate
Rotate a cluster secret by path and signing algorithm.
```sh
drillbit secret \
rotate --path <secret-path> --algorithm <algorithm>
```
Algorithms: `sha256`, `ed25519`
Examples:
```sh
drillbit secret \
ro