Andrey Markin
  • home
  • services
  • projects
  • blog
  • directory
    • Tool
    • Library
    • Repo
    • Article
    • XTweet
    • Guideline
    • Video
  • courses
  • resume
  • about
  • contact
  • meet

Mark Life Ltd

  1. Home
  2. Directory
  3. Session Report
Meet

Mark Life Ltd

BG208147965

HomeContactPrivacyLLM-friendlyBlog RSSDirectory RSS
  1. Directory
  2. session-report
GuidelineAI CodingDev Toolsagentscliobservability

session-report

Claude Code / Codex skill that generates a self-contained HTML report debugging what is in a session's context window and how every token is spent — context budget, retained thinking, the dumb-zone cutoff, loaded CLAUDE.md and skills, and full history.

Added June 25, 2026
Visit guideline

Install it with:

npx skills add Mark-Life/agent-skills -g --skill session-report

Then run /session-report <session-id> to inspect or debug a session's context usage — "what's eating my context", "why did this session get dumb", "is my CLAUDE.md too big". It produces a forensic, zero-dependency HTML report you can just open: peak context versus the available window, dumb-zone detection (degradation past ~40% utilization), thinking-token recovery from output metadata, an inventory of loaded artifacts (CLAUDE.md, skills, opened files), and the full searchable event history with inline dumb-zone markers.

Because it's a script parsing the transcript rather than a prompt, the report is near-instant and costs no tokens — the agent just runs it, it doesn't reason it out. Runs via Node, Bun, or npx tsx and defaults to a 1M-token window for Claude Code (Codex records its actual window); output lands at ./ccx-<id>.html. Worth remembering one caveat it calls out: a peak near 200K on a 1M window is normal (~20% capacity), not evidence of truncation.

Related

  • It's Time To Rethink EverythingTheo Browne's CascadiaJS 2026 talk arguing that AI is a "new cloud moment" — just as the cloud removed the cost of provisioning servers, agents remove the cost of building, so the sacred rules of software (file systems, codebases, packages, git, deployment) are worth tearing down and rebuilding from first principles.
  • EveOpen-source agent framework from Vercel — define agents as directories of TypeScript and Markdown config and deploy them as standard Vercel projects.
  • FlueTypeScript framework for building durable AI agents and workflows with no vendor lock-in — write once, deploy anywhere, run on any LLM.
  • teachMatt Pocock's skill that turns a coding agent into a personal tutor — it builds a stateful learning workspace and designs lessons within your zone of proximal development to teach you any skill or concept over multiple sessions.