OEE AI Cost Tracker

PassAudited by ClawScan on May 1, 2026.

Overview

This appears to be a simple local AI cost tracker; the main things to notice are that it stores usage metadata locally and expects Python even though the registry does not declare it.

This skill looks safe for its stated purpose. Before installing, make sure you are comfortable with a local usage.jsonl file being created in the skill directory, avoid logging sensitive descriptions, and confirm Python 3.10+ is available if you plan to run the scripts.

Findings (2)

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

The skill may not work unless Python is already available, and the platform metadata may not warn you about that before use.

Why it was flagged

The skill documents a Python runtime requirement, while the registry metadata lists no required binaries and no install spec. This is an under-declared setup requirement, not evidence of hidden installation or remote code.

Skill content
- Python 3.10+ (stdlib only)
Recommendation

The publisher should declare Python 3.10+ in metadata. Users should run only the bundled scripts they intend to use.

What this means

If descriptions contain project names, prompts, customer details, or other sensitive context, that information will remain in the local usage log.

Why it was flagged

The tracker persists user-supplied usage metadata, including descriptions and source labels, to a local usage.jsonl file.

Skill content
"description": description, "source": source ... with open(_USAGE_PATH, "a") as f: f.write(json.dumps(entry) + "\n")
Recommendation

Keep log descriptions non-sensitive, protect or periodically delete usage.jsonl, and do not log secrets, prompts, or private customer data.