Sharing Skills — partager des compétences Sharing Skills, ImagePrepMCP, community, partager des compétences, ide skills, outils d'ia, flux de travail de git, confirmation de modifications, envoi de demandes d'extraction, écriture de compétences

v2.1.0

À propos de ce Skill

Parfait pour les Agents d'IA Collaboratifs ayant besoin d'un développement de compétences impulsé par la communauté et d'un contrôle de version via des flux de travail Git. Le partage de compétences est le processus de contribution de compétences locales au référentiel principal

Fonctionnalités

Flux de travail de branche à demande d'extraction
Édition et création de compétences
Confirmation et envoi de modifications
Suivi des directives d'écriture de compétences
Intégration avec le référentiel principal

# Core Topics

Blurjp Blurjp
[10]
[3]
Updated: 3/12/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reference-Only Page Review Score: 8/11

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

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

Parfait pour les Agents d'IA Collaboratifs ayant besoin d'un développement de compétences impulsé par la communauté et d'un contrôle de version via des flux de travail Git. Le partage de compétences est le processus de contribution de compétences locales au référentiel principal

Pourquoi utiliser cette compétence

Permet aux agents de contribuer du code bien testé et documenté aux référentiels upstream en utilisant les protocoles Git, améliorant les connaissances de la communauté avec des compétences et des techniques largement applicables, en suivant les directives de rédaction et les normes métadonnées établies.

Meilleur pour

Parfait pour les Agents d'IA Collaboratifs ayant besoin d'un développement de compétences impulsé par la communauté et d'un contrôle de version via des flux de travail Git.

Cas d'utilisation exploitables for Sharing Skills

Contribuer des compétences largement applicables aux référentiels de la communauté
Partager des modèles de code bien testés et documentés avec d'autres développeurs
Créer des demandes d'extraction pour des mises à jour de référentiels upstream

! Sécurité et Limitations

  • Nécessite le système de contrôle de version Git
  • Nécessite l'adhésion aux directives de compétences/méta/compétences d'écriture
  • Exclut les informations spécifiques au projet, expérimentales ou sensibles

Why this page is reference-only

  • - Current locale does not satisfy the locale-governance contract.
  • - The underlying skill quality score is below the review floor.

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs 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 & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is Sharing Skills?

Parfait pour les Agents d'IA Collaboratifs ayant besoin d'un développement de compétences impulsé par la communauté et d'un contrôle de version via des flux de travail Git. Le partage de compétences est le processus de contribution de compétences locales au référentiel principal

How do I install Sharing Skills?

Run the command: npx killer-skills add Blurjp/ImagePrepMCP/Sharing Skills. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for Sharing Skills?

Key use cases include: Contribuer des compétences largement applicables aux référentiels de la communauté, Partager des modèles de code bien testés et documentés avec d'autres développeurs, Créer des demandes d'extraction pour des mises à jour de référentiels upstream.

Which IDEs are compatible with Sharing Skills?

This skill is compatible with 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. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for Sharing Skills?

Nécessite le système de contrôle de version Git. Nécessite l'adhésion aux directives de compétences/méta/compétences d'écriture. Exclut les informations spécifiques au projet, expérimentales ou sensibles.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add Blurjp/ImagePrepMCP/Sharing Skills. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use Sharing Skills immediately in the current project.

! Reference-Only Mode

This page remains useful for installation and reference, but Killer-Skills no longer treats it as a primary indexable landing page. Read the review above before relying on the upstream repository instructions.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

Sharing Skills

Découvrez comment partager des compétences dans votre référentiel d'outils d'IA de manière efficace

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
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

Compétences associées

Looking for an alternative to Sharing Skills or another community skill for your workflow? Explore these related open-source skills.

Voir tout

openclaw-release-maintainer

Logo of openclaw
openclaw

Resume localise : 🦞 # OpenClaw Release Maintainer Use this skill for release and publish-time workflow. It covers ai, assistant, crustacean workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

widget-generator

Logo of f
f

Resume localise : Generate customizable widget plugins for the prompts.chat feed system # Widget Generator Skill This skill guides creation of widget plugins for prompts.chat . It covers ai, artificial-intelligence, awesome-list workflows. This AI agent skill supports Claude Code, Cursor, and

flags

Logo of vercel
vercel

Resume localise : The React Framework # Feature Flags Use this skill when adding or changing framework feature flags in Next.js internals. It covers blog, browser, compiler workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

138.4k
0
Navigateur

pr-review

Logo of pytorch
pytorch

Resume localise : Usage Modes No Argument If the user invokes /pr-review with no arguments, do not perform a review . It covers autograd, deep-learning, gpu workflows. This AI agent skill supports Claude Code, Cursor, and Windsurf workflows.

98.6k
0
Développeur