Token导航 LogoToken导航TokenDH.com
前端设计执行命令github未标认证来源可访问许可证需确认审计提醒

tilttilt 搜索

Agent Skill

tilt 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

535

周安装

23

GitHub Stars

6

下载量

188
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:tilt(tilt 搜索)
来源仓库:https://github.com/hyperb1iss/hyperskills
仓库路径:skills/tilt
安装命令:
npx skills add https://github.com/hyperb1iss/hyperskills --skill tilt
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/hyperb1iss/hyperskills --skill tilt

简介

tilt 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中围绕仓库状态和代码变更进行整理。
  • 通过 npx skills add 命令从 hyperb1iss/hyperskills 仓库安装。
  • 安装前需确认权限范围和维护状态,避免触发联网或文件操作。
  • 建议参考原始 README 了解具体功能和使用边界。

SKILL.md

Tilt — Kubernetes Dev Toolkit

Tilt automates the local Kubernetes development loop: watch files, build images, deploy to cluster. Configuration lives in a Tiltfile (Starlark, a Python dialect). A resource bundles an image build + k8s deploy (or a local command) into a single manageable unit.

CLI Operations

The commands an agent uses to interact with a running Tilt instance.

Lifecycle

TaskCommand
Start dev environmenttilt up [-- <Tiltfile args>]
Start with terminal log streamingtilt up --stream
Start specific resources onlytilt up frontend backend
Run in CI/batch mode (exits on success/failure)tilt ci --timeout 30m
Stop and delete deployed resourcestilt down
Change runtime Tiltfile argstilt args -- --flag value
Change runtime args (clear all)tilt args --clear

On Ctrl+C from tilt up: K8s and Docker Compose resources keep running. Local serve_cmd processes stop. Use tilt down to clean up.

Viewing Logs

TaskCommand
Stream all logstilt logs -f
Stream logs for one resourcetilt logs -f <resource>
Show only errorstilt logs --level error
Show build logs onlytilt logs --source build
Show runtime logs onlytilt logs --source runtime
Logs since 5 minutes agotilt logs --since 5m
Last 100 linestilt logs --tail 100
JSON output (for parsing)tilt logs --json

Resource Management

TaskCommand
List all resourcestilt get uiresources
Resource status as JSONtilt get uiresources -o json
Describe a resource in detailtilt describe uiresource <name>
Force rebuild a resourcetilt trigger <resource>
Enable a disabled resourcetilt enable <resource>
Disable a resourcetilt disable <resource>
Wait for resource readinesstilt wait --for=condition=Ready uiresource/<name>

Inspection & Debugging

TaskCommand
Diagnostics (versions, cluster)tilt doctor
Inspect file watchestilt get filewatches
Describe a specific file watchtilt describe filewatch <name>
Full engine state dump (JSON)tilt dump engine
Full UI state dumptilt dump webview
Test Docker build as Tilt wouldtilt docker -- build <args>
List API resource typestilt api-resources

The Tilt API server runs on localhost:10350 by default. All tilt get/describe/trigger commands talk to it.

Build Strategy Selector

SituationFunctionKey detail
Standard Dockerfiledocker_build(ref, context)Watches context dir, auto-injects into k8s
Custom toolchain (Bazel, ko, Buildpacks)custom_build(ref, cmd, deps)Must tag with $EXPECTED_REF env var
Non-Docker builder (Buildah, kaniko)custom_build(..., skips_local_docker=True)Builder handles push independently
Docker Compose servicesdocker_compose(configPaths)Manages compose lifecycle
Helm chartsk8s_yaml(helm('./chart'))Renders locally, deploys to cluster
Kustomize overlaysk8s_yaml(kustomize('./overlay'))Renders locally, deploys to cluster

Live Update Decision Tree

Live update replaces full image rebuilds with in-place container file syncs — seconds instead of minutes.

StepPurposeOrdering
fall_back_on(files)Force full rebuild when these files changeMust come first
sync(local, remote)Copy changed files into running containerAfter fall_back_on
run(cmd, trigger=files)Execute command in container (e.g., install deps)After sync
restart_container()Restart the container processMust come last
docker_build('myapp', '.', live_update=[
    fall_back_on(['requirements.txt']),
    sync('./src', '/app/src'),
    run('pip install -r requirements.txt', trigger=['requirements.txt']),
])

When live update breaks: Changes to files outside the docker_build context trigger a full rebuild. Changes outside any sync() path also trigger a full rebuild. First tilt up always does a full build — live update requires a running container.

Resource Configuration

# Kubernetes resource with port forwarding and dependencies
k8s_resource('frontend',
    port_forwards=['3000:3000'],
    resource_deps=['api', 'database'],
    labels=['web'],
    trigger_mode=TRIGGER_MODE_MANUAL,
)

# Local resource (build tool, test runner, code generator)
local_resource('codegen',
    cmd='make generate',
    deps=['./proto'],
    labels=['tools'],
)

# Local server (runs continuously)
local_resource('storybook',
    serve_cmd='npm run storybook',
    deps=['./src/components'],
    allow_parallel=True,
    readiness_probe=probe(http_get=http_get_action(port=6006)),
)

Parallelism: Local resources run serially by default. Set allow_parallel=True for independent resources. Image builds default to 3 concurrent — adjust with update_settings(max_parallel_updates=N).

Dependencies: resource_deps gates on first-ever readiness only — once a dependency is ready once, dependents unlock permanently for that session.

Debugging Flow

Service crashing?     → tilt logs -f <resource> --source runtime
Build failing?        → tilt logs -f <resource> --source build
                        tilt docker -- build <args>  (reproduces Tilt's exact build)
Wrong files rebuild?  → tilt get filewatches
                        tilt describe filewatch <name>
                        Check .tiltignore, watch_settings(ignore=), ignore= param
Force a rebuild?      → tilt trigger <resource>
Resource stuck?       → tilt describe uiresource <name>
                        Check resource_deps chain
                        For CRDs: pod_readiness='ignore'
General diagnostics?  → tilt doctor
Full state dump?      → tilt dump engine | jq .

Top 10 Pitfalls

PitfallFix
local() calls don't track file depsWrap with read_file() or add watch_file()
Live update paths outside docker_build contextEnsure sync local paths fall within context dir
Local resources block each otherSet allow_parallel=True on independent resources
resource_deps doesn't re-gate on updatesIt only checks first-ever readiness, not current version
Starlark has no while/try-except/class/recursionUse for loops, fail() for errors, dicts for state
.tiltignore doesn't affect Docker build contextUse .dockerignore to exclude from both rebuild triggers AND context
$EXPECTED_REF not used in custom_buildBuild script MUST tag the image with this env var
run() trigger files not in a sync() stepTrigger paths must also be covered by a sync step
First tilt up always does full buildLive update cannot work until a container is running
CRD pods stuck in pendingSet pod_readiness='ignore' on CRD resources

Additional Resources

Reference Files

For detailed API signatures and advanced patterns, consult:

  • references/api-reference.md — Complete Tiltfile API catalog organized by category, Starlark language notes, ignore mechanism comparison
  • references/patterns.md — Multi-service architectures, environment config, CI integration, performance optimization, programmatic Tilt interaction, extension ecosystem

Anti-Patterns

Anti-PatternFix
Starting or stopping Tilt without consentAsk before changing long-running dev environments
Treating tilt up as a build commandUse tilt ci for batch verification
Live update without fallbacksPut build/dependency files in fall_back_on
Debugging from Kubernetes YAML onlyInspect uiresources, file watches, and logs
Using local() for watched shell workUse local_resource with explicit deps

What This Skill is NOT

  • Not a Kubernetes primer.
  • Not permission to run, restart, or tear down a dev environment.
  • Not a substitute for reading tilt doctor and resource logs.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.96%
按下载量换算71

Claude

29.96%
按下载量换算56

Cursor

19.89%
按下载量换算37

Gemini CLI

9.18%
按下载量换算17

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/hyperb1iss/hyperskills --skill tilt 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills