Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计异常

observability-analyze-session-logs可观察性分析会话日志

Agent Skill

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

总安装

196

周安装

8

GitHub Stars

1

下载量

63
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:observability-analyze-session-logs(可观察性分析会话日志)
来源仓库:https://github.com/dawiddutoit/custom-claude
仓库路径:skills/observability-analyze-session-logs
安装命令:
npx skills add https://github.com/dawiddutoit/custom-claude --skill observability-analyze-session-logs
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/dawiddutoit/custom-claude --skill observability-analyze-session-logs

简介

针对会话级日志进行分析与关键事件提取。

  • 适用于用户行为追踪与交互问题排查。
  • 使用 npx skills add 命令从 dawiddutoit/custom-claude 安装。
  • 需核实会话数据存储位置与访问控制机制。
  • observability-analyze-session-logs 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Analyze Session Logs

IMPORTANT DISTINCTION: This skill analyzes Claude Code session transcripts (what Claude saw and thought), NOT application/production logs (what code executed). For application logs, use the analyze-logs skill instead.

Quick Start

Most common usage (list all messages):

python3 .claude/tools/utils/view_session_context.py <session-file.jsonl> --list

View context at specific point (by message index):

python3 .claude/tools/utils/view_session_context.py <session-file.jsonl> --message-index 10

View context at specific message (by UUID from logs/errors):

python3 .claude/tools/utils/view_session_context.py <session-file.jsonl> --uuid "3c8467d6-..."

When to Use This Skill

Invoke this skill when users mention:

  • "why did Claude do X?"
  • "what was in the context window?"
  • "analyze session" / "check session logs"
  • "debug Claude behavior"
  • "token usage investigation"
  • "context window exhaustion"
  • "track agent delegation"
  • Any mention of .jsonl session files

Use cases:

  1. Debugging decisions - "Why did Claude choose approach X?" → View context at decision point
  2. Token analysis - "Where are tokens being used?" → Track cache creation vs cache read
  3. Agent tracking - "How are agents being delegated?" → Follow sidechain messages
  4. Context exhaustion - "Why did Claude lose context?" → See context window growth
  5. Performance issues - "Why is Claude slow?" → Identify cache thrashing

What This Skill Does

Analyzes Claude Code session transcripts to provide forensic visibility into Claude's internal state, decision-making process, context window content, and token usage patterns.

What it reveals:

  • Context window content at any point in conversation
  • Token usage breakdown (input, cache creation, cache read, output)
  • Message chains (parent-child relationships)
  • Agent delegation patterns (sidechain vs main thread)
  • Context window growth over time
  • Thinking blocks (Claude's internal reasoning)
  • Tool calls with parameters and results

Key Distinction:

  • This skill: Analyzes Claude's session transcripts → Shows "what Claude saw and thought"
  • analyze-logs skill: Analyzes OpenTelemetry application logs → Shows "what code executed"
  • Use both together for complete debugging

Session File Locations

User-level session files (Claude Code transcripts):

~/.claude/projects/-Users-{username}-{project-path}/{session-uuid}.jsonl

Find recent sessions:

ls -lt ~/.claude/projects/-Users-$(whoami)-*/*.jsonl | head -5

Instructions

Follow this workflow to analyze Claude Code session logs:

  1. Locate session file - Find.jsonl file in ~/.claude/projects/
  2. Choose analysis mode - List messages, view context at index, or view at UUID
  3. Execute analysis - Run view_session_context.py with appropriate flags
  4. Interpret results - Examine context window, token usage, and decision points
  5. Report findings - Explain Claude's behavior with evidence from context

Analysis Workflow

Step 1: Locate Session File

# Find most recent session file
ls -lt ~/.claude/projects/-Users-$(whoami)-*/*.jsonl | head -5

# Or search by UUID from error messages
grep -r "uuid" ~/.claude/projects/*/

Step 2: Choose Analysis Mode

Mode 1: List All Messages (Overview)

python3 .claude/tools/utils/view_session_context.py <session.jsonl> --list

Use when: Initial investigation, finding specific messages, tracking token usage

Mode 2: Context Window at Specific Point

python3 .claude/tools/utils/view_session_context.py <session.jsonl> --message-index 10

Use when: Debugging specific decision, understanding available context, seeing thinking blocks

Mode 3: View Specific Message by UUID

python3 .claude/tools/utils/view_session_context.py <session.jsonl> --uuid "3c8467d6-..."

Use when: Error logs reference specific message UUID

Mode 4: View Raw JSON

python3 .claude/tools/utils/view_session_context.py <session.jsonl> --message-index 10 --raw

Use when: Need exact JSON structure, programmatic analysis

Step 3: Execute Analysis

Run the appropriate command using the Bash tool:

python3 .claude/tools/utils/view_session_context.py ~/.claude/projects/-Users-*/abc123.jsonl --list

Step 4: Interpret Results

For List Output:

  1. Check message count - How long was the session?
  2. Identify MAIN vs SIDE - SIDE indicates agent delegation
  3. Spot token patterns:

- High Cache Create = New context being cached - High Cache Read = Good cache utilization - High Cache Create repeatedly = Cache thrashing

  1. Find interesting points - Large output tokens, sudden cache creation, sidechains
  2. Note message indices for deeper investigation

For Context Window Output:

  1. Review message chain - Understand conversation flow
  2. Read THINKING blocks - See Claude's internal reasoning
  3. Check TOOL calls - What tools were invoked and why
  4. Examine token breakdown (input, cache creation, cache read, output)
  5. Check total context size - Is it approaching 200k limit?

For Token Usage:

  • Cache creation spike = Context changed significantly
  • High cache read = Good utilization (cost effective)
  • Low cache read = Cache misses (investigate why)
  • Growing total context = Approaching 200k limit

Step 5: Report Findings

Always provide:

  1. Summary - Session length, main vs sidechain messages, total tokens
  2. Key insights - What explains the behavior?
  3. Specific examples - Quote relevant thinking blocks, tool calls
  4. Context evidence - Show what Claude had access to
  5. Suggested next steps - Additional investigation or fixes

Example response format:

Analyzed session abc123.jsonl (42 messages):

Key Findings:
1. Agent delegation at message 15 (→ unit-tester)
   - Context window at that point: 24,059 tokens
   - Thinking: "Need comprehensive test coverage for new service"
   - Agent had access to service implementation but not architectural context

2. Cache thrashing at messages 28-35
   - Cache creation spiked to 18k tokens each message
   - Context kept changing due to repeated file edits
   - Suggestion: Batch edits to reduce cache invalidation

3. Context exhaustion at message 40
   - Total context: 189,234 tokens (approaching 200k limit)
   - Claude started summarizing instead of quoting full code

To investigate further:
- View agent delegation context: --message-index 15
- Examine cache thrashing: --message-index 30

Best Practices

  1. Start with List Mode - Always get the overview first to identify interesting points
  2. Identify Patterns - Look for high cache creation (10k+ tokens), SIDE messages, large outputs
  3. Use Message Index for Deep Dives - From list output, drill down to specific points
  4. Follow Agent Delegation Chains - When you see [SIDE], trace back to parent in main thread
  5. Track Token Usage - Good: high cache read (80%+), Bad: repeated cache creation (thrashing)
  6. Compare Before/After - When debugging changes, analyze sessions before and after fix
  7. Correlate with Code Execution Logs - Session logs show "what Claude thought", OpenTelemetry logs show "what code executed"
  8. Save Important Sessions - Archive critical sessions to .claude/artifacts/ for future reference

Common Scenarios

"Why did Claude do X?"

  1. Find session file → List messages (--list)
  2. Identify message where decision was made
  3. View context at that point (--message-index N)
  4. Read THINKING blocks to see reasoning
  5. Explain: "Claude did X because context included Y but not Z"

Token Usage Investigation

  1. List messages to see token breakdown
  2. Identify spikes in cache_creation_input_tokens
  3. View context at spike points
  4. Determine what caused cache invalidation
  5. Suggest optimizations (batch edits, cache earlier)

Agent Delegation Analysis

  1. List messages to find sidechains ([SIDE])
  2. View sidechain message context
  3. Trace back to parent in main thread
  4. Compare context available in main vs sidechain
  5. Explain what agent could/couldn't see

Context Window Exhaustion

  1. List messages to track context growth
  2. Identify where total context approaches 200k
  3. View context at exhaustion point
  4. Analyze what's consuming space
  5. Suggest context optimization (new session, prune messages)

Integration with Other Skills

  • analyze-logs - Combine session logs (what Claude thought) with execution logs (what code did)
  • debug-test-failures - See what context was available when tests were written
  • orchestrate-agents - Track actual delegation patterns vs expected
  • check-progress-status - Understand how tasks were completed (decision points, delegations)

Supporting Files

- Session file format specification (JSONL structure) - Data models and content block types - Parent-child chain reconstruction algorithm - Cache token types and pricing details - Performance characteristics and limits - Tool implementation details - Understanding output format (session structure, token breakdown, message chains) - Advanced usage patterns (session comparison, pattern detection, metrics) - Troubleshooting guide (common errors, solutions) - Complete command reference

- 6 response templates for different contexts - List mode summary template - Context window analysis template - Agent delegation investigation template - Token usage spike template - Context exhaustion template

Requirements

Tools:

  • Python 3.12+ (already in project)
  • Session viewer: .claude/tools/utils/view_session_context.py (bundled)
  • jq (optional, for advanced analysis): brew install jq

Session files:

  • User-level: ~/.claude/projects/-Users-{username}-{project-path}/{session-uuid}.jsonl
  • Generated automatically by Claude Code

Verification:

# Verify tool exists
ls .claude/tools/utils/view_session_context.py

# Verify session files exist
ls -l ~/.claude/projects/-Users-$(whoami)-*/

# Test the tool
python3 .claude/tools/utils/view_session_context.py \
  $(ls -t ~/.claude/projects/-Users-$(whoami)-*/*.jsonl | head -1) --list

Quick Reference

GoalCommand
List all messagespython3.claude/tools/utils/view_session_context.py <session.jsonl> --list
View context at pointpython3.claude/tools/utils/view_session_context.py <session.jsonl> --message-index 10
View by UUIDpython3.claude/tools/utils/view_session_context.py <session.jsonl> --uuid "abc123..."
View raw JSONpython3.claude/tools/utils/view_session_context.py <session.jsonl> --message-index 10 --raw
Find recent sessions`ls -lt ~/.claude/projects/-Users-$(whoami)-*/*.jsonl \head -5`

Key Messages:

  • This skill provides X-ray vision into Claude's decision-making
  • Use when behavior is unexpected or token usage is unclear
  • Complements OpenTelemetry logs (code execution) with context window visibility (what Claude thought)
  • Essential for debugging complex agent orchestration
  • Start with --list, then drill down with --message-index

Remember: Session logs show what Claude had access to and how it reasoned. This is your forensic tool for understanding "why Claude did X."

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

33.87%
按下载量换算21

Claude

31.41%
按下载量换算20

Cursor

18.84%
按下载量换算12

Gemini CLI

9.02%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills