Skill

team-shinchan:work-log

Use when you need to query work tracker events by recency, agent, or session.

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

Work Log Skill

View and query events from the work tracker log.

Usage

/team-shinchan:work-log                     # Last 20 events
/team-shinchan:work-log --last 50           # Last 50 events
/team-shinchan:work-log --agent bo          # Events for agent bo
/team-shinchan:work-log --type file_change  # Only file_change events
/team-shinchan:work-log --session session-1234-abcd  # Events for session

Arguments

ArgDefaultDescription
--last N20Number of recent events to show
--agent {name}(all)Filter by agent name
--type {event_type}(all)Filter by event type
--session {id}(all)Filter by session ID

Process

Step 1: Read Tracker File

Read .shinchan-docs/work-tracker.jsonl

If file doesn't exist:

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

Step 2: Parse and Filter

  1. Read all lines from the JSONL file
  2. Parse each line as JSON: {"ts","type","agent","session","data"}
  3. Apply filters (--agent, --type, --session) if specified
  4. Take the last N entries (default 20)

Step 3: Display

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Work Log ({N} events)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

{ts} | {type} | agent:{agent} | {data summary}
{ts} | {type} | agent:{agent} | {data summary}
...

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Total: {total} events in log
Showing: last {N} (filtered: {filters applied})
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Event Types

TypeSourceDescription
session_startSessionStart hookNew Claude Code session
session_endSessionEnd hookSession ended
agent_startSubagentStart hookAgent invoked
agent_doneSubagentStop hookAgent completed
delegationPostToolUse (Task)Agent delegated to another
file_changePostToolUse (Edit/Write)File created or modified
tool_usePostToolUse (other)Other tool used
user_promptUserPromptSubmitUser sent a prompt
stopStop hookExecution stopped

Important

  • Log file: .shinchan-docs/work-tracker.jsonl
  • Auto-rotated at 10,000 lines (archived to .jsonl.gz)
  • One JSON object per line
  • Session IDs tracked via .shinchan-docs/.session-id
Stats
Stars7
Forks0
Last CommitMar 23, 2026