CLICommands
biome
snug biome <COMMAND>Population dynamics simulation (biomes).
Subcommands
| Command | What it does |
|---|---|
create | Create a new biome |
list | List biomes |
get | Get a biome by ID |
delete | Delete a biome |
populations | Manage populations within a biome |
interactions | Manage interaction terms within a biome |
state | Read the integrated current (or as-of) state |
harvest | Report a harvest/spawn pressure event |
intervene | Apply a restock, cull, or parameter-change intervention |
project | Forward projection with warnings and trajectory |
checkpoint | Advance the biome checkpoint, folding state forward and firing alerts |
subscribe | Provision a threshold-alert subscription |
Run snug biome <command> --help for that command's own options.
The global options apply everywhere.
Examples
snug biome create --name "Eldoria North" --use-virtual-time --world-id world_eldoria
snug biome list --page-size 10
snug biome get --biome-id <uuid>
snug biome delete --biome-id <uuid>
snug biome populations add --biome-id <uuid> --slug pop_deer --name "Red Deer" --carrying-capacity 5000 --birth-rate 0.8 --death-rate 0.2 --initial-size 4200
snug biome interactions add --biome-id <uuid> --type predator_prey --source pop_wolf --target pop_deer --coefficients '{"predation_rate":0.0006}'
snug biome state --biome-id <uuid> --at-virtual 17402 --region northreach
snug biome harvest --biome-id <uuid> --population pop_deer --delta -12 --kind player_hunt --at-virtual 17402
snug biome intervene --biome-id <uuid> --type restock --population pop_deer --amount 500 --effective-from-virtual 17500
snug biome project --biome-id <uuid> --horizon-virtual-hours 288
snug biome checkpoint --biome-id <uuid> --at-virtual 17500
snug biome populations list --biome-id <uuid>
snug biome populations update --biome-id <uuid> --population-id pop_deer --carrying-capacity 6000
snug biome interactions list --biome-id <uuid>
snug biome subscribe --biome-id <uuid> --include-websocket --channel biome.alerts.eldoriaNext
- biome guide - what the service does and when to reach for it.
- API reference - every endpoint these commands call.
- CLI reference - global options, output modes, and exit codes.