Partager des compétences via PR

VérifiéSûr

Guide pour contribuer des compétences utiles en général au dépôt upstream via un workflow de branche et de pull request. Utile lorsque vous avez développé une compétence bien testée et générique, conforme aux directives de rédaction, et que vous souhaitez la partager avec la communauté.

Spar Skills Guide Bot
DeveloppementIntermédiaire
5002/06/2026
Claude Code
#contributing#pull-request#git-workflow#github-cli

Recommandé pour

Notre avis

Ce skill automatise le workflow pour contribuer un skill au dépôt upstream en créant une branche, en commettant, en poussant et en ouvrant une pull request via GitHub CLI.

Points forts

  • Fournit un processus clair et étape par étape pour les contributeurs.
  • Intègre l'outil gh CLI pour créer facilement des pull requests.
  • Inclut les instructions de nettoyage après la fusion de la PR.
  • Propose des solutions aux problèmes courants comme l'authentification.

Limites

  • Nécessite que gh CLI soit installé et authentifié.
  • Suppose que l'utilisateur dispose d'un fork du dépôt upstream.
  • Les commandes sont spécifiques à bash, limitant l'utilisation sur Windows sans adaptation.
Quand l'utiliser

Utilisez ce skill lorsque vous avez développé un skill général et bien testé que vous souhaitez partager upstream en suivant les directives de contribution.

Quand l'éviter

Ne l'utilisez pas pour des skills spécifiques à un projet, expérimentaux, ou contenant des informations sensibles.

Analyse de sécurité

Sûr
Score qualité90/100

The skill instructs on standard Git and GitHub CLI workflows for contributing via branches and PRs. No destructive commands, data exfiltration, or obfuscation. It is purely instructional.

Aucun point d'attention détecté

Exemples

Share a skill upstream
I have a new skill 'async-patterns' in my local clone of the skills repository. Walk me through contributing it to the upstream repository via a pull request.
Create PR for existing skill
I need to create a pull request for my 'test-patterns' skill. Help me with the git workflow and PR creation using gh CLI.

name: Sharing Skills description: Contribute skills back to upstream via branch and PR when_to_use: when you've developed a broadly useful skill and want to contribute it upstream via pull request version: 2.1.0 languages: bash

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

cd ~/.config/superpowers/skills/
git checkout main
git pull upstream main
git push origin main  # Push to your fork

2. Create Feature Branch

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

3. Create or Edit Skill

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

4. Commit Changes

# Add and commit
git add skills/your-skill-name/
git commit -m "Add ${skill_name} skill

$(cat <<'EOF'
Brief description of what this skill does and why it's useful.

Tested with: [describe testing approach]
EOF
)"

5. Push to Your Fork

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

6. Create Pull Request

# Create PR to upstream using gh CLI
gh pr create \
  --repo upstream-org/upstream-repo \
  --title "Add ${skill_name} skill" \
  --body "$(cat <<'EOF'
## Summary
Brief description of the skill and what problem it solves.

## Testing
Describe how you tested this skill (pressure scenarios, baseline tests, etc.).

## Context
Any additional context about why this skill is needed and how it should be used.
EOF
)"

Complete Example

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

# 1. Sync with upstream
cd ~/.config/superpowers/skills/
git checkout main
git pull upstream main
git push origin main

# 2. Create branch
git checkout -b "add-async-patterns-skill"

# 3. Create/edit the skill
# (Work on skills/async-patterns/SKILL.md)

# 4. Commit
git add skills/async-patterns/
git commit -m "Add async-patterns skill

Patterns for handling asynchronous operations in tests and application code.

Tested with: Multiple pressure scenarios testing agent compliance."

# 5. Push
git push -u origin "add-async-patterns-skill"

# 6. Create PR
gh pr create \
  --repo upstream-org/upstream-repo \
  --title "Add async-patterns skill" \
  --body "## Summary
Patterns for handling asynchronous operations correctly in tests and application code.

## Testing
Tested with multiple application scenarios. Agents successfully apply patterns to new code.

## Context
Addresses 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:
cd ~/.config/superpowers/skills/
git checkout main
git pull upstream main
git push origin main
  1. Delete the feature branch:
git branch -d "add-${skill_name}-skill"
git push origin --delete "add-${skill_name}-skill"

Troubleshooting

"gh: command not found"

  • Install GitHub CLI: https://cli.github.com/
  • Authenticate: gh auth login

"Permission denied (publickey)"

  • Check SSH keys: gh auth status
  • Set up SSH: https://docs.github.com/en/authentication

"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.

Related Skills

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