tilt

tilt is a skill for Claude Code, Codex from hyperb1iss/hyperskills. It costs 93 tokens per session (2,410 once invoked), scanned A, original, MIT.

A development tool for Tilt, which manages the local process of watching code, building container images and deploying them to Kubernetes. Tilt uses a Tiltfile, written in a Python-like configuration language, to define these resources.

In plain words
What is it for?
Use it to write or debug Tiltfiles, add or restart resources, configure live updates and optimize image builds. It also covers starting, stopping and monitoring Tilt environments, including CI runs.
Why use it?
It reduces the manual work of rebuilding images, redeploying services and checking logs during Kubernetes development. It also helps keep local development and automated checks repeatable.

Skill for Claude CodeCodex

Part of the hyperskills plugin — 18 skills shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/hyperb1iss/hyperskills/tilt
Any agent
npx skills add hyperb1iss/hyperskills --skill tilt
Clone the repo
git clone --depth 1 https://github.com/hyperb1iss/hyperskills

Made for: Claude Code, Codex.

Or install hyperskills, the plugin that ships this one along with the rest of its 18 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for tilt

README.md
[![agentmods](https://agentmods.dev/badge/skills/hyperb1iss/hyperskills/tilt.svg)](https://agentmods.dev/skills/hyperb1iss/hyperskills/tilt)
Your own site
<a href="https://agentmods.dev/skills/hyperb1iss/hyperskills/tilt"><img src="https://agentmods.dev/badge/skills/hyperb1iss/hyperskills/tilt.svg" alt="Measured on agentmods" height="20"></a>
Per session 93 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,410 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00093 $0.02410
Opus 5 $0.00046 $0.01205
Sonnet 5 $0.00019 $0.00482
Haiku 4.5 $0.00009 $0.00241

Measured today against content hash 73ccbf906c36, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

tilt scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured today.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/tilt/SKILL.md · 192 lines

How it starts

The opening of the file, as written. The whole thing — 192 lines — stays where its author put it; the contents beside it link to each section on GitHub.

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

Check tilt version, the selected Kubernetes context, and any existing Tilt instance before operations. Explicit requests to start, restart, or stop the intended environment authorize that operation. A read-only diagnosis does not authorize teardown. Editing a Tiltfile can immediately reconfigure a running session, so inspect its watchers and affected resources first.

Lifecycle

Task Command
Start dev environment tilt up [-- <Tiltfile args>]
Start with terminal log streaming tilt up --stream
Start specific resources only tilt up frontend backend
Run in CI/batch mode (exits on success/failure) tilt ci --timeout 30m
Stop and delete deployed resources tilt down
Change runtime Tiltfile args tilt 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

Task Command
Stream all logs tilt logs -f
Stream logs for one resource tilt logs -f <resource>
Show only errors tilt logs --level error
Show build logs only tilt logs --source build
Show runtime logs only tilt logs --source runtime
Logs since 5 minutes ago tilt logs --since 5m
Last 100 lines tilt logs --tail 100
JSON output (for parsing) tilt logs --json

Read the full file on GitHub · 192 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. today Changed · +6 lines · -2 tokens per session 73ccbf906c36
  2. 5d ago First seen · 186 lines · 95 tokens per session scan A 55153badfcd5

Subscribe to this mod's changes

tilt is a skill published in the GitHub repository hyperb1iss/hyperskills (30 stars, last pushed today), licensed MIT. It adds 93 tokens to every session and 2,410 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

build-mcpb

This skill should be used when the user wants to "package an MCP server", "bundle an MCP", "make an MCPB", "ship a local MCP server", "distribute a local MCP", discusses ".mcpb files", mentions bundling a Node or Python runtime with their MCP server, or needs an MCP server that interacts with the local filesystem…

anthropics/claude-plugins-official · 98 tokens

gke-app-onboarding

Manages GKE application onboarding, covering containerization, deployment manifests, and migration. Use when onboarding or deploying an application to GKE for the first time, or containerizing an app for GKE. Don't use for general GKE cluster administration or upgrades (use gke-basics or gke-upgrades instead).

google/skills · 70 tokens

wrangler

Cloudflare Workers CLI for deploying, developing, and managing Workers, KV, R2, D1, Vectorize, Hyperdrive, Workers AI, Containers, Queues, Workflows, Pipelines, and Secrets Store. Load before running wrangler commands to ensure correct syntax and best practices. Biases towards retrieval from Cloudflare docs over…

cloudflare/skills · 75 tokens

managing-astro-local-env

Manage local Airflow environment with Astro CLI (Docker and standalone modes). Use when the user wants to start, stop, or restart Airflow, view logs, query the Airflow API, troubleshoot, or fix environment issues. For project setup, see setting-up-astro-project.

astronomer/agents · 63 tokens

kubernetes-patterns

Pods, deployments, services, ingress, RBAC, autoscaling, and production cluster best practices.

cosmicstack-labs/mercury-agent-skills · 24 tokens

aws-cloudformation-ecs

Provides AWS CloudFormation patterns for ECS clusters, task definitions, services, container definitions, auto scaling, blue/green deployments, CodeDeploy integration, ALB integration, service discovery, monitoring, logging, template structure, parameters, outputs, and cross-stack references. Use when creating ECS…

giuseppe-trisciuoglio/developer-kit · 101 tokens