Notre avis
Automatise le processus de commit, d'exécution du script CI et d'ouverture d'une pull request si le CI passe.
Points forts
- Simplifie le flux de travail du commit au PR en une seule commande.
- Garantit que le CI est exécuté avant la création du PR.
- Crée automatiquement une branche si l'on est sur master.
- Utilise un message de commit personnalisable via argument.
Limites
- Nécessite que le script bin/ci soit présent dans le projet.
- Fonctionne uniquement avec GitHub (CLI gh).
- Ne prend pas en charge les workflows multi-commits.
Utilisez lorsque vous avez un ensemble de modifications prêtes à être livrées avec une vérification CI et un PR en une seule étape.
Ne pas utiliser pour des changements complexes nécessitant plusieurs commits ou lorsque le CI n'est pas configuré.
Analyse de sécurité
SûrThe skill automates a standard git commit, CI run, and PR creation workflow using only git, gh, and a local script. It does not execute destructive commands, exfiltrate data, or disable safety measures. The risk is minimal.
Aucun point d'attention détecté
Exemples
shipship 'Fix login bug'name: ship description: Commit, run bin/ci, and open a PR if CI passes. Use when ready to ship changes. argument-hint: [optional commit message] disable-model-invocation: true allowed-tools: Bash(git *), Bash(gh pr create *), Bash(bin/ci)
Context
- Current git status: !
git status - Current git diff (staged and unstaged changes): !
git diff HEAD - Current branch: !
git branch --show-current - Recent commits: !
git log --oneline -10
Your task
Ship the current changes by following these steps in order:
1. Create a branch if needed
If on master, create and checkout a new descriptive branch based on the changes.
2. Commit
Stage all changed files and create a single commit with an appropriate message. If $ARGUMENTS is provided, use it as the commit message.
3. Run CI
Run bin/ci and wait for it to complete. This is mandatory — do not skip it.
- If
bin/cifails: stop here. Show the failure output and suggest fixes. Do NOT push or create a PR. - If
bin/cipasses: continue to step 4.
4. Open a PR
bin/ci already pushed the branch to origin. Create a pull request using gh pr create and return the PR URL and a brief summary of files changed eg 2 Files Changed
Expert Next.js App Router
Developpement
Un skill qui transforme Claude en expert Next.js App Router.
Générateur de README
Developpement
Crée des README.md professionnels et complets pour vos projets.
Rédacteur de Documentation API
Developpement
Génère de la documentation API complète au format OpenAPI/Swagger.