npx skills add https://github.com/0xbigboss/claude-code --skill tilt在排查问题或验证部署前,先检查资源健康状况:
# 查找错误和待处理资源(主要健康检查)
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)"'
# 快速状态概览
tilt get uiresources -o json | jq '[.items[].status.updateStatus] | group_by(.) | map({status: .[0], count: length})'
当 Tilt 运行在非默认端口时,需添加 --port 参数:
tilt get uiresources --port 37035
tilt logs <resource> --port 37035
# 所有资源及其状态
tilt get uiresources -o json | jq '.items[] | {name: .metadata.name, runtime: .status.runtimeStatus, update: .status.updateStatus}'
# 单个资源详情
tilt get uiresource/<name> -o json
# 等待资源就绪
tilt wait --for=condition=Ready uiresource/<name> --timeout=120s
状态值说明:
Before investigating issues or verifying deployments, check resource health:
# Find errors and pending resources (primary health check)
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)"'
# Quick status overview
tilt get uiresources -o json | jq '[.items[].status.updateStatus] | group_by(.) | map({status: .[0], count: length})'
When Tilt runs on a non-default port, add --port:
tilt get uiresources --port 37035
tilt logs <resource> --port 37035
# All resources with status
tilt get uiresources -o json | jq '.items[] | {name: .metadata.name, runtime: .status.runtimeStatus, update: .status.updateStatus}'
# Single resource detail
tilt get uiresource/<name> -o json
# Wait for ready
tilt wait --for=condition=Ready uiresource/<name> --timeout=120s
广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
ok、error、pending、none、not_applicableok、error、pending、in_progress、none、not_applicabletilt logs <resource>
tilt logs <resource> --since 5m
tilt logs <resource> --tail 100
tilt logs --json # JSON Lines 输出
tilt trigger <resource> # 强制更新
tilt up # 启动
tilt down # 停止并清理
tmux 会话规则(强制要求 — 完整模式请参见 tmux 技能):
tmux new-session 前检查 tmux has-session — 切勿创建重复会话send-keys — 切勿将内联命令传递给 new-sessionSESSION=$(basename $(git rev-parse --show-toplevel 2>/dev/null) || basename $PWD)
if ! tmux has-session -t "$SESSION" 2>/dev/null; then
tmux new-session -d -s "$SESSION" -n tilt
tmux send-keys -t "$SESSION:tilt" 'tilt up' Enter
elif ! tmux list-windows -t "$SESSION" -F '#{window_name}' | grep -q "^tilt$"; then
tmux new-window -t "$SESSION" -n tilt
tmux send-keys -t "$SESSION:tilt" 'tilt up' Enter
else
echo "Tilt window already exists in session: $SESSION"
fi
Tilt 会自动热重载。切勿建议重启 tilt up 来处理以下情况:
仅在以下情况下重启:Tilt 版本升级、端口/主机变更、崩溃、集群上下文切换。
每周安装次数
95
代码仓库
GitHub 星标数
36
首次出现
2026年1月20日
安全审计
已安装于
claude-code77
codex75
gemini-cli75
opencode73
cursor68
github-copilot67
Status values:
ok, error, pending, none, not_applicableok, error, pending, in_progress, none, not_applicabletilt logs <resource>
tilt logs <resource> --since 5m
tilt logs <resource> --tail 100
tilt logs --json # JSON Lines output
tilt trigger <resource> # Force update
tilt up # Start
tilt down # Stop and clean up
tmux session rules (mandatory — see tmux skill for full patterns):
MUST check tmux has-session before tmux new-session — never create duplicate sessions
MUST derive session name from git root — never hardcode
MUST add a window to an existing session — never create a parallel session
MUST use send-keys — never pass inline commands to new-session
SESSION=$(basename $(git rev-parse --show-toplevel 2>/dev/null) || basename $PWD)
if ! tmux has-session -t "$SESSION" 2>/dev/null; then tmux new-session -d -s "$SESSION" -n tilt tmux send-keys -t "$SESSION:tilt" 'tilt up' Enter elif ! tmux list-windows -t "$SESSION" -F '#{window_name}' | grep -q "^tilt$"; then tmux new-window -t "$SESSION" -n tilt tmux send-keys -t "$SESSION:tilt" 'tilt up' Enter else echo "Tilt window already exists in session: $SESSION" fi
Tilt live-reloads automatically. Never suggest restartingtilt up for:
Restart only for: Tilt version upgrades, port/host changes, crashes, cluster context switches.
Weekly Installs
95
Repository
GitHub Stars
36
First Seen
Jan 20, 2026
Security Audits
Installed on
claude-code77
codex75
gemini-cli75
opencode73
cursor68
github-copilot67
React Router 框架模式指南:全栈开发、文件路由、数据加载与渲染策略
1,200 周安装