team-shinchansession-summary

star 8

Use when you need to generate or view a session summary from work tracker logs.

seokan-jeong By seokan-jeong schedule Updated 3/23/2026

name: team-shinchan:session-summary description: Use when you need to generate or view a session summary from work tracker logs. user-invocable: false

Session Summary Skill

Generate a quantitative session summary from work tracker data.

Usage

/team-shinchan:session-summary                          # Current session
/team-shinchan:session-summary --session session-xxx    # Specific session

Arguments

Arg Default Description
--session {id} current Session ID to summarize (defaults to .shinchan-docs/.session-id)

Process

Step 1: Resolve Session ID

  • If --session provided, use that ID
  • Otherwise, read .shinchan-docs/.session-id for the current session ID
  • If no session ID found:
    No active session found. Use --session {id} to specify one.
    Available sessions can be found via: /team-shinchan:work-log
    

Step 2: Read and Filter Events

  1. Read .shinchan-docs/work-tracker.jsonl
    • If file does not exist:
      No work tracker log found.
      Events will be recorded automatically during Claude Code sessions.
      
  2. Parse each line as JSON: {"ts", "type", "agent", "session", "data"}
  3. Filter events where event.session matches the target session ID
  4. If zero events match:
    No events found for session {id}.
    

Step 3: Compute Metrics

From the filtered session events, calculate:

Metric How
Duration First event ts to last event ts. Format as {start} - {end} ({N} minutes)
Agents invoked Count unique non-null agent values from agent_start events. Build {agent: count} map.
Files changed Count events where type === "file_change". Deduplicate by data.file path.
Delegations Count events where type === "delegation".
Events total Total count of all filtered events.

Step 3.5: Git Metrics

Run git metrics to include development activity in the summary:

node ${CLAUDE_PLUGIN_ROOT}/src/analytics.js --git --format table

Append to summary output:

Git Activity:
  Commits today: {N}
  Lines: +{added} / -{deleted}
  Files changed: {N}
  Test ratio: {N}%
  Hotspot files: {top 3 files}

Include in saved SESSION_SUMMARY.md as:

## Git Activity
| Metric | Value |
|--------|-------|
| Commits today | {N} |
| Lines changed | +{added} / -{deleted} |
| Files changed | {N} |
| Test ratio | {N}% |
| Hotspot files | {file1}, {file2}, {file3} |

Step 4: Build and Display Summary

Display the summary in console AND save to file.

Console output:

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Session Summary
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Session: {session_id}
Duration: {start_time} - {end_time} ({N} minutes)
Agents invoked: {count} ({agent: count, ...})
Files changed: {count}
Delegations: {count}
Events total: {count}

Agent Activity:
| Agent | Invocations | Last Action |
|-------|-------------|-------------|
| {agent} | {count} | {last event summary} |

Key Events:
- {HH:MM}: {type} - {description}
...

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Step 5: Save to File

Determine output path:

  • If active workflow exists (.shinchan-docs/*/PROGRESS.md with status: active): .shinchan-docs/{doc_id}/SESSION_SUMMARY.md
  • Otherwise: .shinchan-docs/SESSION_SUMMARY.md

Write the summary using the same markdown template as hooks/session-wrap.md:

# Session Summary
- **Session**: {session_id}
- **Duration**: {start_time} - {end_time} ({N} minutes)
- **Agents invoked**: {count} ({agent: count, ...})
- **Files changed**: {count}
- **Delegations**: {count}
- **Events total**: {count}

## Agent Activity
| Agent | Invocations | Last Action |
|-------|-------------|-------------|
| {agent} | {count} | {last event summary} |

## Key Events
- {HH:MM}: {type} - {description}

Confirm:

Summary saved to {output_path}

Important

  • This skill uses the same logic as the session-wrap Stop hook but is user-triggered
  • Log file: .shinchan-docs/work-tracker.jsonl
  • Session IDs tracked via .shinchan-docs/.session-id
Install via CLI
npx skills add https://github.com/seokan-jeong/team-shinchan --skill team-shinchansession-summary
Repository Details
star Stars 8
call_split Forks 2
navigation Branch main
article Path SKILL.md
More from Creator
seokan-jeong
seokan-jeong Explore all skills →