Git aware mv
A curated collection of agent skills, designed and developed using Crush and Qwen3.6 27B.
npx -y skills add lyoneel/ly-agent-skills --skill git-aware-mvAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Automatically moves files using git mv for git-tracked files to preserve history, or regular mv for untracked files. Use when moving or renaming files in a git repository.
SKILL.md
4.5 KB, 985 tokens by cl100k_base, as published. Nobody here has run it
Git-Aware File Move
Initialize todos tool:
[
{"content": "Validate parameters", "status": "in_progress", "active_form": "Validating parameters"},
{"content": "Check git tracking status", "status": "pending", "active_form": "Checking git tracking status"},
{"content": "Execute file move", "status": "pending", "active_form": "Executing file move"},
{"content": "Report results", "status": "pending", "active_form": "Reporting results"}
]
This skill automatically moves files using git mv for tracked files or regular mv for untracked files.
Usage
Invoke this skill when you need to move or rename files in a git repository. The skill will:
- Check if the source file is git-tracked
- Use
git mvif tracked (preserves history) - Use
mvif not tracked (standard filesystem move) - Create destination directories if needed
- Handle errors gracefully
Parameters
The script accepts the following arguments:
source(required, positional): AbsPath to the source file or directory to movedestination(required, positional): AbsPath to the destination--force(optional): Overwrite existing destination--dry-run(optional): Preview what would happen without executing--verbose/-v(optional): Show detailed information--json(optional): Output result as JSON for machine parsing
Update todos: mark "Validate parameters" as completed, mark "Check git tracking status" as in_progress.
When to Use
- Moving or renaming any file in a git repository
- Relocating files between directories
- Moving configuration files
- Organizing project structure
- Any file move where git history should be preserved
Implementation
Execute the entry point script with parameters:
python3 scripts/git-aware-mv.py <source> <destination> [--force] [--dry-run] [--verbose] [--json]
Script outputs JSON with --json flag for machine parsing. Fields: source, destination, git_tracked, command, success, error.
Update todos: mark "Check git tracking status" as completed, mark "Execute file move" as in_progress.
Examples
Basic Move
Move a tracked file (uses git mv automatically):
python3 scripts/git-aware-mv.py plugins/which-key.lua plugins-disabled/which-key.lua
Dry Run
Preview what would happen:
python3 scripts/git-aware-mv.py plugins/which-key.lua plugins-disabled/which-key.lua --dry-run
Verbose Output
Show detailed information:
python3 scripts/git-aware-mv.py plugins/which-key.lua plugins-disabled/which-key.lua --verbose
Force Overwrite
Overwrite existing destination:
python3 scripts/git-aware-mv.py plugins/which-key.lua plugins-disabled/which-key.lua --force
JSON Output
Machine-parseable result:
python3 scripts/git-aware-mv.py plugins/which-key.lua plugins-disabled/which-key.lua --json
Update todos: mark "Execute file move" as completed, mark "Report results" as in_progress.
Edge Cases
File in Staging Area
If the file has staged changes, git mv will move both the file and preserve the staged state.
Renamed but Not Committed
If a file was renamed via git mv but not yet committed, another git mv will work correctly.
Untracked File in Git Repo
Files that exist in a git repo but are not tracked (new files, gitignored files) will use regular mv.
Moving Outside Git Repository
If the destination is outside the git repository, git mv will fail and fall back to regular mv.
Destination Directory Doesn't Exist
The skill automatically creates the destination directory using mkdir -p.
Benefits Over Manual Execution
- Automatic git tracking detection
- Automatic git history preservation
- No manual command execution required
- Error handling and validation
- Dry-run mode for previewing
- Verbose mode for debugging
- Automatic directory creation
- Force overwrite option
- Clear error messages
Rationale
- Preserves git history for tracked files
- Enables
git log --followto trace file history across renames - Avoids accidental history loss
- Reduces user error by automating the decision
- Provides safety features (dry-run, verbose, force)
Update todos: mark "Report results" as completed. Clear todos with
todos([]).
Gives 0 of the 12 instructions most pr commit review skills give in 985 tokens
Counted across 888 of the 1,342 authors here whose files we hold, read 2026-08-06
- use conventional commits formatin 123 of 888, across 110 files
- keep subject line under 72 charactersin 60 of 888, across 46 files
- delete branches after mergein 50 of 888, across 37 files
- use imperative mood in subject linein 50 of 888, across 41 files
- use imperative mood in commit messagesin 45 of 888
- generate a conventional commit messagein 42 of 888
- make atomic commitsin 37 of 888, across 25 files
- run tests before committingin 36 of 888, across 24 files
- run project test suite to verify clean baselinein 35 of 888, across 7 files
- run detected project setup commandsin 34 of 888, across 6 files
- wrap commit body at 72 charactersin 32 of 888, across 25 files
- split unrelated changes into separate commitsin 32 of 888, across 27 files
Said here and by no other author read
- check git tracking status of source
- use mv for untracked files
- create destination directories if needed
- execute the entry point script with parameters
- validate source and destination parameters
Grouped from the skills themselves: near-identical wordings counted once, and counted by distinct author, so one author publishing three of these counts once. Length counted with cl100k_base; the agent that loads this file may tokenize it differently.