开源 AI Skills 仓库 Open Source AI Skills Repository

提升 AI 编程效率的
技能工具集合
Skill Collection for
AI Programming Efficiency

Skillix Hub 收集了高质量的 AI Skills,帮助你的 AI 助手更好地完成特定任务。支持 Cursor、Claude、Copilot 等多种 AI 编程助手。 Skillix Hub collects high-quality AI Skills to help your AI assistant better complete specific tasks. Supports Cursor, Claude, Copilot and more.

可用技能 Available Skills

精选高质量的 AI Skills,覆盖 API 文档、代码审查、长期记忆等多个领域 Curated high-quality AI Skills covering API documentation, code review, long-term memory and more

{{ skills.length }} 个技能 {{ skills.length }} Skills

{{ skill.name }}

{{ skill.description.zh }} {{ skill.description.en }}

{{ tag.zh }} {{ tag.en }}

更多技能 More Skills

持续更新中,欢迎贡献你的技能 Coming soon, contributions welcome

安装指南 Installation Guide

两种方式安装技能,按需选择 Two installation methods, choose as needed

方式一:通过 Cursor 自然语言安装(推荐) Method 1: Install via Cursor Natural Language (Recommended)

直接在 Cursor 中用自然语言告诉 AI 安装 Simply tell Cursor AI in natural language

# 个人级安装(所有项目可用)# Global Installation (Available for all projects)
帮我从 https://github.com/shetengteng/skillix-hub 安装 memory skill,我希望所有项目都能使用
Please install memory skill from https://github.com/shetengteng/skillix-hub, I want it available for all my projects
# 项目级安装(仅当前项目可用)# Project Installation (Available for current project only)
帮我从 https://github.com/shetengteng/skillix-hub 安装 memory skill 到当前项目
Please install memory skill from https://github.com/shetengteng/skillix-hub to current project
# 更新技能# Update Skill
帮我从 https://github.com/shetengteng/skillix-hub 更新 memory skill
Please update memory skill from https://github.com/shetengteng/skillix-hub

方式二:手动命令行安装 Method 2: Manual Command Line Installation

个人级安装 Global Installation

所有项目可用 Available for all projects

# Clone repository
git clone https://github.com/shetengteng/skillix-hub.git
# Copy Memory Skill
cp -r skillix-hub/skills/memory ~/.cursor/skills/
# Copy Swagger API Reader
cp -r skillix-hub/skills/swagger-api-reader ~/.cursor/skills/

项目级安装 Project Installation

仅当前项目可用 Available for current project only

# In project root
mkdir -p .cursor/skills
cp -r skillix-hub/skills/memory .cursor/skills/
cp -r skillix-hub/skills/swagger-api-reader .cursor/skills/

安装后记得运行 pip install -r scripts/requirements.txt 安装依赖 After installation, run pip install -r scripts/requirements.txt to install dependencies

贡献你的技能 Contribute Your Skills

Skillix Hub 是一个开源项目,欢迎提交 PR 添加新的技能 Skillix Hub is an open source project, PRs are welcome to add new skills

Skill 结构规范 Skill Structure

skill-name/
├── SKILL.md # 必需:主指令文件Required: Main instruction file
├── scripts/ # 可选:执行脚本Optional: Scripts
│ ├── main.py
│ └── requirements.txt
└── templates/ # 可选:模板文件Optional: Templates