← Back to list

dotfiles
by dreikanter
Alex's dotfiles
⭐ 1🍴 0📅 Jan 23, 2026
SKILL.md
name: dotfiles description: Manage dotfiles configuration with bidirectional sync between local environment and ~/.dotfiles repository. Understand the automation script, configuration structure, and common commands.
Dotfiles Management Skill
Overview
The dotfiles automation provides bidirectional sync between local configuration files and a centralized ~/.dotfiles repository. Configuration is managed via dotfiles.json and the dotfiles command.
Structure
Repository: ~/.dotfiles/ (git-tracked)
Key Files:
dotfiles.json- Configuration mapping (tool → file paths)config/- Organized dotfile storage by tool namebin/dotfiles- Ruby automation script (also in~/bin/dotfiles)
Storage Pattern:
~/.dotfiles/config/{tool_name}/
Examples:
~/.dotfiles/config/git/.gitconfig~/.dotfiles/config/zsh/.zshrc~/.dotfiles/config/sublimetext/Preferences.sublime-settings
Configuration Format
File: ~/.dotfiles/dotfiles.json
Structure:
{
"tool_name": [
"~/path/to/config_file",
"~/path/to/directory/*",
"~/path/to/directory/"
]
}
Path Types:
- Single file:
~/.gitconfig - Directory (recursive):
~/.config/nvim/*or~/.config/nvim/ - Preserves relative directory structure
Commands
Save (local → dotfiles):
dotfiles save # Copy local configs to dotfiles repo
dotfiles save -n # Dry run (show what would be done)
dotfiles save -v # Verbose output
dotfiles save -p # Prune removed files from dotfiles
Load (dotfiles → local):
dotfiles load # Restore configs from dotfiles repo
dotfiles load -n # Dry run
dotfiles load -v # Verbose output
dotfiles load -p # Prune removed files from local
Status:
dotfiles status # Show sync status of managed files
# Output: in sync, local changes, dotfile changes, missing, etc.
Config:
dotfiles config # Show configuration mapping as JSON
Status Indicators
| Status | Meaning | Color |
|---|---|---|
in sync | Files match | Green |
local changes | Local file newer | Red |
dotfile changes | Dotfile newer | Red |
local copy missing | Only dotfile exists | Gray |
dotfile missing | Only local exists | Gray |
neither exists | Both missing | Red |
Options
-n, --dry-run- Preview changes without applying-v, --verbose- Show detailed file operations-p, --prune- Remove destination files missing from source-h, --help- Show help message
Expected Workflows
When the user says specific commands, follow these workflows:
"Save dotfiles":
- Optionally run
dotfiles statusto check current state - Optionally run
dotfiles save -n -v(dry-run) if you see it necessary - Run
dotfiles save -v
"Load dotfiles":
- Optionally run
dotfiles statusto check current state - Optionally run
dotfiles load -n -v(dry-run) for safety if you see it necessary - Run
dotfiles load -v
"Push dotfiles":
- Change to
~/.dotfilesdirectory - Run
git add . - Run
git commit -m "Update dotfiles" - Run
git push origin main(or appropriate branch) - Resolve merge conflicts if necessary
"Pull dotfiles":
- Change to
~/.dotfilesdirectory - Run
git pull origin main(or appropriate branch) - Resolve merge conflicts if necessary
Usage Guidelines
- Check
dotfiles statuswhen it makes sense before saving/loading - Use dry-run (
-n) for safety when you consider it necessary - Edit
dotfiles.jsonto add new config files - Config stored in
~/.dotfiles/config/{tool_name}/ - The
~/.dotfilesrepo is git-tracked - Single source of truth for configuration across machines
Score
Total Score
55/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
✓最近の活動
1ヶ月以内に更新
+10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
✓タグ
1つ以上のタグが設定されている
+5
Reviews
💬
Reviews coming soon





