Manus에서 모든 스킬 실행
원클릭으로
원클릭으로
원클릭으로 Manus에서 모든 스킬 실행
시작하기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 }}'