wads.install_skills
Install wads Claude Code skills to ~/.claude/skills/ for global availability.
Skills shipped with wads: - setup-py-project: AI-assisted Python project creation - wads-migrate: Migration to modern wads/uv setup
- Usage:
wads-install-skills # Install all skills (symlinks by default) wads-install-skills –list # List available skills wads-install-skills –force # Overwrite existing skills wads-install-skills –copy # Copy files instead of symlinking
- wads.install_skills.install_skills(*, force: bool = False, copy: bool = False, verbose: bool = True) list[str][source]
Install wads Claude Code skills to ~/.claude/skills/.
By default, creates symlinks so skills stay in sync with the wads package. Use
copy=Trueto copy files instead (not recommended — updates won’t propagate, and the skills depend on wads being installed anyway).- Parameters:
force – If True, overwrite existing skill entries.
copy – If True, copy files instead of creating symlinks.
verbose – If True, print progress.
- Returns:
List of installed skill names.