prompt:start

Démarre un développement avec un starter léger puis active le mode plan

8 stars

Best use case

prompt:start is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Démarre un développement avec un starter léger puis active le mode plan

Teams using prompt:start should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/prompt-start/SKILL.md --create-dirs "https://raw.githubusercontent.com/atournayre/claude-marketplace/main/prompt/skills/prompt-start/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/prompt-start/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How prompt:start Compares

Feature / Agentprompt:startStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Démarre un développement avec un starter léger puis active le mode plan

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

Tu es un assistant qui combine prompts structurés et mode plan pour un développement efficace.

## Objectif

Démarrer un développement avec :
1. Un **starter léger** (contexte + contraintes)
2. Le **mode plan** pour exploration et adaptation
3. Une **checklist** pour validation finale

## Workflow

### 1. Parser les arguments

```
/prompt:start <type> "<description>" [options]
```

**Types disponibles** :
- `feature` → starter-feature.md + checklist-php.md
- `refactor` → starter-refactor.md + checklist-php.md
- `api` → starter-api.md + checklist-api.md
- `fix` → starter-fix.md + checklist-php.md

**Options** :
- `--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.)

### 2. Collecter les variables manquantes

Si des variables essentielles manquent, utiliser `AskUserQuestion` :

```json
{
  "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"}
      ]
    }
  ]
}
```

### 3. Lire et substituer le starter

```bash
# Lire le starter approprié
cat prompt/templates/starters/{type}.md
```

Substituer les variables `{VARIABLE}` par les valeurs collectées.

### 4. Afficher le starter

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

### 5. Activer le mode plan

Utiliser `EnterPlanMode` pour basculer en mode plan.

Le mode plan va :
- Explorer le codebase
- Proposer un plan d'implémentation
- Demander validation avant exécution

### 6. Rappeler la checklist

À la fin du mode plan (avant exécution), rappeler :

```
⚠️  Avant d'exécuter, vérifier la checklist :
/prompt:validate --checklist={checklist}
```

## Exemples d'utilisation

```bash
# 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/
```

## Gestion des erreurs

- **Type inconnu** : Proposer les 4 types disponibles
- **Description vide** : Demander interactivement
- **Starter introuvable** : Vérifier installation du plugin

## Output attendu

Le skill doit :
1. Afficher le starter substitué
2. Indiquer la checklist associée
3. Activer automatiquement le mode plan
4. Ne PAS écrire de fichier (contrairement aux anciens prompts)

Related Skills

prompt:validate

8
from atournayre/claude-marketplace

Vérifie la checklist avant exécution et liste les oublis

prompt:transform

8
from atournayre/claude-marketplace

Transforme un prompt en prompt exécutable compatible avec le Task Management System (TaskCreate/TaskUpdate/TaskList)

prompt:team

8
from atournayre/claude-marketplace

Orchestre une équipe d'agents spécialisés pour les tâches complexes. Auto-détecte le type, compose l'équipe, coordonne les phases analyse → challenge → implémentation → QA.

prompt-creator

8
from atournayre/claude-marketplace

Expert prompt engineering for creating effective prompts for Claude, GPT, and other LLMs. Use when writing system prompts, user prompts, few-shot examples, or optimizing existing prompts for better performance.

fix-grammar

8
from atournayre/claude-marketplace

Fix grammar and spelling errors in one or multiple files while preserving formatting

symfony-framework

8
from atournayre/claude-marketplace

Comprehensive Symfony 6.4 development skill for web applications, APIs, and microservices.

symfony:make

8
from atournayre/claude-marketplace

Cherche si il existe un maker Symfony pour faire la tache demandée et l'utilise si il existe. Si aucun maker n'existe alors utilise la slash command "/prepare"

phpstan-resolver

8
from atournayre/claude-marketplace

Résout automatiquement les erreurs PHPStan en analysant et corrigeant les problèmes de types. Boucle jusqu'à zéro erreur ou stagnation.

elegant-objects

8
from atournayre/claude-marketplace

Vérifie la conformité du code PHP aux principes Elegant Objects de Yegor Bugayenko. Analyse un fichier spécifique ou tous les fichiers modifiés dans la branche.

apex

8
from atournayre/claude-marketplace

Systematic implementation using APEX methodology (Analyze-Plan-Execute-eXamine) with parallel agents, self-validation, and optional adversarial review. Use when implementing features, fixing bugs, or making code changes that benefit from structured workflow.

fix-errors

8
from atournayre/claude-marketplace

Fix all ESLint and TypeScript errors with parallel processing using snipper agents

merge

8
from atournayre/claude-marketplace

Intelligently merge branches with context-aware conflict resolution