Stats
Actions
Tags
From team-shinchan
Queries work tracker events from a JSONL log file, filtering by recency, agent, event type, or session ID.
How this skill is triggered — by the user, by Claude, or both
Slash command
/team-shinchan:work-logThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
**View and query events from the work tracker log.**
View and query events from the work tracker log.
/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
| Arg | Default | Description |
|---|---|---|
--last N | 20 | Number 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 |
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.
{"ts","type","agent","session","data"}━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
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})
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
| Type | Source | Description |
|---|---|---|
session_start | SessionStart hook | New Claude Code session |
session_end | SessionEnd hook | Session ended |
agent_start | SubagentStart hook | Agent invoked |
agent_done | SubagentStop hook | Agent completed |
delegation | PostToolUse (Task) | Agent delegated to another |
file_change | PostToolUse (Edit/Write) | File created or modified |
tool_use | PostToolUse (other) | Other tool used |
user_prompt | UserPromptSubmit | User sent a prompt |
stop | Stop hook | Execution stopped |
.shinchan-docs/work-tracker.jsonl.jsonl.gz).shinchan-docs/.session-idnpx claudepluginhub seokan-jeong/team-shinchan --plugin team-shinchanGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.