What problem does it solve? Editing files under .claude/ (agents, skills, commands) triggers a permission prompt on every Edit or Write operation, which becomes tedious when creating or revising multiple files. This Skill defines a workflow that stages changes in /tmp (an allowed directory) and copies them back with a single auto-approved cp command. ## Core Features & Use Cases - Staging workflow: Copy target files to /tmp/dot-claude-work/, edit freely without prompts, then copy results back into .claude/. - New file creation: Write new SKILL.md, agent, or command files in /tmp first, then place them under the correct .claude/ subdirectory. - Scope guidance: Covers .claude/agents/*.md, .claude/skills/<name>/SKILL.md, and .claude/commands/*.md, while delegating settings.json changes to the update-config skill. - Use Case: When creating a new skill that needs five rounds of edits to its SKILL.md, you perform all edits in /tmp with zero prompts and finish with one auto-approved copy command instead of approving five prompts. ## Quick Start Copy the .claude file I want to edit into /tmp/dot-claude-work, make the edits there, and copy it back into .claude when done.