Manage Mounts (NanoClaw)
A skill for viewing, adding, removing, and resetting the host directories that NanoClaw agent containers may access.
UtilitiesIntermediate★ 30,471⑂ 12,865AI score 7/10Last updated: Aug 9, 2026
What it does
- Reads the mount allowlist at
~/.config/nanoclaw/mount-allowlist.jsonand summarizes it clearly: which directories are allowed and whether each is read-only or read-write. - When adding a directory, it validates that the path exists, asks whether it should be read-write or read-only (the safer default), and writes the config via
setup/index.ts --step mounts --force. - Supports removing individual entries or resetting everything with
--empty. - Explains how changes take effect: newly spawned containers pick them up automatically, and a running group can be refreshed with
ncl groups restart --id <group-id>.
Who it's for
- Teams running agent containers with NanoClaw who frequently adjust host directory access.
- Anyone who wants to grant agents least-privilege access to only the folders they need.
- Users who would rather not hand-edit a JSON config file.
Examples
- "Show me the current mount allowlist" → reads the config and lists each directory with its read-only/read-write status.
- "Give agents write access to ~/projects/web" → validates the path and adds an entry with
allowReadWrite: true. - "Clear all mounts and apply it to the group that's already running" → resets with
--empty, then restarts the group viancl groups restart.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/nanocoai/nanoclaw/HEAD/.claude/skills/manage-mounts/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the .claude/skills/manage-mounts folder from the GitHub repo nanocoai/nanoclaw into my ~/.claude/skills/manage-mounts/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/nanocoai/nanoclaw.git && mkdir -p ~/.claude/skills && cp -r nanoclaw/.claude/skills/manage-mounts ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal.
- Clone the repository:
git clone https://github.com/nanocoai/nanoclaw.git - Create the skills directory:
mkdir -p ~/.claude/skills - Copy the skill:
cp -r nanoclaw/.claude/skills/manage-mounts ~/.claude/skills/ - The commands require running from the NanoClaw repo root with
pnpmavailable (for tsx); runpnpm installthere first. - Restart Claude Code and try asking "show the mount allowlist" to trigger the skill.
View source on GitHub ↗License: MIT