← スキル一覧に戻る

tilt-logs
by 0xBigBoss
Enhanced tilt logs CLI with --since, --tail, and --json flags
⭐ 1🍴 0📅 2026年1月21日
SKILL.md
name: tilt-logs description: Query logs from Tilt local_resource processes with time-based filtering. Use when debugging Tilt services, viewing recent logs, streaming logs in follow mode, or filtering logs by resource name. Triggers on "tilt logs", "check tilt output", "what's happening in [resource]", "debug tilt", or any log inspection for Tilt-managed processes.
tilt-logs
Enhanced log viewing for Tilt with --since, --tail, and -f filtering that native tilt logs lacks.
Quick Reference
# View logs from specific resource
tilt-logs <resource>
# Filter by time (5m, 1h, 30s, 1d)
tilt-logs <resource> --since 5m
# Last N lines
tilt-logs --tail 100
# Stream logs (follow mode)
tilt-logs -f
tilt-logs <resource> -f
# JSON output for parsing
tilt-logs --json | jq .
# Custom Tilt instance
tilt-logs --host 192.168.1.100 --port 10351
Environment Variables
TILT_HOST- Tilt API host (default: localhost)TILT_PORT- Tilt API port (default: 10350)
Common Patterns
Debug recent failures:
tilt-logs <resource> --since 5m
Check startup logs:
tilt-logs <resource> --tail 50
Monitor live output:
tilt-logs <resource> -f
Parse structured output:
tilt-logs --json --since 1h | jq 'select(.level == "error")'
Options
| Flag | Short | Description |
|---|---|---|
--since <dur> | -s | Show logs since duration (5m, 1h, 30s) |
--tail <num> | -n | Show last N log lines |
--follow | -f | Stream new logs |
--json | Output as JSON lines | |
--no-color | Disable colored output | |
--host <host> | Tilt host | |
--port <port> | Tilt port | |
--help | -h | Show help |
スコア
総合スコア
60/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
✓LICENSE
ライセンスが設定されている
+10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です