token-optimizer — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited token-optimizer (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
AI agents pay for every token read or written. During development, excessive logs or full-file rewrites waste cost and exhaust context windows. Follow these optimization guidelines.
Whenever running terminal commands, reduce output to the bare minimum needed for debug/analysis:
git status -s instead of a raw git status.git diff --stat first to see which files changed. Pull specific diffs via git diff <file> instead of dumping all files.git log -n 5 --oneline.cmd | grep -E "Error|Warning", on Windows use cmd | Select-String "Error").tsc --noEmit but group outputs or check only modified files.npm test -- -t "test-name"pytest -k "test_name"go test -run "TestName"--reporter=line or --summary-only).grep search or symbol lookup first.glob or git ls-files instead of listing all subdirectories recursively.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.