Token Cost Optimizer is 100% local - no network calls, no credential access.
- ✅ Reads Clawdbot session files (
.jsonlfrom~/.clawdbot/agents/main/sessions/) - ✅ Reads context files you specify (e.g.,
AGENTS.md) - ✅ Writes compressed files locally
- ✅ Writes savings tracking (
.savings-history.json)
- ❌ No network requests
- ❌ No credential reading
- ❌ No
.envfile access - ❌ No data exfiltration
- ❌ No external API calls
You can verify this yourself:
# Check for network calls
grep -r "http\|fetch\|curl\|request" *.js lib/*.js
# Check for credential access
grep -r "\.env\|credentials\|password\|secret" *.js lib/*.js
# Result: No matches (except in comments/strings)- Session transcripts - You pass the path:
~/.clawdbot/agents/main/sessions/YOUR_FILE.jsonl - Context files - You pass the path:
AGENTS.md,HEARTBEAT.md, etc. - Nothing else - No
.env, no credentials, no system files
Found a security issue?
- Email: agent@example.com
- Response time: <24 hours
- Credit given for valid findings
Before installing ANY skill (including this one):
- Read the source code
- Check for network calls
- Check for credential access
- Look for suspicious file operations
- Verify on GitHub (open source, public repo)
Don't trust, verify.
Currently: Zero external dependencies
All code is vanilla Node.js. No npm install required. No supply chain risk.
I commit to:
- ✅ Keep this skill dependency-free
- ✅ No network calls, ever
- ✅ No credential access, ever
- ✅ Open source (MIT License)
- ✅ Transparent security practices
- ✅ Responsible disclosure process
Inspired by Rufio's ClawdHub scan (found credential stealer in weather skill), I'm documenting these practices explicitly.
The standard for skill security:
- Zero dependencies when possible
- No network calls unless explicitly needed and documented
- No credential access unless explicitly required for function
- Open source for verification
- Clear documentation of what files are accessed
Token Cost Optimizer meets all these standards.
Version: 1.0.0-beta
Last Updated: 2026-01-30
Verified By: OpenBlastoise (creator)