move-files
Move Files Command
Overview
A two-phase approach for moving files that preserves git history and makes changes trackable in diffs.
The Problem
When moving files, if you copy content and write new files, git treats them as deletions + additions rather than moves. This makes it impossible to track what actually changed versus what just moved.
The Solution: Two-Phase Move
Phase 1: Move Files with mv Commands
CRITICAL RULE: Use terminal mv commands ONLY. Never copy content and write files.
mv source/path destination/path
After moving files, STOP.
Tell the user:
"Phase 1 complete. Files have been moved using
mvcommands. Please stage these moves in git, then let me know when ready for Phase 2."
Phase 2: Make Content Changes (Only After User Stages)
Only proceed after user explicitly confirms moves are staged.
Now make any necessary content changes to the moved files:
- Update path references
- Fix import statements
- Update documentation links
- Adjust configuration values
- Modify file content as needed
Why This Works
Git tracking: When you use mv and stage the move, git recognizes it as a rename/move operation. This preserves file history.
Clean diffs:
- Phase 1 diff shows: file moved from A to B (no content changes)
- Phase 2 diff shows: only the actual content modifications
Easy review: The user can verify moves are correct before any content changes happen. This makes it clear what moved versus what actually changed.
When to Use This
Use this pattern whenever:
- Moving files between directories
- Reorganizing documentation
- Refactoring code structure
- Consolidating scattered files
- Any scenario where files need to move AND have content updated
Example Usage
User says: "Move all the guides from backend/docs/ to project/guides/backend/"
Your response:
- Use
mv backend/docs/guides project/guides/backend - Verify the move succeeded
- Tell user to stage the moves
- WAIT for user confirmation
- Only then make content changes to the moved files
Key Principles
- Use
mvcommands only - Never copy and write - Stop after moves - Wait for staging
- Make content changes separately - Only after user confirms staging
- One phase at a time - Never combine moves with content changes
More from steveclarke/dotfiles
md-to-pdf
Convert markdown files to PDF using Chrome. Use when user wants to render markdown to PDF, print a document, or create a shareable PDF from markdown. Triggers on "markdown to pdf", "render to pdf", "pdf from markdown", "print this markdown".
76bruno-endpoint-creation
Create Bruno REST API endpoint configurations with proper authentication, environment setup, and documentation. Use when setting up API testing with Bruno, creating new endpoints, or configuring collection-level authentication. Triggers on "create Bruno endpoint", "Bruno API testing", "set up Bruno collection".
68readme-writer
Write and revise READMEs and technical documentation for software projects. Scores readability with Flesch-Kincaid and vocabulary profiling. Use when writing, revising, or reviewing a README, README.md, or project documentation. Triggers on "write readme", "improve readme", "readme review", "documentation writing".
57time-tracking
Manage time tracking with Toggl or Clockify. Use when user asks about time tracking, timers, timesheets, logging hours, starting/stopping work, checking what's running, viewing time entries, or creating manual entries. Triggers on "toggl", "clockify", "time tracking", "timer", "timesheet", "log time", "track time", "hours worked".
521password
Fetch secrets and create/manage 1Password items via CLI. Use when needing API keys, tokens, or credentials, or when storing new secrets. Ask user for the 1Password secret reference (op://Vault/Item/field format) rather than the actual secret.
49feature-spec
Creates concise technical specification documents through guided architectural decisions, system contracts, and technical design. Produces a spec.md covering API design, data models, frontend architecture, and integration points without implementation details.
49