myinsights

myinsights is a skill for Claude Code from ao92265/claude-code-playbook. It costs 147 tokens per session (1,793 once invoked), scanned A, original, MIT.

A report generator that combines usage data from all Claude Code logins found on one computer. It produces numerical summaries and a written overview based on available session records.

In plain words
What is it for?
Use it to review activity across local coding-agent sessions, including usage, tools, languages, errors, timing, commits, and project areas.
Why use it?
It provides a broader view than the built-in insights report, while making clear that sessions cannot be separated by account and the written overview may cover only some sessions.

Skill for Claude Code

Written for Claude Code: ${CLAUDE_PLUGIN_ROOT variable. Also seen: reads .claude/ paths; mentions Claude Code.

Runs only inside its plugin — its command needs a path that Claude Code sets for a plugin’s own hooks and for nothing else. Install the plugin, not this.

Part of the playbook plugin — 48 skills, 4 hooks shipped together

Good fit Use it to review activity across local coding-agent sessions, including usage, tools, languages, errors, timing, commits, and project areas.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.

Claude Code
/plugin marketplace add ao92265/claude-code-playbook
Claude Code
/plugin install playbook

Made for: Claude Code.

Or install playbook, the plugin that ships this one along with the rest of its 48 skills, 4 hooks.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for myinsights

README.md
[![agentmods](https://agentmods.dev/badge/skills/ao92265/claude-code-playbook/myinsights/github.svg)](https://agentmods.dev/skills/ao92265/claude-code-playbook/myinsights)
Your own site
<a href="https://agentmods.dev/skills/ao92265/claude-code-playbook/myinsights"><img src="https://agentmods.dev/badge/skills/ao92265/claude-code-playbook/myinsights/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for myinsights

Your own site · 80×15
<a href="https://agentmods.dev/skills/ao92265/claude-code-playbook/myinsights"><img src="https://agentmods.dev/badge/skills/ao92265/claude-code-playbook/myinsights.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 147 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,793 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00147 $0.01793
Opus 5 $0.00073 $0.00897
Sonnet 5 $0.00029 $0.00359
Haiku 4.5 $0.00015 $0.00179

Measured 9d ago against content hash 9a8d19225058, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

myinsights scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

The scan reads SKILL.md. This mod also ships 7 executable files (export_scores.py, gather_all.py, render_myinsights.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/myinsights/SKILL.md · 80 lines

How it starts

The opening of the file, as written. The whole thing — 80 lines — stays where its author put it; the contents beside it link to each section on GitHub.

myinsights

The built-in /insights samples a subset of sessions and reflects the currently-logged-in view. This produces a report over the whole local corpus, merged across every login, because /login overwrites only identity (keychain token + ~/.claude.json), never ~/.claude/projects/** or ~/.claude/usage-data/** — all logins' sessions already coexist locally.

Honesty guardrails (must survive into the report):

  • Sessions on disk carry no account tag → the report is merged, it cannot split work vs personal. State this.
  • Quantitative stats cover all session-meta; the qualitative narrative is grounded in the available facets (a subset). Don't imply the narrative saw every session.

Steps

  1. Extract substrate (deterministic, read-only) into a scratch dir:

    OUT=/tmp/myinsights && python3 "${CLAUDE_PLUGIN_ROOT:-$HOME/.claude}/skills/myinsights/gather_all.py" "$OUT"
    

    Writes $OUT/quant.json (rollups: sessions, tokens, commits/pushes, durations, top tools, languages, error categories, by-hour, project areas) and $OUT/facets_compact.json (trimmed qualitative facets). Honours CLAUDE_CONFIG_DIR.

  2. Synthesize the narrative — read $OUT/facets_compact.json + $OUT/quant.json and produce a JSON object at full /insights depth (a deep Opus agent, effort high). Ground every claim in the data; cite counts; full-corpus claims use n=sessions framing, sampled claims use n=facets; say "insufficient data" rather than invent. Save to $OUT/narrative.json. Exact schema (the renderer degrades gracefully if a block is missing, but aim for all of it):

    headline: str
    project_areas: [{name, session_count:int, description}]            # 5-6
    interaction_style: {narrative, key_pattern}
    what_works: {intro, impressive_workflows:[{title, description}]}    # 3
    friction: {intro, categories:[{category, description, examples:[]}]} # 3, examples paraphrased from facets
    suggestions: {
      claude_md_additions:[{addition, why, prompt_scaffold}],           # 5  (prompt_scaffold = short "Add under a ## X section" hint)
      features_to_try:[{feature, one_liner, why_for_you, example_code}], # 3
      usage_patterns:[{title, suggestion, detail, copyable_prompt}]     # 3  (detail = 2-3 sentence grounded paragraph)
    }
    on_the_horizon: {intro, opportunities:[{title, whats_possible, how_to_try, copyable_prompt}]}  # 3
    fun_ending: {headline, detail}
    at_a_glance: {whats_working, whats_hindering, quick_wins, ambitious_workflows}
    

Read the full file on GitHub · 80 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 80 lines · 147 tokens per session scan A 9a8d19225058

Subscribe to this mod's changes

myinsights is a skill published in the GitHub repository ao92265/claude-code-playbook (10 stars, last pushed yesterday), licensed MIT. It adds 147 tokens to every session and 1,793 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

local-ai-agents

Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…

microsoft/ai-agents-for-beginners · 200 tokens

next-cache-components-adoption

Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…

vercel/next.js · 95 tokens

insight-error-page

Write or audit an insight-kind error page for the Next.js dev overlay. Use when creating a new errors/ .mdx page, auditing an existing one, or checking that a page matches the framework fix cards. Covers page structure, title alignment, FixCard cards with Copy prompt button, code snippets, terminology verification…

vercel/next.js · 83 tokens

next-cache-components-optimizer

Drive a Next.js route to instant navigation by setting up an agentic loop, under Cache Components / PPR, on initial load (hard navigation) and client-side navigation (soft navigation). Encode the goal as a failing @next/playwright instant() e2e and work it to green, one verified route at a time; the shipped test then…

vercel/next.js · 170 tokens

next-partial-prefetching-adoption

Turn on Partial Prefetching in a Next.js app and work through the insights it surfaces. Use when the user wants to enable or adopt Partial Prefetching, flip the partialPrefetching flag, opt routes in with export const prefetch = 'partial', audit Link prefetch={true} behavior, preserve existing prefetched UI with…

vercel/next.js · 103 tokens