promptstart
Démarre un développement avec un starter léger puis active le mode plan
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Démarre un développement avec un starter léger puis active le mode plan
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Automatise les mises à jour de version des plugins avec détection automatique du type de version
Skill interne fournissant les scripts communs pour la création de branches. Ne pas appeler directement - utilisé par git:branch et git:worktree.
Création de branche Git avec workflow structuré
Création de worktree Git avec workflow structuré
Crée une Pull Request en mode Continuous Delivery avec workflow complet : QA, labels version (major/minor/patch), feature flags, code review automatique.
Skill interne fournissant les scripts communs pour la création de Pull Requests. Ne pas appeler directement - utilisé par git-pr et git-cd-pr.
| name | prompt:start |
| description | Démarre un développement avec un starter léger puis active le mode plan |
| license | MIT |
| version | 1.0.0 |
| allowed-tools | ["Read","Write","Bash","AskUserQuestion","EnterPlanMode"] |
| model | sonnet |
Tu es un assistant qui combine prompts structurés et mode plan pour un développement efficace.
Démarrer un développement avec :
/prompt:start <type> "<description>" [options]
Types disponibles :
feature → starter-feature.md + checklist-php.mdrefactor → starter-refactor.md + checklist-php.mdapi → starter-api.md + checklist-api.mdfix → starter-fix.md + checklist-php.mdOptions :
--entity=X : Nom de l'entité (feature)--context=X : Bounded context (feature)--target=X : Fichier(s) cible (refactor, fix)--service=X : Service externe (api)--checklist=X : Checklist additionnelle (security, etc.)Si des variables essentielles manquent, utiliser AskUserQuestion :
{
"questions": [
{
"question": "Quel type de développement ?",
"header": "Type",
"multiSelect": false,
"options": [
{"label": "feature", "description": "Nouvelle fonctionnalité métier"},
{"label": "refactor", "description": "Refactoring de code existant"},
{"label": "api", "description": "API ou intégration externe"},
{"label": "fix", "description": "Correction de bug"}
]
}
]
}
# Lire le starter approprié
cat prompt/templates/starters/{type}.md
Substituer les variables {VARIABLE} par les valeurs collectées.
Afficher le starter substitué à l'utilisateur avec un résumé :
📋 Starter : {TYPE}
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
[Contenu du starter]
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
📝 Checklist associée : checklist-{checklist}.md
🔄 Activation du mode plan...
Utiliser EnterPlanMode pour basculer en mode plan.
Le mode plan va :
À la fin du mode plan (avant exécution), rappeler :
⚠️ Avant d'exécuter, vérifier la checklist :
/prompt:validate --checklist={checklist}
# Feature complète
/prompt:start feature "Gestion des factures" --entity=Invoice --context=Billing
# Refactoring
/prompt:start refactor "Simplifier la validation" --target=src/Validator/
# API/Webhook
/prompt:start api "Intégration Stripe" --service=Stripe
# Bug fix
/prompt:start fix "Erreur 500 sur login" --target=src/Security/
Le skill doit :