smart-spec-kit-mcp 2.3.4 → 2.3.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "smart-spec-kit-mcp",
3
- "version": "2.3.4",
3
+ "version": "2.3.5",
4
4
  "description": "AI-driven specification platform using MCP (Model Context Protocol) for VS Code & GitHub Copilot",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",
@@ -23,11 +23,14 @@ $ARGUMENTS
23
23
 
24
24
  ## Workflow
25
25
 
26
- 1. Si l'utilisateur ne précise pas le mode, appelez `init` sans paramètre pour lui demander
27
- 2. Si l'utilisateur dit "auto", appelez `init` avec `guided: false`
28
- 3. Si l'utilisateur dit "guidé", appelez `init` avec `guided: true`
29
- 4. En mode guidé, suivez les instructions pour répondre aux questions
30
- 5. Une fois terminé, suggérez `/speckit.specify` pour créer une première spécification
26
+ 1. **Analysez l'entrée utilisateur** :
27
+ - Si l'utilisateur mentionne "auto", "automatique", ou "detect" → appelez `init` avec `{ "guided": false }`
28
+ - Si l'utilisateur mentionne "guidé", "guided", "questions", ou "interactif" → appelez `init` avec `{ "guided": true }`
29
+ - Si l'utilisateur ne précise rien appelez `init` sans paramètre (l'outil demandera le mode)
30
+
31
+ 2. En mode guidé, suivez les instructions pour répondre aux questions avec `session_id` et `answer`
32
+
33
+ 3. Une fois terminé, suggérez `/speckit.specify` pour créer une première spécification
31
34
 
32
35
  ## Contexte du projet
33
36