Context Gatekeeper
AdvisoryAudited by Static analysis on Apr 30, 2026.
Overview
No suspicious patterns detected.
Findings (0)
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.
Private conversation details may remain in local history/summary files and may influence later responses if the summary is loaded again.
The skill intentionally persists conversation content and reintroduces the generated summary into future prompts. This is central to its purpose, but it means sensitive or misleading prior content can be stored and reused.
Registre as trocas... grave uma linha formatada `ROLE: texto` em um arquivo de histórico... Use o resumo... injete o conteúdo de `context/current-summary.md`
Keep the history file scoped to the current task, inspect the generated summary before reuse, clear sensitive entries when no longer needed, and treat stored summaries as context rather than trusted instructions.
If started, the monitor may continue rewriting the summary and log files in the background.
The monitor is designed as a continuous background loop that watches the history file and regenerates the summary. This is disclosed and local, but it can keep operating until stopped.
while True:
if os.path.exists(HISTORY_PATH):
...
run_summary()
time.sleep(CHECK_INTERVAL)Start the monitor only when needed, document the exact startup method, and provide or use a clear stop command/process cleanup step.
A user may look for or obtain a missing helper script from elsewhere, which would not be covered by this reviewed bundle.
The documentation references a startup helper script, but the provided manifest/source contents only include `auto_monitor.py` and `context_gatekeeper.py`. This is an installation/provenance consistency issue rather than evidence of hidden behavior.
ensure_context_monitor.sh # Starts (or restarts) the monitor safely... Run `./scripts/ensure_context_monitor.sh`
Either include the referenced helper script in the package for review or remove the instruction. Do not run off-bundle startup scripts unless separately reviewed.
