What problem does it solve?
Windows configuration work often requires creating directory junctions and symbolic links to share and mirror tool configurations. This Skill provides safe, repeatable patterns to create junctions (no admin) and standard symbolic links (admin) to keep .agents, .cursor, .github, and .opencode in sync.
Core Features & Use Cases
- Junctions (no admin required) to mirror directories across multiple tool configurations.
- Symbolic links (admin required) for cross-drive access or file linking.
- Safe verification, cleanup guidance, and Git-friendly workflows for maintaining single sources of truth.
Quick Start
Use the Windows commands below to set up a junction and a symbolic link for a sample directory structure.
- Create a junction mirroring .agents/skills to .agent/skills:
Remove-Item -Recurse -Force '..agent\skills' -ErrorAction SilentlyContinue
New-Item -ItemType Junction -Path '..agent\skills' -Target (Resolve-Path '..agents\skills').Path
- Create a symbolic link example:
New-Item -ItemType SymbolicLink -Path '..target\dir' - Target (Resolve-Path '..source\dir').Path