Quick token budgeting proxy
# Count tokens as a consistent budget proxy (not exact for every vendor)
python3 -m pip install --user tiktoken
python3 - <<'PY'
import sys, tiktoken
enc = tiktoken.get_encoding('o200k_base')
print(len(enc.encode(sys.stdin.read())))
PY < SKILL.md
Use this to compare skills/policies relative to each other.
The goal is consistent budgeting, not perfect vendor token parity.