在 Manus 中运行任何 Skill
一键导入
一键导入
一键在 Manus 中运行任何 Skill
开始使用dotfiles
星标4
分支0
更新时间2026年2月7日 13:55
Manage dotfiles with chezmoi
安装
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
SKILL.md
readonly菜单
Manage dotfiles with chezmoi
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Add a Homebrew package or Mac App Store app to dotfiles
Generate a changelog from recent commits
Create a conventional commit with proper format
Review code changes for quality and security
| name | dotfiles |
| description | Manage dotfiles with chezmoi |
| allowed-tools | Bash, Read, Grep, Glob, Edit, Write |
Manage this dotfiles repository with chezmoi.
dotfiles/
├── .chezmoiroot # Points to "home" as source
├── .chezmoiversion # Minimum chezmoi version
└── home/ # Source directory
├── .chezmoi.toml.tmpl # Config with template vars
├── .chezmoiexternal.toml # External dependencies
├── .chezmoitemplates/ # Reusable templates
│ └── common.tmpl # Logging, utilities
├── .chezmoiscripts/ # Automation scripts
│ ├── packages/ # Homebrew, Node.js, Rust
│ ├── editors/ # VS Code, Vim plugins
│ ├── security/ # GPG import
│ ├── system/darwin/ # macOS settings
│ ├── tools/ # Claude MCP, etc.
│ └── verify/ # Post-deploy checks
├── dot_config/ # ~/.config/ files
└── [other dotfiles]
chezmoi diff
chezmoi apply -v
chezmoi add ~/.newfile
chezmoi cat ~/.zshrc
chezmoi data
chezmoi apply --refresh-externals
home/.chezmoiscripts/run_[before|after|onchange]_category_name.sh.tmpl{{- if .is_mac -}}
#!/bin/bash
set -euo pipefail
{{ template "common.tmpl" . }}
# ... script content
{{- end -}}
chezmoi execute-template '{{ .is_mac }}'
chezmoi execute-template '{{ .with_docker }}'