Skill

team-shinchan:analytics

Use when you need to analyze work tracker data for agent metrics or session stats.

From team-shinchan
Install
1
Run in your terminal
$
npx claudepluginhub seokan-jeong/team-shinchan --plugin team-shinchan
Tool Access

This skill uses the workspace's default tool permissions.

Skill Content

Analytics Skill

Analyze work tracker events for observability insights.

Usage

/team-shinchan:analytics                        # Current session summary
/team-shinchan:analytics --report full          # Full analytics report
/team-shinchan:analytics --agent bo             # Single agent detail
/team-shinchan:analytics --trace trace-xxx      # Trace timeline
/team-shinchan:analytics --period 7d            # Last 7 days only

Arguments

ArgDefaultDescription
--report full(session)Generate full analytics report
--agent {name}(all)Detail for a single agent
--trace {id}(none)Timeline for a specific trace ID
--period {N}d(all)Filter events to the last N days
--format tablejsonOutput as text table instead of JSON

Process

Step 1: Locate Tracker File

Use .shinchan-docs/work-tracker.jsonl as the data source.

If file does not exist:

No work tracker log found.
Events will be recorded automatically during Claude Code sessions.

Step 2: Run Analytics Script

Execute the analytics script via Bash:

node "${CLAUDE_PLUGIN_ROOT}/src/analytics.js" .shinchan-docs/work-tracker.jsonl [options]

Map user arguments to script flags:

  • --report full → no extra flags (full report is default)
  • --agent <name>--agent <name>
  • --trace <id>--trace <id>
  • --period <N>d--period <N>d
  • Default (no args) → --format table

Step 3: Display Results

  • For --format table or default: display the text table output directly
  • For JSON output: format and display key sections with headers

Step 4: Interpret Results

After displaying raw output, provide a brief interpretation:

  • Highlight busiest agents
  • Note any agents with low success rates
  • Summarize delegation patterns
  • Flag anomalies (e.g. agents with 0 completions)

Metrics Computed

MetricDescription
Agent call countHow many times each agent was invoked
Avg durationAverage time from agent_start to agent_done
Success rateRatio of agent_done to agent_start
Session statsEvents, file changes, delegations per session
Event distributionPercentage breakdown of event types
Delegation graphWhich agent delegated to which, with counts

Important

  • Analytics script: src/analytics.js (Node.js, built-in modules only)
  • Data source: .shinchan-docs/work-tracker.jsonl
  • Trace IDs: generated per user prompt via trace-init hook
Stats
Stars7
Forks0
Last CommitMar 23, 2026