Notebook
Analysis
Notebook is mostly a coherent local YAML notebook, but its file paths use user-defined type names without validation, which could let malformed type names write notebook files outside the intended folder.
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.
function getObjectPath(type, id) {
const typeDir = path.join(OBJECTS_DIR, type);
if (!fs.existsSync(typeDir)) fs.mkdirSync(typeDir, { recursive: true });
return path.join(typeDir, `${id}.yaml`);
}
...
const filePath = getObjectPath(typeName, id);The user-defined type name is used directly as a path segment for directory creation and YAML file writes. The artifacts do not show validation that blocks path separators or '..', so a malformed type name could place notebook files outside the intended objects directory.
Checks for exposed credentials, poisoned memory or context, unclear communication boundaries, or sensitive data that could leave the user's control.
Purpose: Track any object type you define such as ideas, projects, tasks, habits, books, and people. ... Data Location /data/notebook/
The skill is designed to persist arbitrary personal knowledge locally, including potentially sensitive notes about people, tasks, habits, and projects.
