Overkill Token Optimizer

PassAudited by ClawScan on May 10, 2026.

Overview

This skill is coherent for token optimization, but it relies on an external oktk CLI and can index/search local OpenClaw session memory.

Before installing, verify the oktk dependency source and avoid curl-to-shell installation if possible. Use the index/search features only for workspace memory you are comfortable making searchable, and run reset or compress commands only after reviewing their effects.

Findings (3)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

Installing this way gives external installer code the ability to run on the user's machine.

Why it was flagged

The framework documentation offers an unpinned remote installer script for the required oktk dependency; this is disclosed and purpose-related, but the installed code is outside the supplied artifacts.

Skill content
curl -sSL https://get.oktk.io | sh
Recommendation

Prefer a verified package source, pin the oktk version, review the installer, and avoid piping remote scripts to a shell unless you trust the source.

What this means

If a destructive or unintended command is passed to compression, it could affect local files or systems just like running that command normally.

Why it was flagged

The compress command delegates arbitrary user-supplied commands to the external oktk binary. This is central to CLI output compression, but it means the command runs with the user's local permissions.

Skill content
subprocess.run([OKTK_BIN, "compress", "--"] + command, capture_output=False, text=True, timeout=300)
Recommendation

Use compress only with commands you explicitly chose and reviewed; avoid destructive commands and keep human approval for high-impact operations.

What this means

Local session history can become searchable and persist in an index under the OpenClaw workspace directory.

Why it was flagged

The skill indexes and searches local OpenClaw workspace memory files and stores a persistent session index. This is purpose-aligned, but session memory may contain private conversation history.

Skill content
SESSION_INDEX_DIR = WORKSPACE_DIR / ".session_index"; SESSION_DIR = WORKSPACE_DIR / "memory"; SESSION_PATTERN = "*.md"
Recommendation

Review what is stored in the workspace memory directory before indexing, delete the .session_index directory if needed, and avoid indexing sensitive sessions.