.claude/skills/manage-dotfiles/SKILL.md
Manage dotfiles and keep synced with external directories. Use on Linux / macOS systemswhen thetre are external connfigs which are being imported into the dotfiles, or when stored dotfiles need to be brought outside to the XDG environment.
npx skillsauth add poorrican/dotfiles manage-dotfilesInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
On Linux and macOS, dotfiles will be managed via GNU stow.
The stored dotfiles will use the XDG configuration for simplicity and organization.
The commands below assume that there is a specific config package which is being interacted with (eg: nvim)
Sync a dotfiles package to its target location using GNU stow.
Validate the package exists at ~/dotfiles/{package}:
result, docs, ░▒▓ OLD ▓▒░)Run stow to deploy the package:
stow -v -d ~/dotfiles -t ~ {package}
Report what was linked. If stow reports conflicts, explain what's blocking and suggest using stow -D to unstow first, or stow -R to restow.
Import an external config into the dotfiles repository and stow it.
Resolve the path: Expand ~ and resolve to an absolute path. Verify the file/directory exists.
Compute the home-relative path: The path must be under $HOME. Strip the $HOME prefix to get the relative path.
~/.config/foo/bar.conf → .config/foo/bar.conf~/.zshrc → .zshrcDerive the package name:
.config/<app>/... paths → package name is <app>.<dotfile> (hidden file in home root) → package name is <dotfile> without the leading dot.local/share/<app>/... → package name is <app>Create the package structure in ~/dotfiles:
mkdir -p ~/dotfiles/<package>/<parent-dirs>
Where <parent-dirs> mirrors the home-relative path's directory structure.
Move the config into the package:
mv <original-path> ~/dotfiles/<package>/<home-relative-path>
Stow the package to create symlinks:
stow -v -d ~/dotfiles -t ~ <package>
Verify: Confirm the original path is now a symlink pointing into dotfiles.
Importing ~/.config/wezterm/wezterm.lua:
wezterm~/dotfiles/wezterm/.config/wezterm/wezterm.lua~/.config/wezterm/ → ~/dotfiles/wezterm/.config/wezterm/ln - only use stow for symlinkingdevelopment
Implement multiple GitHub issues sequentially as stacked branches in separate worktrees, with an implementer sub-agent and an independent reviewer sub-agent per issue. Use when the user gives you two or more dependent issues and asks for them to be implemented in order, or says "stacked branches", "sequential issues", "issue chain", "do these in worktrees", or describes a parent epic with child issues that build on each other. Also reach for this whenever the user wants implementation and verification done by separate agents.
testing
Use when an agent needs to produce, update, validate, or normalize a standardized research proposal artifact without running an interview. Defines the canonical structure, confidence-tag semantics, decision logic, and completion checks for proposal.md-style research plans.
development
Conducts a structured Socratic interview to produce a comprehensive markdown research proposal that handles cascading uncertainty (fixed end-question, branching experiments). Use this skill whenever the user wants to write a research proposal, research plan, study design, experiment plan, thesis proposal, RFC, or "spec out" a research direction — even if they don't explicitly say "interview me." Trigger when the user says things like "help me plan this research", "I want to design experiments for X", "draft a proposal for...", "think through a research direction", or shares a half-formed research idea and asks for help structuring it. The skill interviews the user, challenges their priors with evidence requests and falsifiers, optionally uses sub-agents to explore prior art, and builds the proposal markdown incrementally so context stays clean and the document is always grounded.
testing
Use when an agent needs to produce, update, validate, or normalize a standardized experiment-log entry without running an interview. Defines the canonical structure, pre-registration rules, evidence/interpretation split, calibration tags, and append-only revision model for durable experiment records.