Mkdir Tool
PassAudited by ClawScan on May 10, 2026.
Overview
This is a simple local directory-creation helper; its filesystem changes are expected, though the documented permission option is not implemented in the included script.
Install only if you want the agent to create local directories. Review paths before use, especially absolute or sensitive locations, and do not rely on the documented -m permission option unless the implementation is updated.
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.
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.
