Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问clear审计提醒

claude-tailClaude tail 搜索

Agent Skill

claude-tail 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

336

周安装

14

GitHub Stars

38

下载量

112
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/lanej/dotfiles --skill claude-tail

简介

Claude Tail 是 Claude Code 会话日志的专业分析工具。

  • 支持实时跟踪、事件过滤与多模式展示(紧凑/详细/统计)。
  • 可定位错误事件与工具调用记录,辅助调试复杂交互流程。
  • 日志文件路径需用户明确指定,避免默认读取敏感会话内容。
  • claude-tail 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Claude Tail Skill

You are a Claude Code session log analysis specialist using the claude-tail tool. This skill provides comprehensive guidance for viewing, filtering, and analyzing Claude Code session logs.

Core Concepts

claude-tail reads Claude Code session logs (JSONL format) and displays them with:

  • Syntax highlighting and colors
  • Real-time following (like tail -f)
  • Filtering by event type, tool, time range, or errors
  • Multiple display modes (compact, verbose, stats, tools-only)

Basic Usage

View a Session Log

# View a specific log file (follows by default)
claude-tail ~/.claude/sessions/2024-01-15-session.jsonl

# View without following (read once and exit)
claude-tail --no-follow ~/.claude/sessions/2024-01-15-session.jsonl

# Read from stdin
cat session.jsonl | claude-tail

Follow Logs in Real-Time

# Follow mode is enabled by default
claude-tail session.jsonl

# Explicitly enable follow mode
claude-tail -f session.jsonl

# Follow multiple files
claude-tail session1.jsonl session2.jsonl

Watch for New Logs

# Watch all JSONL files in current directory
claude-tail --pattern "*.jsonl"

# Watch all session logs
claude-tail --pattern "~/.claude/sessions/*.jsonl"

Display Modes

Compact Mode

# Minimal output, one-line per event
claude-tail --compact session.jsonl

Verbose Mode

# Detailed output with full event information
claude-tail --verbose session.jsonl

Statistics Mode

# Show statistics about the session
claude-tail --stats session.jsonl

Tools-Only Mode

# Show only tool usage events
claude-tail --tools-only session.jsonl

Filtering

Filter by Event Type

# Show only specific event types (comma-separated)
claude-tail --type tool_use,error session.jsonl

# Common event types: tool_use, text, error, system
claude-tail --type text session.jsonl

Filter by Tool Name

# Show only specific tools (comma-separated)
claude-tail --tool Read,Write session.jsonl

# Show only bash commands
claude-tail --tool Bash session.jsonl

# Show only file operations
claude-tail --tool Read,Write,Edit session.jsonl

Filter by Time Range

# Show events after a specific time (HH:MM:SS)
claude-tail --after 14:30:00 session.jsonl

# Show events before a specific time
claude-tail --before 15:45:00 session.jsonl

# Show events in a time window
claude-tail --after 14:30:00 --before 15:45:00 session.jsonl

Show Only Errors

# Display only error events
claude-tail --errors-only session.jsonl

Display Options

Terminal Width and Wrapping

# Set custom terminal width
claude-tail --width 120 session.jsonl

# Disable line wrapping
claude-tail --no-wrap session.jsonl

# Combine options
claude-tail --width 80 --no-wrap session.jsonl

Common Workflows

Debug a Session

# Show all errors in a session
claude-tail --errors-only --no-follow session.jsonl

# Show tool usage with errors
claude-tail --tools-only --errors-only session.jsonl

# Verbose output for debugging
claude-tail --verbose --errors-only session.jsonl

Monitor Tool Usage

# Watch what tools are being called
claude-tail --tools-only -f session.jsonl

# Monitor specific tools in real-time
claude-tail --tool Bash,Read,Write -f session.jsonl

# Get tool usage statistics
claude-tail --stats --tools-only session.jsonl

Analyze Session Activity

# Review activity in a time window
claude-tail --after 10:00:00 --before 11:00:00 --no-follow session.jsonl

# See compact summary of a session
claude-tail --compact --no-follow session.jsonl

# Get detailed statistics
claude-tail --stats session.jsonl

Watch Live Sessions

# Follow the most recent session
claude-tail -f ~/.claude/sessions/$(ls -t ~/.claude/sessions/*.jsonl | head -1)

# Watch all new session files
claude-tail --pattern "~/.claude/sessions/*.jsonl"

# Monitor errors in real-time
claude-tail --errors-only -f current-session.jsonl

Advanced Usage

Combining Filters

# Show Read/Write operations with errors after 2pm
claude-tail --tool Read,Write \
           --errors-only \
           --after 14:00:00 \
           session.jsonl

# Monitor specific tools in compact mode
claude-tail --tool Bash,Grep,Read \
           --compact \
           -f session.jsonl

Session Log Analysis

# Quick session overview
claude-tail --stats --no-follow session.jsonl

# Detailed tool usage analysis
claude-tail --tools-only --verbose --no-follow session.jsonl

# Find all errors in a session
claude-tail --errors-only --verbose --no-follow session.jsonl

Debugging Workflows

# Debug a specific time period with full detail
claude-tail --verbose \
           --after 14:30:00 \
           --before 14:35:00 \
           --no-follow \
           session.jsonl

# Monitor for errors during development
claude-tail --errors-only --tools-only -f session.jsonl

# Watch file operations in real-time
claude-tail --tool Read,Write,Edit,Glob,Grep \
           --compact \
           -f session.jsonl

Session Log Location

Claude Code session logs are typically stored in:

~/.claude/sessions/*.jsonl

Find Recent Sessions

# List sessions by most recent
ls -lt ~/.claude/sessions/*.jsonl | head -5

# View the most recent session
claude-tail ~/.claude/sessions/$(ls -t ~/.claude/sessions/*.jsonl | head -1)

Common Event Types

  • tool_use - Claude called a tool (Read, Write, Bash, etc.)
  • text - Claude sent text output
  • error - An error occurred
  • system - System messages and events

Common Tools to Filter

  • Read - File reading operations
  • Write - File writing operations
  • Edit - File editing operations
  • Bash - Shell command execution
  • Grep - Code search operations
  • Glob - File pattern matching
  • Task - Agent task launches
  • WebFetch - Web content fetching
  • WebSearch - Web search queries

Best Practices

  1. Use follow mode for active sessions: Monitor live sessions with -f
  2. Filter aggressively: Use --tool, --type, and time filters to focus on relevant events
  3. Start with stats mode: Get an overview with --stats before diving into details
  4. Use compact mode for overviews: Quickly scan many events with --compact
  5. Use verbose mode for debugging: Get full detail when investigating issues
  6. Watch for errors: Regular --errors-only checks help catch issues early
  7. Analyze tool patterns: Use --tools-only to understand workflow patterns

Tips

  • Follow mode is enabled by default (use --no-follow to disable)
  • Combine multiple filters to narrow down events precisely
  • Use time filters to focus on specific parts of a session
  • Stats mode is great for session retrospectives
  • Errors-only mode helps quickly identify problems
  • Tools-only mode shows the "what" without the "why"

Quick Reference

# View and follow
claude-tail session.jsonl

# View once
claude-tail --no-follow session.jsonl

# Show stats
claude-tail --stats session.jsonl

# Only errors
claude-tail --errors-only session.jsonl

# Only tools
claude-tail --tools-only session.jsonl

# Filter by tool
claude-tail --tool Read,Write session.jsonl

# Filter by time
claude-tail --after 14:00:00 --before 15:00:00 session.jsonl

# Compact output
claude-tail --compact session.jsonl

# Verbose output
claude-tail --verbose session.jsonl

# Watch pattern
claude-tail --pattern "*.jsonl"

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

29.37%
按下载量换算33

OpenCode

24.02%
按下载量换算27

Codex

16.83%
按下载量换算19

Antigravity

11.89%
按下载量换算13

Gemini CLI

7.07%
按下载量换算8

windsurf

3.65%
按下载量换算4

安全审计

Gen Agent Trust Hub

可疑

Socket

通过

Snyk

通过

权限和风险

执行命令

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills