A local web application to manage Claude Code skills and plugins.
- View all skills from
~/.claude/skills/and installed plugins - Enable/disable skills individually or by plugin group
- Delete skills (user skills only)
- Upload .md skill files via drag-and-drop or file picker
- Install skills from GitHub repositories
- Multi-language support - English and Chinese with auto-detection
Download the binary for your platform from Releases.
Or build from source:
make build./skill-routerThis starts the server and opens your browser to http://localhost:9527
Click the + Add button to:
- Upload a file - Drag and drop or select a
.mdskill file - Install from GitHub - Enter a repository URL to install skills from
skills/or.claude/skills/
The interface automatically detects your browser language. Click the language toggle (EN/中) in the header to switch manually.
# Terminal 1: Run Go backend
go run .
# Terminal 2: Run Vue dev server
cd web && npm run devThen open http://localhost:5173 for hot-reload development.
.
├── main.go # Entry point, HTTP server
├── internal/
│ ├── handler/ # HTTP handlers
│ ├── service/ # Business logic
│ └── config/ # Configuration management
├── web/ # Vue 3 frontend
│ ├── src/
│ │ ├── components/ # Vue components
│ │ ├── i18n/ # Internationalization
│ │ └── api/ # API client
│ └── dist/ # Built frontend (embedded)
└── docs/
└── images/ # Screenshots
MIT

