https://github.com/fusedio/skills
Fused skills and plugins for AIs like Claude
https://github.com/fusedio/skills
claude-skill codex-skill data data-science fused python skills
Last synced: 13 days ago
JSON representation
Fused skills and plugins for AIs like Claude
- Host: GitHub
- URL: https://github.com/fusedio/skills
- Owner: fusedio
- Created: 2026-05-12T23:12:40.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2026-05-28T13:30:08.000Z (17 days ago)
- Last Synced: 2026-05-28T14:20:33.598Z (17 days ago)
- Topics: claude-skill, codex-skill, data, data-science, fused, python, skills
- Language: Python
- Homepage: https://docs.fused.io
- Size: 130 KB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Fused Skills
Install the Fused plugin for Claude Code:
```sh
uv tool install fused
fused claude plugin add
```
Then open a new Claude Code session. `fused` is now permanently on your PATH — Claude can find it in any future session without reinstalling.
If `uv` is not found, install it first, then re-run the commands above:
- **macOS / Linux:** `curl -LsSf https://astral.sh/uv/install.sh | sh` (restart terminal after)
- **Windows:** `powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"` (restart terminal after)
## Reinstall / update
```sh
uv tool install fused --upgrade
fused claude plugin add
```
## Alternative: pip
If Python 3.10+ is already installed and you prefer not to use `uv`:
```sh
pip install --upgrade 'fused>=2'
fused claude plugin add
```
> **Python 3.9 note:** `pip install fused` on Python 3.9 silently installs `fused 1.x`, which has no `fused` command. Pinning `>=2` makes pip fail loudly instead. Use `uv tool install fused` above to avoid this entirely.
### Windows (pip path)
If `fused` is not found after `pip install`, the Scripts directory is likely missing from your PATH. Run:
```powershell
python -m site --user-scripts
```
This prints the exact Scripts path (e.g. `C:\Users\You\AppData\Roaming\Python\Python311\Scripts`). Add it to your `PATH` (search "environment variables" in the Start menu → edit the `Path` user variable), then open a new terminal and retry `fused claude plugin add`.
## Manual installation
### Claude Code
To install the `fused` plugin:
```sh
claude plugin marketplace add fusedio/claude-plugins
claude plugin install fused@fused-marketplace
```
To update the `fused` plugin:
```sh
claude plugin update fused@fused-marketplace
```
To remove the `fused` plugin:
```sh
claude plugin remove fused
# Or, for the entire marketplace:
claude plugin marketplace remove fused-marketplace
```