skills-manage

作者 iamzhihuix已验证

Desktop app to manage AI coding agent skills across Claude Code, Cursor, Gemini CLI, Codex, and 20+ platforms from one place.

2,186
Stars
203
Forks
TypeScript
语言
2026/8/23
添加时间

⚠️ 第三方软件声明

本 Skill 为第三方开源软件,独立托管于 GitHub。SkillTip 仅为信息目录,不控制或维护底层仓库。所显示的安全检查为自动化且范围有限,安装前请自行审查源码。

阅读服务条款

安装

添加到你的 Claude Code skills 目录:

# Add to your Claude Code skills
git clone https://github.com/iamzhihuix/skills-manage

快速入门

使用 skills-manage 等 Skills 的指南。

安全报告

已验证

上次扫描:—

{
  "status": "PASSED",
  "issues": []
}

README.md

skills-manage

skills-manage is a Tauri desktop app for managing AI coding agent skills across multiple platforms from one place.

中文文档

Disclaimer

skills-manage is an independent, unofficial desktop application for managing local skill directories and importing public skill metadata. It is not affiliated with, endorsed by, or sponsored by Anthropic, OpenAI, GitHub, MiniMax, or any other supported platform, publisher, or trademark owner.

Overview

skills-manage follows the Agent Skills open pattern and uses ~/.agents/skills/ as the canonical central directory. Skills can then be installed to individual platforms through symlinks, so one source of truth can drive multiple AI coding tools.

Highlights

  • Central skill library plus per-platform install and uninstall flows.

  • Claude Code can surface native skills and read-only marketplace plugin skills in one platform view.

  • Full skill detail view with Markdown preview, raw source view, and AI explanation generation.

  • Collections for organizing skills and batch-installing them to platforms.

  • Discover scan for project-level skill libraries, including an Obsidian sidebar category for vault skills (.skills/, .agents/skills/, .claude/skills/).

  • Marketplace browsing and GitHub repository import with authenticated requests and retry fallback.

  • Fast search for large skill libraries with deferred queries, lazy indexing, and virtualization.

  • Bilingual UI, Catppuccin themes, accent colors, onboarding, and responsive navigation.

Screenshots

Central skills and platform installs

Central skills library view

Review installed skills on a specific platform

Platform skill view

Discover local project skill libraries

Discover project skill libraries

Browse marketplace publishers and skills

Marketplace view

Import skills from a GitHub repository

GitHub repository import wizard

Organize reusable collections

Skill collections view

Download

macOS Unsigned Build

The current public macOS build is not notarized. If macOS shows a warning such as:

macOS damaged app warning

  • "skills-manage" is damaged and can't be opened

  • "skills-manage" cannot be opened because Apple could not verify it

the app is usually not actually corrupted; it is being blocked by Gatekeeper quarantine on an unsigned build.

After moving the app to /Applications, run:

xattr -dr com.apple.quarantine "/Applications/skills-manage.app"

Then launch the app again from Finder. If your app is stored somewhere else, replace the path with the actual .app path.

Supported Platforms

Category Platform Skills Directory

Coding Claude Code ~/.claude/skills/

Coding Codex CLI ~/.agents/skills/

Coding Cursor ~/.cursor/skills/

Coding Gemini CLI ~/.gemini/skills/

Coding Trae ~/.trae/skills/

Coding Factory Droid ~/.factory/skills/

Coding Junie ~/.junie/skills/

Coding Qwen ~/.qwen/skills/

Coding Trae CN ~/.trae-cn/skills/

Coding Windsurf ~/.windsurf/skills/

Coding Qoder ~/.qoder/skills/

Coding Augment ~/.augment/skills/

Coding OpenCode ~/.opencode/skills/

Coding KiloCode ~/.kilocode/skills/

Coding OB1 ~/.ob1/skills/

Coding Amp ~/.amp/skills/

Coding Kiro ~/.kiro/skills/

Coding CodeBuddy ~/.codebuddy/skills/

Coding Hermes ~/.hermes/skills/

Coding Copilot ~/.copilot/skills/

Coding Aider ~/.aider/skills/

Lobster OpenClaw (开爪) ~/.openclaw/skills/

Lobster QClaw (千爪) ~/.qclaw/skills/

Lobster EasyClaw (简爪) ~/.easyclaw/skills/

Lobster EasyClaw V2 ~/.easyclaw-20260322-01/skills/

Lobster AutoClaw ~/.openclaw-autoclaw/skills/

Lobster WorkBuddy (打工搭子) ~/.workbuddy/skills-marketplace/skills/

Central Central Skills ~/.agents/skills/

Note: Claude Code also surfaces marketplace plugin directories under ~/.claude/plugins/marketplaces/* as read-only rows in the Claude view. Those entries are display-only and are not managed like native skills in ~/.claude/skills/.

Custom platforms can be added through Settings.

Privacy & Security

  • Local-first storage — metadata, collections, scan results, settings, and cached AI explanations stay in ~/.skillsmanage/db.sqlite or the local skill directories you manage.

  • No telemetry — the app does not include analytics, crash reporting, or usage tracking.

  • Network access is feature-driven — outbound requests only happen when you explicitly use marketplace sync/download, GitHub import, or AI explanation generation.

  • Credentials are stored locally — GitHub PAT and AI API keys are kept in the local SQLite settings table and are not encrypted at rest by the app.

  • Never post real secrets in issues, pull requests, screenshots, or logs.

Tech Stack

Layer Technology

Desktop framework Tauri v2

Frontend React 19, TypeScript, Tailwind CSS 4

UI components shadcn/ui, Lucide icons

State management Zustand

Markdown react-markdown

i18n react-i18next, i18next-browser-languagedetector

Theming Catppuccin 4-flavor palette

Backend Rust (serde, sqlx, chrono, uuid)

Database SQLite via sqlx (WAL mode)

Routing react-router-dom v7

Development

Prerequisites

Install Dependencies

pnpm install

Run in Development

pnpm tauri dev

The Vite dev server runs on port 24200.

Validation

pnpm test
pnpm typecheck
pnpm lint
cd src-tauri && cargo test
cd src-tauri && cargo clippy -- -D warnings

Project Structure

skills-manage/
├── src/                        # React frontend
│   ├── components/             # UI components
│   ├── i18n/                   # Locale files and i18n setup
│   ├── lib/                    # Frontend helpers
│   ├── pages/                  # Route views
│   ├── stores/                 # Zustand stores
│   ├── test/                   # Vitest + RTL tests
│   └── types/                  # Shared TypeScript types
├── src-tauri/                  # Rust backend
│   └── src/
│       ├── commands/           # Tauri IPC handlers
│       ├── db.rs               # SQLite schema, migrations, queries
│       ├── lib.rs              # Tauri app setup
│       └── main.rs             # Desktop entry point
├── public/                     # Static assets
├── CHANGELOG.md                # English changelog
├── CHANGELOG.zh.md             # Chinese changelog
└── release-notes/              # GitHub release notes

Database

The SQLite database lives at ~/.skillsmanage/db.sqlite and is initialized automatically on first launch.

Changelog

Contributing

See CONTRIBUTING.md for development setup, validation commands, and pull request expectations.

Community

Join the Discord community: https://discord.gg/fuGURex5fV

Security

See SECURITY.md for vulnerability reporting and data-handling notes.

Star History

Star History Chart

License

This project is licensed under the Apache License 2.0. See LICENSE.

常见问题

What is skills-manage?

skills-manage is an open-source ai agents skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by iamzhihuix. Desktop app to manage AI coding agent skills across Claude Code, Cursor, Gemini CLI, Codex, and 20+ platforms from one place. It has 2,186 GitHub stars.

Is skills-manage safe to use?

Yes. skills-manage passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install skills-manage?

Clone the repository with "git clone https://github.com/iamzhihuix/skills-manage" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is skills-manage written in?

skills-manage is primarily written in TypeScript. It is open-source under iamzhihuix on GitHub, so you can review or fork the full source.

Are there alternatives to skills-manage?

Yes. SkillsLLM lists many other AI Agents skills you can browse and compare side by side. Open the AI Agents category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh skills-manage against similar tools.

评论 (0)

暂无评论,成为第一个分享想法的人!

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情

claude-code

by anthropics

Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster by executing routine tasks, explaining complex code, and handling git workflows - all through natural language commands.

120,03119,897Shell
AI 智能体
查看详情

开发者还喜欢

基于喜欢此 Skill 的开发者投票和收藏

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP 服务器apisai-tools
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情