Claude Code session analytics - post stats to PRs/issues, extract to CSV
Scanned 9/20/2026
Install to Claude Code
npx -y skills add rossoctl/rossoctl --skill session --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Session?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/rossoctl-session)More formats (shields.io, HTML) on the badges page.
---
name: session
description: Claude Code session analytics - post stats to PRs/issues, extract to CSV
---
```mermaid
flowchart TD
INVOKE(["/session"]) --> DECIDE{"What does the user want?"}
DECIDE -->|Post current session stats| POST["session:post"]:::phase
DECIDE -->|Update pinned summary| SUMMARY["session:summary"]:::phase
DECIDE -->|Extract analytics to CSV/MD/HTML| EXTRACT["session:extract"]:::phase
DECIDE -->|Generate dashboard| DASHBOARD["session:dashboard"]:::phase
POST --> DONE([Done])
SUMMARY --> DONE
EXTRACT --> DONE
DASHBOARD --> DONE
classDef phase fill:#2196F3,stroke:#333,color:white
```
> Follow this diagram as the workflow.
# Session Analytics
Track and report Claude Code session metadata on GitHub PRs and issues.
## Auto-Select Sub-Skill
When this skill is invoked, determine the right sub-skill based on context:
```
What does the user want?
|
+- Post current session stats to a PR/issue
| -> Use `session:post`
|
+- Update the pinned summary comment on a PR/issue
| -> Use `session:summary`
|
+- Extract analytics to CSV/MD/HTML files
| -> Use `session:extract`
|
+- Generate an HTML dashboard
-> Use `session:dashboard`
```
## Available Skills
| Skill | Purpose | When |
|-------|---------|------|
| `session:post` | Post session stats to PR/issue comment | After a session, want to record stats |
| `session:summary` | Update pinned summary comment | Refresh aggregated stats on PR/issue |
| `session:extract` | Extract analytics to CSV/MD/HTML | Need offline analysis or reporting |
| `session:dashboard` | Generate HTML dashboard | Visual overview of session metrics |
## Quick Post
```bash
# Post current session stats to the PR for the current branch
python3 .claude/scripts/session-analytics.py --session-id <ID> --target pr --number <N> --repo <OWNER/NAME>
```
## Related Skills
- `session:post` - Post session stats to PR/issue comment
- `session:summary` - Update pinned summary comment
- `session:extract` - Extract analytics to CSV/MD/HTML
- `session:dashboard` - Generate HTML dashboard
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!