fleetbo-cockpit-cli 1.0.191 → 1.0.192
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/cli.js +9 -7
- package/package.json +1 -1
package/cli.js
CHANGED
|
@@ -199,15 +199,17 @@ const extractPotentialModules = (text) => {
|
|
|
199
199
|
// Sert uniquement à définir le TON du contexte envoyé à Alex
|
|
200
200
|
const getContextIntent = (text) => {
|
|
201
201
|
const modifierKeywords = [
|
|
202
|
-
// 🇫🇷 FRANÇAIS
|
|
203
|
-
'modifier', 'modifie', 'corrige', 'ajoute', '
|
|
204
|
-
'
|
|
202
|
+
// 🇫🇷 FRANÇAIS (Verbes d'action purs)
|
|
203
|
+
'modifier', 'modifie', 'corrige', 'ajoute', 'change', 'met a jour', 'mets à jour',
|
|
204
|
+
'optimise', 'améliore', 'refactorise', 'répare', 'adapte', 'remplace',
|
|
205
205
|
|
|
206
|
-
// 🇬🇧 ANGLAIS
|
|
207
|
-
'update', 'fix', 'edit', '
|
|
206
|
+
// 🇬🇧 ANGLAIS (Action verbs)
|
|
207
|
+
'update', 'fix', 'edit', 'add', 'modify', 'upgrade', 'optimize',
|
|
208
|
+
'improve', 'refactor', 'repair', 'adapt', 'replace', 'tweak',
|
|
208
209
|
|
|
209
|
-
// 🇪🇸 ESPAGNOL
|
|
210
|
-
'modifica', 'edita', 'actualiza', 'añade', 'agrega', 'mejora',
|
|
210
|
+
// 🇪🇸 ESPAGNOL (Verbos de acción)
|
|
211
|
+
'modifica', 'edita', 'actualiza', 'añade', 'agrega', 'mejora',
|
|
212
|
+
'optimiza', 'refactoriza', 'repara', 'adapta', 'reemplaza'
|
|
211
213
|
];
|
|
212
214
|
|
|
213
215
|
const inspireKeywords = [
|