Skip to content
shell
$ npx -y skills add egorfedorov/claude-context-optimizer --skill cco-clean --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.
  • You can call itInvoke it directly when you want it.
  • Slash command/cco-clean
How auto-invocation works

Context preview

The summary Claude sees to decide when to auto-load this skill.

Clean up old tracking data and reset statistics

SKILL.md

cco-clean.SKILL.md
name: cco-clean
description: Clean up old tracking data and reset statistics
license: MIT
argument-hint: "[--sessions-older-than <days>] [--reset-all]"
allowed-tools: [Bash]

Clean Context Optimizer Data

The user wants to clean up tracking data. Parse $ARGUMENTS:

  • If `--reset-all`: Delete all data in `~/.claude-context-optimizer/` and confirm
  • If `--sessions-older-than N`: Delete session files older than N days
  • If no arguments: Show current data size and ask what to clean

Run to check data size:

du -sh ~/.claude-context-optimizer/ 2>/dev/null && find ~/.claude-context-optimizer/sessions/ -name "*.json" 2>/dev/null | wc -l

For cleanup, delete the appropriate files and confirm what was removed.

Read it on GitHub ↗
Ships withclaude-context-optimizer

Claude Code plugin that tracks token usage, identifies wasted context, and saves 30-50% on API costs. Heatmaps, ROI reports, budget alerts, efficiency scores, git-aware suggestions — all local, zero config.

Get the whole plugin, auto-invoked
Stats
85
Stars
0
Views
10
Forks
Active
Maintenance
JavaScript
Language
MIT
License
20d ago
Last commit
4mo ago
Created

Repo: egorfedorov/claude-context-optimizer