smart-spec-kit-mcp 2.1.9 → 2.2.0

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.
Files changed (2) hide show
  1. package/README.md +29 -7
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -5,6 +5,24 @@
5
5
 
6
6
  Plateforme d'orchestration automatisée pour le **développement piloté par les spécifications** (Spec-Driven Development) via **GitHub Copilot** et **MCP** (Model Context Protocol).
7
7
 
8
+ ---
9
+
10
+ ## 📚 Table of Contents
11
+
12
+ - [✨ Fonctionnalités](#-fonctionnalités)
13
+ - [⚡ Installation Rapide](#-installation-rapide)
14
+ - [📁 Structure du Projet](#-structure-du-projet)
15
+ - [🎮 Commandes Disponibles](#-commandes-disponibles)
16
+ - [🚀 Workflow Recommandé](#-workflow-recommandé)
17
+ - [🔧 Personnalisation](#-personnalisation)
18
+ - [❓ Obtenir de l'Aide](#-obtenir-de-laide)
19
+ - [🔗 Intégration Azure DevOps](#-intégration-azure-devops)
20
+ - [📖 Documentation Complète](#-documentation-complète)
21
+ - [🧪 Développement](#-développement)
22
+ - [📄 License](#-license)
23
+
24
+ ---
25
+
8
26
  ## ✨ Fonctionnalités
9
27
 
10
28
  - **🤖 Commandes Naturelles**: Utilisez `speckit: spec`, `speckit: plan`, etc. directement dans Copilot Chat
@@ -28,9 +46,12 @@ npx smart-spec-kit-mcp setup
28
46
  Cette commande configure automatiquement:
29
47
 
30
48
  - ✅ VS Code settings.json (MCP server)
49
+ - ✅ Tous les profils VS Code (Windows, macOS, Linux)
31
50
  - ✅ `.github/copilot-instructions.md` (guide Copilot)
32
51
  - ✅ `.spec-kit/` avec prompts, templates et workflows
33
52
 
53
+ > **Note macOS**: Si vous avez une erreur `command not found`, assurez-vous que npm/npx est à jour: `npm install -g npm@latest`
54
+
34
55
  ### Option 2: Configuration Manuelle
35
56
 
36
57
  Ajoutez dans `.vscode/settings.json`:
@@ -249,14 +270,15 @@ speckit: spec pour le work item #12345
249
270
 
250
271
  ---
251
272
 
252
- ## 🤖 Agents IA
273
+ ## 📖 Documentation Complète
274
+
275
+ Pour une documentation détaillée sur tous les outils et fonctionnalités:
253
276
 
254
- | Agent | Rôle | Utilisation |
255
- |-------|------|-------------|
256
- | **SpecAgent** | Rédacteur | Spécifications fonctionnelles |
257
- | **PlanAgent** | Planificateur | Plans d'implémentation |
258
- | **GovAgent** | Validateur | Conformité RGPD, Sécurité |
259
- | **TestAgent** | Testeur | Stratégies de tests |
277
+ - **[QUICK-START.md](QUICK-START.md)** - Guide de démarrage rapide (2 minutes)
278
+ - **[docs/DOCUMENTATION.md](docs/DOCUMENTATION.md)** - Documentation complète des outils MCP et workflows
279
+ - **[docs/PACKAGING.md](docs/PACKAGING.md)** - Guide de packaging et distribution
280
+ - **[PROJECT_CONTEXT.md](PROJECT_CONTEXT.md)** - Contexte du projet Spec-Kit
281
+ - **[TASK_QUEUE.md](TASK_QUEUE.md)** - Tâches en cours et prévues
260
282
 
261
283
  ---
262
284
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "smart-spec-kit-mcp",
3
- "version": "2.1.9",
3
+ "version": "2.2.0",
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",
@@ -20,8 +20,9 @@
20
20
  "access": "public"
21
21
  },
22
22
  "scripts": {
23
- "build": "tsc && npm run copy-assets",
23
+ "build": "tsc && npm run copy-assets && npm run fix-permissions",
24
24
  "copy-assets": "node scripts/copy-assets.js",
25
+ "fix-permissions": "node scripts/fix-cli-permissions.js",
25
26
  "dev": "tsx watch src/index.ts",
26
27
  "start": "node dist/index.js",
27
28
  "setup": "tsx src/utils/vsCodeConfigGenerator.ts",