mdma-cli 1.0.0 → 1.1.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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mdma-cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "Skill Claude Code pour configurer les préférences de travail d'un agent",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -9,6 +9,9 @@
|
|
|
9
9
|
"url": "git+https://github.com/privaloops/mdma.git"
|
|
10
10
|
},
|
|
11
11
|
"author": "privaloops",
|
|
12
|
+
"scripts": {
|
|
13
|
+
"test": "echo 'Lancer /test-mdma dans Claude Code pour tester la skill'"
|
|
14
|
+
},
|
|
12
15
|
"bin": {
|
|
13
16
|
"mdma-cli": "bin/init.js"
|
|
14
17
|
},
|
package/skills/mdma/EXAMPLES.md
CHANGED
|
@@ -70,9 +70,12 @@ Ce document montre des exemples de rules files générés par `/mdma`.
|
|
|
70
70
|
## Process
|
|
71
71
|
|
|
72
72
|
### Avant de coder
|
|
73
|
-
1.
|
|
74
|
-
|
|
75
|
-
|
|
73
|
+
1. Synchroniser avec le remote :
|
|
74
|
+
- Si sur `main` : `git pull origin main`
|
|
75
|
+
- Si sur une feature branch : `git fetch && git rebase origin/main`
|
|
76
|
+
2. Créer une issue GitHub (titre + description)
|
|
77
|
+
3. Créer une branche : `feature/xxx` ou `fix/xxx`
|
|
78
|
+
4. `git checkout -b feature/ma-feature`
|
|
76
79
|
|
|
77
80
|
### Commits
|
|
78
81
|
- Convention : conventional commits
|
package/skills/mdma/TEMPLATES.md
CHANGED
|
@@ -56,13 +56,14 @@ Le workflow de l'agent, étape par étape.
|
|
|
56
56
|
- Note les préférences exprimées pour les appliquer ensuite
|
|
57
57
|
|
|
58
58
|
### 6. Document
|
|
59
|
+
- Met à jour `CHANGELOG.md` pour chaque feature/fix (obligatoire)
|
|
59
60
|
- Met à jour `LEARNINGS.md` si apprentissage important
|
|
60
61
|
- Met à jour `DECISIONS.md` si décision structurante
|
|
61
|
-
- Met à jour `CHANGELOG.md` si feature/fix complète
|
|
62
62
|
- Si ces fichiers n'existent pas → les créer avec les formats standards :
|
|
63
63
|
- CHANGELOG.md : [Keep a Changelog](https://keepachangelog.com/)
|
|
64
64
|
- DECISIONS.md : format ADR (Architecture Decision Records)
|
|
65
65
|
- LEARNINGS.md : format session avec contexte, décisions, leçons
|
|
66
|
+
- **STOP** → attend validation
|
|
66
67
|
|
|
67
68
|
### 7. Git
|
|
68
69
|
- Exécute le workflow défini dans `git.md`
|
|
@@ -89,9 +90,12 @@ Le workflow git personnalisé.
|
|
|
89
90
|
## Process
|
|
90
91
|
|
|
91
92
|
### Avant de coder
|
|
92
|
-
1.
|
|
93
|
-
|
|
94
|
-
|
|
93
|
+
1. Synchroniser avec le remote :
|
|
94
|
+
- Si sur `main` : `git pull origin main`
|
|
95
|
+
- Si sur une feature branch : `git fetch && git rebase origin/main`
|
|
96
|
+
2. Créer une issue GitHub (titre + description)
|
|
97
|
+
3. Créer une branche depuis main : `{git.branchFormat}`
|
|
98
|
+
4. `git checkout -b {branche}`
|
|
95
99
|
|
|
96
100
|
### Commits
|
|
97
101
|
- Convention : {git.commitConvention}
|