L6 Learning Accelerator
Analysis
The skill is self-contained and matches its learning-memory purpose, with the main caution that its progress import/export functions can read or write user-chosen JSON files.
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.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
fs.writeFileSync(filePath, JSON.stringify(data, null, 2)); ... JSON.parse(fs.readFileSync(filePath, 'utf8'))
The progress backup/restore functions read and write a caller-supplied file path. This is disclosed and aligned with exporting progress data, but unsafe paths could overwrite local files or import unintended JSON data.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
sessions.push(session); ... if (data.sessions) sessions = data.sessions; if (data.milestones) milestones = data.milestones;
The skill stores learning sessions and can replace them from imported JSON. This is expected for progress tracking, but imported or user-supplied session data can shape later reports.
