TokenRanger

PassAudited by ClawScan on May 1, 2026.

Overview

TokenRanger is a coherent, user-directed plugin setup guide, but it involves installing external code, running a persistent local sidecar, and processing conversation history.

Before installing, review the npm/GitHub plugin source, consider using the pinned install command, and be comfortable with a persistent local service that processes conversation history. Disable or uninstall the sidecar when you no longer need context compression.

Findings (4)

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 the plugin will bring external code into the OpenClaw environment.

Why it was flagged

The skill directs the user to install an external plugin package whose implementation is not included in the provided artifacts. This is expected for an installation guide, but it creates normal third-party package provenance risk.

Skill content
openclaw plugins install openclaw-plugin-tokenranger
Recommendation

Install only from the intended npm/GitHub source, prefer the pinned version command, and review the plugin package before enabling it.

What this means

Setup can add local dependencies and runnable service components to the machine.

Why it was flagged

The documented setup step installs dependencies and prepares executable service code. This is aligned with the sidecar architecture and is user-directed, but it is more than a passive configuration change.

Skill content
This pulls Ollama models, creates the Python venv, installs FastAPI/LangChain deps, and registers the sidecar as a system service
Recommendation

Run setup only after deciding to trust the plugin source, and keep a record of installed components for later removal.

What this means

Private chat content may be processed by the local sidecar, and compression may omit or distort details that would otherwise be in the model context.

Why it was flagged

The plugin processes conversation history and substitutes a compressed summary into future model context. This is central to the stated purpose, but it affects sensitive session content and can change what context the model receives.

Skill content
Turn 2+: send history to localhost:8100/compress ... Compressed summary prepended to context
Recommendation

Avoid using it for sessions containing highly sensitive information unless you trust the local setup, and disable compression when exact context fidelity is required.

NoteHigh Confidence
ASI10: Rogue Agents
What this means

A TokenRanger service may continue running after setup until it is disabled or removed.

Why it was flagged

The skill documents a long-running background sidecar. Persistence is disclosed and uninstall commands are provided, so this is a notice rather than a concern.

Skill content
registers the sidecar as a system service (systemd on Linux, launchd on macOS)
Recommendation

Verify the service status after installation and use the documented uninstall/service removal steps when no longer needed.