Hle Reasoning Wrapper
PassAudited by ClawScan on May 1, 2026.
Overview
This is a small prompt-formatting helper for HLE-style answers, with an optional local answer cache that users should know exists.
This skill appears safe for its stated use as a reasoning-format wrapper. Before using its caching functions, be aware that answers may be written to a local cache.json file and left on disk.
Findings (1)
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.
If used, previous answers may remain on disk and could be reused later, including stale or unintended content.
The code can store answers in a persistent local cache keyed from the question, creating reusable state across invocations.
const CACHE_FILE = path.resolve(__dirname, 'cache.json'); ... cache[key] = answer; ... fs.writeFileSync(CACHE_FILE, JSON.stringify(cache, null, 2));
Document the cache behavior, provide a way to clear or disable it, and avoid caching private questions or sensitive answers.
