Tilt Up
Principles (Always Active)
These apply whenever working with Tiltfiles, Tilt errors, or dev environment bootstrap:
Fix the Tiltfile, Not the Symptoms
- Fix the source config directly - Tiltfile, Dockerfile, k8s manifest, or helm values
- Never add shell workarounds - no wrapper scripts, no
|| true, no try/except pass
- Never hard-code ports, paths, hostnames, image tags, or container names that should be dynamic
- Never add fallbacks that mask the real error - if a resource fails, the failure must be visible
- Never add sleep/retry loops for flaky dependencies - fix dependency ordering via
resource_deps() or k8s_resource(deps=)
- Never add polling for readiness that Tilt already handles - use
k8s_resource(readiness_probe=) or probe configs
Express Dependencies Declaratively
- Port conflicts: fix the port allocation source, don't pick a different port
- Resource ordering: use
resource_deps(), not sequential startup scripts
- Env vars: use
silo.toml or gen-env output, not inline defaults
- Image availability: use
image_deps or deps, not sleep-until-ready
Tilt Live-Reloads
After editing a Tiltfile, Tilt picks up changes automatically. Never restart tilt up for:
- Tiltfile edits
- Source code changes
- Kubernetes manifest updates
Restart only for: Tilt version upgrades, port/host config changes, crashes, cluster context switches.
Workflow (When Explicitly Starting Tilt)
Step 1: Assess Current State
Check if tilt is already running:
PROJECT=$(basename "$(git rev-parse --show-toplevel 2>/dev/null)" || basename "$PWD")
zmx list --short 2>/dev/null | grep -q "^${PROJECT}-tilt$"
If running, check health via tilt get uiresources -o json and skip to Step 3.
Check for required env files (.localnet.env, .env.local, silo.toml):
- If
silo.toml exists, use silo up path
- If gen-env script exists, run it first
- If neither, check project README for bootstrap instructions
Check for k3d cluster or Docker prerequisites.
Step 2: Start Tilt in zmx
Follow the zmx skill patterns:
PROJECT=$(basename "$(git rev-parse --show-toplevel 2>/dev/null)" || basename "$PWD")
SESSION="${PROJECT}-tilt"
if zmx list --short 2>/dev/null | grep -q "^${SESSION}$"; then
echo "Tilt session already exists: $SESSION"
else
zmx run "$SESSION" 'tilt up'
echo "Started tilt in zmx session: $SESSION"
fi
For silo projects: silo up instead of tilt up.
Step 3: Monitor Bootstrap
Poll for convergence:
- Wait 10s for initial resource registration
- Poll every 15s, up to 20 iterations:
tilt get uiresources -o json | jq -r '.items[] | select(.status.runtimeStatus == "error" or .status.updateStatus == "error" or .status.updateStatus == "pending") | "\(.metadata.name): runtime=\(.status.runtimeStatus) update=\(.status.updateStatus)"'
- Track resources:
pending -> in_progress -> ok
- Success: all resources reach
runtime=ok, update=ok (or not_applicable)
- If resources stabilize in
error, proceed to Step 4
Step 4: Diagnose and Fix Errors
For each resource in error state:
- Read logs:
tilt logs <resource> --since 2m
- Read the Tiltfile and relevant k8s manifests
- Identify root cause in the config (not the running process)
- Apply fix following the Principles above
- Tilt live-reloads - re-poll status to verify
After 3 fix iterations on the same resource without progress:
- Report the error with full logs
- Identify whether it's a Tiltfile bug, upstream dependency, or infrastructure problem
- Do not silently skip or disable the resource
Step 5: Report
## Tilt Status: <healthy|degraded|errored>
**Resources**: X/Y ok
**Session**: zmx $SESSION
### Errors (if any)
- <resource>: <root cause> — <what was fixed or what remains>
Converted and distributed by TomeVault — claim your Tome and manage your conversions.
1---2name: tiltup3description: Use when starting tilt, debugging Tiltfile errors, or bootstrapping a dev environment. Starts Tilt in zmx, monitors bootstrap to healthy state, fixes Tiltfile bugs without hard-coding or fallbacks.4---56# Tilt Up78## Principles (Always Active)910These apply whenever working with Tiltfiles, Tilt errors, or dev environment bootstrap:1112### Fix the Tiltfile, Not the Symptoms1314- **Fix the source config directly** - Tiltfile, Dockerfile, k8s manifest, or helm values15- **Never add shell workarounds** - no wrapper scripts, no `|| true`, no `try/except pass`16- **Never hard-code** ports, paths, hostnames, image tags, or container names that should be dynamic17- **Never add fallbacks** that mask the real error - if a resource fails, the failure must be visible18- **Never add sleep/retry loops** for flaky dependencies - fix dependency ordering via `resource_deps()` or `k8s_resource(deps=)`19- **Never add polling** for readiness that Tilt already handles - use `k8s_resource(readiness_probe=)` or probe configs2021### Express Dependencies Declaratively2223- Port conflicts: fix the port allocation source, don't pick a different port24- Resource ordering: use `resource_deps()`, not sequential startup scripts25- Env vars: use `silo.toml` or gen-env output, not inline defaults26- Image availability: use `image_deps` or `deps`, not sleep-until-ready2728### Tilt Live-Reloads2930After editing a Tiltfile, Tilt picks up changes automatically. **Never restart `tilt up`** for:31- Tiltfile edits32- Source code changes33- Kubernetes manifest updates3435Restart only for: Tilt version upgrades, port/host config changes, crashes, cluster context switches.3637## Workflow (When Explicitly Starting Tilt)3839### Step 1: Assess Current State40411. Check if tilt is already running:42 ```bash43 PROJECT=$(basename "$(git rev-parse --show-toplevel 2>/dev/null)" || basename "$PWD")44 zmx list --short 2>/dev/null | grep -q "^${PROJECT}-tilt$"45 ```46 If running, check health via `tilt get uiresources -o json` and skip to Step 3.47482. Check for required env files (`.localnet.env`, `.env.local`, `silo.toml`):49 - If `silo.toml` exists, use `silo up` path50 - If gen-env script exists, run it first51 - If neither, check project README for bootstrap instructions52533. Check for k3d cluster or Docker prerequisites.5455### Step 2: Start Tilt in zmx5657Follow the `zmx` skill patterns:58```bash59PROJECT=$(basename "$(git rev-parse --show-toplevel 2>/dev/null)" || basename "$PWD")60SESSION="${PROJECT}-tilt"6162if zmx list --short 2>/dev/null | grep -q "^${SESSION}$"; then63 echo "Tilt session already exists: $SESSION"64else65 zmx run "$SESSION" 'tilt up'66 echo "Started tilt in zmx session: $SESSION"67fi68```6970For silo projects: `silo up` instead of `tilt up`.7172### Step 3: Monitor Bootstrap7374Poll for convergence:751. Wait 10s for initial resource registration762. Poll every 15s, up to 20 iterations:77 ```bash78 tilt get uiresources -o json | jq -r '.items[] | select(.status.runtimeStatus == "error" or .status.updateStatus == "error" or .status.updateStatus == "pending") | "\(.metadata.name): runtime=\(.status.runtimeStatus) update=\(.status.updateStatus)"'79 ```803. Track resources: `pending` -> `in_progress` -> `ok`814. Success: all resources reach `runtime=ok, update=ok` (or `not_applicable`)825. If resources stabilize in `error`, proceed to Step 48384### Step 4: Diagnose and Fix Errors8586For each resource in error state:871. Read logs: `tilt logs <resource> --since 2m`882. Read the Tiltfile and relevant k8s manifests893. Identify root cause in the config (not the running process)904. Apply fix following the Principles above915. Tilt live-reloads - re-poll status to verify9293After 3 fix iterations on the same resource without progress:94- Report the error with full logs95- Identify whether it's a Tiltfile bug, upstream dependency, or infrastructure problem96- Do not silently skip or disable the resource9798### Step 5: Report99100```101## Tilt Status: <healthy|degraded|errored>102103**Resources**: X/Y ok104**Session**: zmx $SESSION105106### Errors (if any)107- <resource>: <root cause> — <what was fixed or what remains>108```109110---111> Converted and distributed by [TomeVault](https://tomevault.io/claim/0xbigboss) — claim your Tome and manage your conversions.112<!-- tomevault:4.0:skill_md:2026-04-11 -->