LiQun Context Manager

PassAudited by ClawScan on May 10, 2026.

Overview

This is a small local memory-search helper that reads bounded local memory/skill files, with no evidence of network access, credential use, persistence, or destructive behavior.

This skill appears safe to install if you want local keyword search over memory files. Be aware that it inspects local memory/ and skills/ Markdown or JSON files, so keep private or untrusted material out of those folders unless you intend it to be searchable.

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.

What this means

If memory or skill files contain private, stale, or untrusted text, those files may be surfaced as relevant context for future work.

Why it was flagged

The helper reads local Markdown/JSON memory and skill files to find keyword matches. This is aligned with a context manager, but it means persistent local context can influence what the agent later retrieves or relies on.

Skill content
SEARCH_DIRS = ['memory', 'skills'] ... with open(path, 'r', encoding='utf-8') as f: content = f.read() ... if keyword.lower() in content.lower(): results.append(path)
Recommendation

Use this only with intended memory directories, review returned files before relying on them, and avoid placing sensitive or untrusted content in memory/ or skills/ if it should not be searched.