CLICommands

biome

snug biome <COMMAND>

Population dynamics simulation (biomes).

Subcommands

CommandWhat it does
createCreate a new biome
listList biomes
getGet a biome by ID
deleteDelete a biome
populationsManage populations within a biome
interactionsManage interaction terms within a biome
stateRead the integrated current (or as-of) state
harvestReport a harvest/spawn pressure event
interveneApply a restock, cull, or parameter-change intervention
projectForward projection with warnings and trajectory
checkpointAdvance the biome checkpoint, folding state forward and firing alerts
subscribeProvision 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.eldoria

Next

On this page