Main
先统一技能落盘目录:定义唯一“真实来源”,再让工具按这个来源同步到各处。
用 CLI 做自动化:把同步检查放进 CI 或定时任务,避免依赖人工更新。
保持技能元数据一致:名称、版本与用法说明应与内容一起迁移。
倾向更小、更可测试的 skills:管理器能帮分发,但小技能更不容易跨工具碎掉。
README (excerpt)
Skills Manager
One app to manage AI agent skills across all your coding tools.
中文说明 · @JayTL00 on X · Buy me a coffee
Install Skills — Marketplace

Global Workspace

Agent Workspace

Project Workspace

Settings

Features
- Unified skill library — Install skills from Git repos, local folders,
.zip/.skillarchives, or the skills.sh marketplace. Everything goes into one central repo, which defaults to~/.skills-managerand can be customized in Settings. - Marketplace + AI search — Browse popular skills from the marketplace, run keyword search, or enable SkillsMP AI search with your API key.
- Presets — Group skills into named presets. In any workspace, click a preset pill to instantly activate or deactivate all its skills for the current agent scope. The sidebar lists all presets for quick access.
- Global Workspace — Each agent gets its own page listing every skill in its global folder — including ones installed outside Skills Manager — so the view always reflects what the agent actually sees. Add or remove skills per agent, or use the All Agents overview to manage every installed agent at once.
Source-backed notes
- README 包含依赖安装
npm install,并给出 Rust CLI 安装命令(cargo install --path src-tauri --bin skills-manager-cli ...)。 - 仓库为 MIT 许可证且维护活跃(已通过 GitHub API 复核)。
- 仓库语言同时包含 Rust 与 TypeScript(已通过 GitHub languages 复核)。
FAQ
- 有 CLI 吗?:有:README 给出在
src-tauri目录下用 Cargo 安装skills-manager-cli的方式。 - 必须装 Rust 吗?:仅在你要构建/安装 CLI 时需要;桌面端基于 Tauri,可能也需要相关工具链。
- 主要解决什么?:把大量 skills 进行组织与同步,降低跨机器/项目的维护成本(见 README 说明)。