Skip to content

skillshub clean

The clean command provides several subcommands for removing skillshub state from your system, from clearing caches to a full uninstall.

Clear cached tap registry data. Forces a re-fetch on the next tap update:

Terminal window
skillshub clean cache

Remove all skillshub-managed symlinks from agent directories:

Terminal window
skillshub clean links

Also delete all installed skills:

Terminal window
skillshub clean links --remove-skills

Completely remove all skillshub state — a full uninstall/purge. This removes all symlinks from every detected agent directory, then deletes the entire ~/.skillshub/ directory (including all installed skills and the database).

Terminal window
skillshub clean all

Without --confirm, it prints a summary of what will be removed and prompts you to type yes to proceed.

Skip the interactive confirmation (useful for scripts/CI):

Terminal window
skillshub clean all --confirm

Clear the cache:

Terminal window
skillshub clean cache
Cache cleared.

Remove all symlinks:

Terminal window
skillshub clean links
Removed 8 symlinks from 3 agent directories.

Full purge:

Terminal window
skillshub clean all
This will remove:
- 8 symlinks across 3 agents (claude, codex, cursor)
- 5 installed skills
- ~/.skillshub/ directory
Type "yes" to confirm: yes
Cleaned up. skillshub has been fully removed.