Mkdir Tool
PassAudited by VirusTotal on Apr 29, 2026.
Overview
Type: OpenClaw Skill Name: mkdir-tool Version: 1.0.0 The mkdir-tool skill bundle is a standard utility for creating directories using Python's os module. While there is a minor discrepancy where the documentation in SKILL.md mentions a permission mode flag (-m) not implemented in scripts/mkdir.py, the code is functional, transparent, and contains no indicators of malicious behavior or security vulnerabilities.
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.
If invoked on the wrong path, the agent could create unwanted directories or directory trees on the local filesystem.
The script creates directories at supplied paths. This is the skill's purpose, but it is still a local filesystem mutation that should be applied only to intended paths.
os.makedirs(d, exist_ok=True) if args.parents else os.mkdir(d)
Use the skill for specific, intended project or workspace paths; consider confirming absolute, system, or sensitive paths before invocation.
A user expecting the tool to create private directories with a specific mode may be surprised when that option is unavailable.
The documentation advertises permission-mode support, but the included script only defines directory arguments and --parents/-p, so users should not rely on the advertised -m behavior.
- `-m mode`: Set permission mode (e.g. 755)
Update the documentation or implementation before relying on this skill for permission-sensitive directory creation.
