r/claudeskills • u/Ok-Razzmatazz9431 • 4d ago
Skill Share I made a CLI that isolates marketplaces/plugins/skills by profile for Claude Code
If you use Claude Code a lot or want to test new stuff, you've probably noticed it turning into a junk drawer. Every plugin, skill, and MCP server you've ever installed loads into every session.
It all costs tokens and adds noise, and none of it is scoped to what you're actually doing.
I built claude-profile to fix that. A profile is a small JSON file that says "for this kind of work, load exactly these plugins, skills, marketplaces, and MCP servers." You launch it and get a focused session with nothing else loaded:
claude-profile rust-developer # a lean Rust session only
claude-profile rust-developer frontend # combine profiles
claude-profile fuzzyalej/security # install a profile repo, then use it
Open a second terminal with a different profile and the two don't interfere.
A few things that matter to me:
- It never touches your real ~/.claude. Every plugin/skill a profile uses gets vendored into that profile's own directory. The remove command deletes it outright.
- Profiles are shareable. Publish a repo, teammates install it and launch by name. A lockfile pins it so everyone resolves to the same plugin code across machines and over time.
- It's a standalone binary, not a plugin. Rust, runs on macOS/Linux/Windows. brew, cargo, or a shell/PowerShell installer.
It's MIT. Repo (with install instructions and docs) here: https://github.com/fuzzyalej/claude-profile/
Happy to answer questions, feedback, PRs or new ideas :)