# shareAI-skills **Repository Path**: github_speed/shareAI-skills ## Basic Information - **Project Name**: shareAI-skills - **Description**: from. https://github.com/shareAI-lab/shareAI-skills.git - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-03-26 - **Last Updated**: 2026-03-26 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # shareAI Skills 扩展 AI Agent 能力的知识包。 [English](./README.md) > 兼容 **[Kode CLI](https://github.com/shareAI-lab/Kode)**、**Claude Code**、**Cursor**,以及任何支持 [Agent Skills Spec](https://github.com/anthropics/agent-skills) 的 Agent。 ## 安装 ### Kode CLI(推荐) ```bash kode plugins install https://github.com/shareAI-lab/shareAI-skills ``` ### Claude Code ```bash claude plugins install https://github.com/shareAI-lab/shareAI-skills ``` ### Cursor 将 `skills/` 目录复制到你的 Cursor skills 文件夹。 ### 其他 Agent 当 Agent 需要领域专业知识时,按需加载 `SKILL.md` 文件。 ## 可用 Skills | Skill | 描述 | |-------|------| | [skill-judge](./skills/skill-judge/) | 8维度评估 Agent Skill 设计质量(120分制) | | [media-writer](./skills/media-writer/) | 适配各平台内容:微信、HN、Reddit、Medium、Twitter、Dev.to、LinkedIn | | [agent-builder](./skills/agent-builder/) | 为任何领域设计和构建 AI Agent | | [vibe-coding](./skills/vibe-coding/) | 氛围驱动开发,极简规格 | ## 如何创建好的 Skill 创建真正有效的 Skill 是一门艺术。我们分析了 17 个 Anthropic 官方 Skill,提炼出核心原则: **核心公式:** ``` 好 Skill = 专家独有的知识 - Claude 已有的知识 ``` 阅读完整指南:**[How to Create Great Agent Skills](./docs/how-to-create-great-agent-skill.md)**(英文教学文档) 使用 [skill-judge](./skills/skill-judge/) 对你的 Skill 进行 8 维度结构化评分: | 维度 | 分值 | 关注点 | |------|------|--------| | 知识增量 | 20 | 专家独有知识 vs Claude 已知内容 | | 思维方式 + 领域流程 | 15 | 思考框架 + Claude 不知道的领域特定流程 | | 反模式质量 | 15 | 具体的 NEVER 清单及非显而易见的原因 | | 规范合规(尤其是 description) | 15 | description 必须包含 WHAT、WHEN、KEYWORDS | | 渐进式披露 | 15 | 内容分层,加载触发机制 | | 自由度校准 | 15 | 具体程度与任务脆弱性匹配 | | 模式识别 | 10 | 遵循已验证的 Skill 设计模式 | | 实用性 | 15 | 决策树、可运行示例、边缘情况覆盖 | ## 什么是 Skills? Skills 是模块化的知识包,为 AI Agent 按需提供领域专业知识。它们遵循 [Agent Skills Spec](https://github.com/anthropics/agent-skills)。 ## Skill 结构 ``` skill-name/ ├── SKILL.md # 核心指令 (必需) ├── references/ # 详细文档 (可选) ├── scripts/ # 可执行代码 (可选) └── assets/ # 模板和资源 (可选) ``` ## 理念 > **Skills 是知识,不是代码。** Skill 不是告诉 Agent 按步骤做什么,而是给 Agent 知识让它自己想出该做什么。模型很聪明——你的工作是为它提供信息,而不是限制它。 ## 贡献 欢迎贡献!添加新 skill: 1. 在 `skills/` 下创建目录 2. 添加带 YAML frontmatter(name, description)的 `SKILL.md` 3. 包含必要的 references、scripts 或 assets 4. 提交 PR ## 相关 | 仓库 | 用途 | |------|------| | [Kode](https://github.com/shareAI-lab/Kode) | 全功能开源 Agent CLI | | [learn-claude-code](https://github.com/shareAI-lab/learn-claude-code) | 从零学习如何构建 AI Agent | | [Agent Skills Spec](https://github.com/anthropics/agent-skills) | 官方规范 | ## License Apache-2.0