Sharing Skills — AI工具技能共享 Sharing Skills, ImagePrepMCP, community, AI工具技能共享, ide skills, Git工作流, 技能重用, 开发效率优化, 协作能力提升, PR审查, Claude Code

v2.1.0

关于此技能

适合需要社区驱动的技能开发和通过 Git 工作流实现版本控制的协作 AI 代理。 AI工具技能共享是指将本地分支的技能贡献回上游仓库的过程

功能特性

支持Git工作流
实现技能的共享和重用
提高开发效率和协作能力
遵循技能元数据和文档指南
支持PR审查和测试

# 核心主题

Blurjp Blurjp
[10]
[3]
更新于: 3/12/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 6/11

This page remains useful for operators, but Killer-Skills treats it as reference material instead of a primary organic landing page.

Concrete use-case guidance Explicit limitations and caution
Review Score
6/11
Quality Score
41
Canonical Locale
en
Detected Body Locale
en

适合需要社区驱动的技能开发和通过 Git 工作流实现版本控制的协作 AI 代理。 AI工具技能共享是指将本地分支的技能贡献回上游仓库的过程

核心价值

赋予代理为上游仓库做出贡献,使用 Git 协议,提供经过良好测试和文档化的代码,增强社区知识,遵循既定的写作指南和元标准。

适用 Agent 类型

适合需要社区驱动的技能开发和通过 Git 工作流实现版本控制的协作 AI 代理。

赋予的主要能力 · Sharing Skills

为社区仓库做出广泛适用的技能贡献
与其他开发人员分享经过良好测试和文档化的代码模式
为上游仓库更新创建拉取请求

! 使用限制与门槛

  • 需要 Git 版本控制系统
  • 需要遵守技能/元/写作技能指南
  • 排除项目特定、实验性或敏感信息

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.
  • - The page lacks a strong recommendation layer.
  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.

实验室 Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

常见问题与安装步骤

以下问题与步骤与页面结构化数据保持一致,便于搜索引擎理解页面内容。

? FAQ

Sharing Skills 是什么?

适合需要社区驱动的技能开发和通过 Git 工作流实现版本控制的协作 AI 代理。 AI工具技能共享是指将本地分支的技能贡献回上游仓库的过程

如何安装 Sharing Skills?

运行命令:npx killer-skills add Blurjp/ImagePrepMCP/Sharing Skills。支持 Cursor、Windsurf、VS Code、Claude Code 等 19+ IDE/Agent。

Sharing Skills 适用于哪些场景?

典型场景包括:为社区仓库做出广泛适用的技能贡献、与其他开发人员分享经过良好测试和文档化的代码模式、为上游仓库更新创建拉取请求。

Sharing Skills 支持哪些 IDE 或 Agent?

该技能兼容 Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer。可使用 Killer-Skills CLI 一条命令通用安装。

Sharing Skills 有哪些限制?

需要 Git 版本控制系统;需要遵守技能/元/写作技能指南;排除项目特定、实验性或敏感信息。

安装步骤

  1. 1. 打开终端

    在你的项目目录中打开终端或命令行。

  2. 2. 执行安装命令

    运行:npx killer-skills add Blurjp/ImagePrepMCP/Sharing Skills。CLI 会自动识别 IDE 或 AI Agent 并完成配置。

  3. 3. 开始使用技能

    Sharing Skills 已启用,可立即在当前项目中调用。

! 参考页模式

此页面仍可作为安装与查阅参考,但 Killer-Skills 不再把它视为主要可索引落地页。请优先阅读上方评审结论,再决定是否继续查看上游仓库说明。

Imported Repository Instructions

The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.

Supporting Evidence

Sharing Skills

安装 Sharing Skills,这是一款面向AI agent workflows and automation的 AI Agent Skill。支持 Claude Code、Cursor、Windsurf,一键安装。

SKILL.md
Readonly
Imported Repository Instructions
The section below is supporting source material from the upstream repository. Use the Killer-Skills review above as the primary decision layer.
Supporting Evidence

Sharing Skills

Overview

Contribute skills from your local branch back to the upstream repository.

Workflow: Branch → Edit/Create skill → Commit → Push → PR

When to Share

Share when:

  • Skill applies broadly (not project-specific)
  • Pattern/technique others would benefit from
  • Well-tested and documented
  • Follows skills/meta/writing-skills guidelines

Keep personal when:

  • Project-specific or organization-specific
  • Experimental or unstable
  • Contains sensitive information
  • Too narrow/niche for general use

Prerequisites

  • gh CLI installed and authenticated
  • Working directory is ~/.config/superpowers/skills/ (your local clone)
  • Skill has been tested (see skills/meta/writing-skills for TDD process)

Sharing Workflow

1. Ensure You're on Main and Synced

bash
1cd ~/.config/superpowers/skills/ 2git checkout main 3git pull upstream main 4git push origin main # Push to your fork

2. Create Feature Branch

bash
1# Branch name: add-skillname-skill 2skill_name="your-skill-name" 3git checkout -b "add-${skill_name}-skill"

3. Create or Edit Skill

bash
1# Work on your skill in skills/ 2# Create new skill or edit existing one 3# Skill should be in skills/category/skill-name/SKILL.md

4. Commit Changes

bash
1# Add and commit 2git add skills/your-skill-name/ 3git commit -m "Add ${skill_name} skill 4 5$(cat <<'EOF' 6Brief description of what this skill does and why it's useful. 7 8Tested with: [describe testing approach] 9EOF 10)"

5. Push to Your Fork

bash
1git push -u origin "add-${skill_name}-skill"

6. Create Pull Request

bash
1# Create PR to upstream using gh CLI 2gh pr create \ 3 --repo upstream-org/upstream-repo \ 4 --title "Add ${skill_name} skill" \ 5 --body "$(cat <<'EOF' 6## Summary 7Brief description of the skill and what problem it solves. 8 9## Testing 10Describe how you tested this skill (pressure scenarios, baseline tests, etc.). 11 12## Context 13Any additional context about why this skill is needed and how it should be used. 14EOF 15)"

Complete Example

Here's a complete example of sharing a skill called "async-patterns":

bash
1# 1. Sync with upstream 2cd ~/.config/superpowers/skills/ 3git checkout main 4git pull upstream main 5git push origin main 6 7# 2. Create branch 8git checkout -b "add-async-patterns-skill" 9 10# 3. Create/edit the skill 11# (Work on skills/async-patterns/SKILL.md) 12 13# 4. Commit 14git add skills/async-patterns/ 15git commit -m "Add async-patterns skill 16 17Patterns for handling asynchronous operations in tests and application code. 18 19Tested with: Multiple pressure scenarios testing agent compliance." 20 21# 5. Push 22git push -u origin "add-async-patterns-skill" 23 24# 6. Create PR 25gh pr create \ 26 --repo upstream-org/upstream-repo \ 27 --title "Add async-patterns skill" \ 28 --body "## Summary 29Patterns for handling asynchronous operations correctly in tests and application code. 30 31## Testing 32Tested with multiple application scenarios. Agents successfully apply patterns to new code. 33 34## Context 35Addresses common async pitfalls like race conditions, improper error handling, and timing issues."

After PR is Merged

Once your PR is merged:

  1. Sync your local main branch:
bash
1cd ~/.config/superpowers/skills/ 2git checkout main 3git pull upstream main 4git push origin main
  1. Delete the feature branch:
bash
1git branch -d "add-${skill_name}-skill" 2git push origin --delete "add-${skill_name}-skill"

Troubleshooting

"gh: command not found"

"Permission denied (publickey)"

"Skill already exists"

  • You're creating a modified version
  • Consider different skill name or coordinate with the skill's maintainer

PR merge conflicts

  • Rebase on latest upstream: git fetch upstream && git rebase upstream/main
  • Resolve conflicts
  • Force push: git push -f origin your-branch

Multi-Skill Contributions

Do NOT batch multiple skills in one PR.

Each skill should:

  • Have its own feature branch
  • Have its own PR
  • Be independently reviewable

Why? Individual skills can be reviewed, iterated, and merged independently.

  • skills/meta/writing-skills - How to create well-tested skills

相关技能

寻找 Sharing Skills 的替代方案 (Alternative) 或可搭配使用的同类 community Skill?探索以下相关开源技能。

查看全部

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

为prompts.chat的信息反馈系统生成可定制的插件小部件

149.6k
0
AI

flags

Logo of vercel
vercel

React 框架

138.4k
0
浏览器

pr-review

Logo of pytorch
pytorch

Python中具有强大GPU加速的张量和动态神经网络

98.6k
0
开发者工具