@autocode-cli/autocode 0.1.11 → 0.1.13

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 (97) hide show
  1. package/README.md +6 -6
  2. package/dist/cli/commands/comment.js +1 -1
  3. package/dist/cli/commands/comment.js.map +1 -1
  4. package/dist/cli/commands/init.js +1 -1
  5. package/dist/cli/commands/init.js.map +1 -1
  6. package/dist/cli/commands/list.js +3 -3
  7. package/dist/cli/commands/list.js.map +1 -1
  8. package/dist/cli/commands/move.js +5 -5
  9. package/dist/cli/commands/move.js.map +1 -1
  10. package/dist/cli/commands/new.js +4 -4
  11. package/dist/cli/commands/new.js.map +1 -1
  12. package/dist/cli/commands/next.js +1 -1
  13. package/dist/cli/commands/next.js.map +1 -1
  14. package/dist/cli/commands/show.js +1 -1
  15. package/dist/cli/commands/show.js.map +1 -1
  16. package/dist/core/column.d.ts +0 -4
  17. package/dist/core/column.d.ts.map +1 -1
  18. package/dist/core/column.js +0 -6
  19. package/dist/core/column.js.map +1 -1
  20. package/dist/core/ticket.d.ts +1 -1
  21. package/dist/core/ticket.js +4 -4
  22. package/dist/core/ticket.js.map +1 -1
  23. package/dist/core/workflow.d.ts +1 -1
  24. package/dist/core/workflow.js +4 -4
  25. package/dist/server/api.d.ts.map +1 -1
  26. package/dist/server/api.js +76 -7
  27. package/dist/server/api.js.map +1 -1
  28. package/dist/server/dashboard/pages/pipeline-configurator.d.ts.map +1 -1
  29. package/dist/server/dashboard/pages/pipeline-configurator.js +176 -0
  30. package/dist/server/dashboard/pages/pipeline-configurator.js.map +1 -1
  31. package/dist/server/dashboard/scripts/index.js +3 -3
  32. package/dist/services/claude.d.ts +4 -1
  33. package/dist/services/claude.d.ts.map +1 -1
  34. package/dist/services/claude.js +7 -4
  35. package/dist/services/claude.js.map +1 -1
  36. package/package.json +1 -1
  37. package/templates/analysis-prompt.en.md +77 -0
  38. package/templates/analysis-prompt.fr.md +87 -0
  39. package/templates/catalog.yaml +1 -1
  40. package/templates/prompts/backlog.en.md +8 -19
  41. package/templates/prompts/backlog.fr.md +8 -19
  42. package/templates/prompts/changelog.en.md +4 -8
  43. package/templates/prompts/changelog.fr.md +4 -8
  44. package/templates/prompts/deploy-prod.en.md +4 -8
  45. package/templates/prompts/deploy-prod.fr.md +4 -8
  46. package/templates/prompts/deploy-staging.en.md +4 -8
  47. package/templates/prompts/deploy-staging.fr.md +4 -8
  48. package/templates/prompts/design.en.md +5 -5
  49. package/templates/prompts/design.fr.md +5 -5
  50. package/templates/prompts/dev.en.md +5 -5
  51. package/templates/prompts/dev.fr.md +5 -5
  52. package/templates/prompts/done.en.md +4 -4
  53. package/templates/prompts/done.fr.md +4 -4
  54. package/templates/prompts/git-commit.en.md +5 -7
  55. package/templates/prompts/git-commit.fr.md +5 -7
  56. package/templates/prompts/git-push.en.md +4 -8
  57. package/templates/prompts/git-push.fr.md +4 -8
  58. package/templates/prompts/git-tag.en.md +4 -8
  59. package/templates/prompts/git-tag.fr.md +4 -8
  60. package/templates/prompts/in-progress.en.md +5 -5
  61. package/templates/prompts/in-progress.fr.md +5 -5
  62. package/templates/prompts/qualification.en.md +5 -5
  63. package/templates/prompts/qualification.fr.md +5 -5
  64. package/templates/prompts/retest-cypress.en.md +4 -8
  65. package/templates/prompts/retest-cypress.fr.md +4 -8
  66. package/templates/prompts/retest-playwright.en.md +5 -8
  67. package/templates/prompts/retest-playwright.fr.md +5 -8
  68. package/templates/prompts/retest.en.md +5 -8
  69. package/templates/prompts/retest.fr.md +5 -8
  70. package/templates/prompts/review-best-practices.en.md +4 -8
  71. package/templates/prompts/review-best-practices.fr.md +4 -8
  72. package/templates/prompts/review-code.en.md +4 -8
  73. package/templates/prompts/review-code.fr.md +4 -8
  74. package/templates/prompts/review-consistency.en.md +4 -8
  75. package/templates/prompts/review-consistency.fr.md +4 -8
  76. package/templates/prompts/review-no-duplication.en.md +4 -8
  77. package/templates/prompts/review-no-duplication.fr.md +4 -8
  78. package/templates/prompts/review-security.en.md +5 -5
  79. package/templates/prompts/review-security.fr.md +5 -5
  80. package/templates/prompts/specification.en.md +5 -5
  81. package/templates/prompts/specification.fr.md +5 -5
  82. package/templates/prompts/splitter.en.md +4 -5
  83. package/templates/prompts/splitter.fr.md +4 -5
  84. package/templates/prompts/testing-cypress.en.md +5 -8
  85. package/templates/prompts/testing-cypress.fr.md +5 -8
  86. package/templates/prompts/testing-integration.en.md +5 -8
  87. package/templates/prompts/testing-integration.fr.md +5 -8
  88. package/templates/prompts/testing-playwright.en.md +5 -8
  89. package/templates/prompts/testing-playwright.fr.md +5 -8
  90. package/templates/prompts/testing-unit.en.md +5 -8
  91. package/templates/prompts/testing-unit.fr.md +5 -8
  92. package/templates/prompts/update-docs.en.md +4 -8
  93. package/templates/prompts/update-docs.fr.md +4 -8
  94. package/templates/prompts/validate-staging.en.md +4 -8
  95. package/templates/prompts/validate-staging.fr.md +4 -8
  96. package/templates/prompts/ready.en.md +0 -31
  97. package/templates/prompts/ready.fr.md +0 -31
@@ -0,0 +1,77 @@
1
+ You are a critical AutoCode workflow auditor.
2
+
3
+ UI / Interaction Context
4
+
5
+ * This analysis is triggered by a user clicking an **"Analyze"** button on the **/settings/pipeline/configurator** page.
6
+ * Your text will be displayed as-is **in a modal** (dialog window) immediately after the click.
7
+ * You must produce a **modal-readable** response: structured, scannable, no digressions, with short sections.
8
+
9
+ Product Context
10
+
11
+ * We have a "Pipeline Configurator" page with 3 ordered and immutable segments:
12
+
13
+ 1. definition
14
+ 2. action
15
+ 3. finish
16
+ * Each segment contains an ordered list of columns (steps). The exact order is important: it's the execution/progression order.
17
+ * There's also a catalog of available columns (some are used, others are not).
18
+ * Cost constraint: the more columns there are, the more tokens are consumed. We seek a "quality / cost" balance. We want to avoid unnecessary or redundant columns.
19
+
20
+ Language
21
+
22
+ * Respond in the language requested by the interface: {ui_language} (e.g., "fr" or "en"). If {ui_language} is "fr", respond in French. Otherwise respond in English.
23
+
24
+ Input Data
25
+ You receive:
26
+
27
+ 1. The current configuration (segments + columns) preserving the exact order:
28
+ {pipeline_segments_ordered}
29
+
30
+ 2. The complete catalog of available columns (including unused ones):
31
+ {catalog_all_columns}
32
+
33
+ Mission
34
+ Analyze the current configuration with a critical and pragmatic mindset. Objectives:
35
+ A) Coherence & Order
36
+
37
+ * Check if the "definition → action → finish" sequence is logically respected.
38
+ * Analyze the order of columns in each segment: is it relevant, clear, progressive?
39
+ * Flag columns that seem "misplaced" (better in another segment) or "misordered" (should be before/after others).
40
+ * Detect redundancies, functional duplicates, or columns that are too similar.
41
+
42
+ B) Security, Reliability, Risk
43
+
44
+ * Identify risks: steps that could cause breakage (e.g., deployment too early), lack of guardrails, missing validations, confusion between environments (staging/prod), etc.
45
+ * Propose concrete safeguards: validations, checks, reviews, tests, explicit confirmations, blocking conditions, etc.
46
+ * Evaluate the workflow's "resilience": does it limit human errors? is it robust?
47
+
48
+ C) Quality vs Cost (tokens)
49
+
50
+ * Evaluate the value of each column: essential / useful / optional / superfluous.
51
+ * Propose a "Lean" version (minimal but safe) and a "Quality" version (more complete), explaining the tokens/quality trade-off.
52
+ * Highlight "expensive" columns (lots of expected context, very verbose steps) vs their actual gain.
53
+
54
+ D) Unused Columns (opportunities)
55
+
56
+ * Analyze the columns NOT used (diff = catalog - configuration).
57
+ * Propose relevant additions (if they bring clear value) and removals (if some current columns don't justify their cost).
58
+ * Prioritize recommendations.
59
+
60
+ Output Format (modal-optimized)
61
+
62
+ 1. Summary (5–10 lines): overall state + 3 strengths + 3 main risks.
63
+ 2. Diagnosis by segment (definition/action/finish)
64
+
65
+ * Current order + detected issues
66
+ * Recommendations (reordering, moving, removing)
67
+ 3. Risks & Safeguards (prioritized list: Severity / Impact / Corrective measure)
68
+ 4. Token Analysis: "high ROI" vs "low ROI", then Lean vs Quality proposal
69
+ 5. Unused: columns to consider (add/ignore) + justification
70
+ 6. Final Proposal: "Recommended new order" (segments + columns) in ordered format
71
+
72
+ Important Constraints
73
+
74
+ * Do not modify segment names.
75
+ * Do not implicitly reorder: if you recommend a new order, write it explicitly.
76
+ * Be critical: if it's a bad idea, say so clearly and justify.
77
+ * Avoid fluff: each recommendation must have a reason and expected benefit.
@@ -0,0 +1,87 @@
1
+ Tu es un auditeur critique de workflow AutoCode.
2
+
3
+ Contexte UI / Interaction
4
+
5
+ * Cette analyse est déclenchée par un utilisateur via un clic sur un bouton **"Analyser"** dans la page *
6
+ */settings/pipeline/configurator**.
7
+ * Ton texte sera affiché tel quel **dans une modal** (fenêtre de dialogue) immédiatement après le clic.
8
+ * Tu dois donc produire une réponse **lisible en modal** : structurée, scannable, sans digressions, avec des sections
9
+ courtes.
10
+
11
+ Contexte produit
12
+
13
+ * Nous avons une page "Pipeline Configurator" avec 3 segments ordonnés et immuables :
14
+
15
+ 1. definition
16
+ 2. action
17
+ 3. finish
18
+ * Chaque segment contient une liste de colonnes (steps) ordonnée. L'ordre exact est important : c'est l'ordre
19
+ d'exécution / de progression.
20
+ * Il existe aussi un catalogue de colonnes disponibles (certaines sont utilisées, d'autres non).
21
+ * Contrainte coût : plus il y a de colonnes, plus ça consomme de tokens. On cherche un équilibre "qualité / coût". On
22
+ veut éviter les colonnes inutiles ou redondantes.
23
+
24
+ Langue
25
+
26
+ * Réponds dans la langue demandée par l'interface : {ui_language} (ex: "fr" ou "en"). Si {ui_language} est "fr", réponds
27
+ en français. Sinon réponds en anglais.
28
+
29
+ Données d'entrée
30
+ Tu reçois :
31
+
32
+ 1. La configuration actuelle (segments + colonnes) en conservant l'ordre exact :
33
+ {pipeline_segments_ordered}
34
+
35
+ 2. Le catalogue complet des colonnes disponibles (y compris celles non utilisées) :
36
+ {catalog_all_columns}
37
+
38
+ Mission
39
+ Analyse la configuration actuelle avec un esprit critique et pragmatique. Objectifs :
40
+ A) Cohérence & ordre
41
+
42
+ * Vérifie si l'enchaînement "definition → action → finish" est respecté de manière logique.
43
+ * Analyse l'ordre des colonnes dans chaque segment : est-il pertinent, clair, progressif ?
44
+ * Signale les colonnes qui semblent "mal placées" (mieux dans un autre segment) ou "mal ordonnées" (devraient être
45
+ avant/après d'autres).
46
+ * Détecte les redondances, doublons fonctionnels, ou colonnes trop proches.
47
+
48
+ B) Sécurité, fiabilité, risque
49
+
50
+ * Identifie les risques : étapes qui pourraient causer de la casse (ex: déploiement trop tôt), manque de garde-fous,
51
+ absence de validations, confusion entre environnements (staging/prod), etc.
52
+ * Propose des garde-fous concrets : validations, checks, review, tests, confirmations explicites, conditions de blocage,
53
+ etc.
54
+ * Évalue la "résilience" du workflow : est-ce que ça limite les erreurs humaines ? est-ce que c'est robuste ?
55
+
56
+ C) Qualité vs coût (tokens)
57
+
58
+ * Évalue la valeur de chaque colonne : indispensable / utile / optionnelle / superflue.
59
+ * Propose une version "Lean" (minimale mais sûre) et une version "Quality" (plus complète), en explicitant le compromis
60
+ tokens/qualité.
61
+ * Mets en évidence les colonnes "coûteuses" (beaucoup de contexte attendu, étapes très bavardes) vs leur gain réel.
62
+
63
+ D) Colonnes non utilisées (opportunités)
64
+
65
+ * Analyse les briques/colonnes NON utilisées (diff = catalogue - configuration).
66
+ * Propose des ajouts pertinents (si elles apportent un gain clair) et des suppressions (si certaines colonnes actuelles
67
+ ne justifient pas leur coût).
68
+ * Priorise les recommandations.
69
+
70
+ Format de sortie (optimisé modal)
71
+
72
+ 1. Résumé (5–10 lignes) : état global + 3 points forts + 3 risques principaux.
73
+ 2. Diagnostic par segment (definition/action/finish)
74
+
75
+ * Ordre actuel + problèmes détectés
76
+ * Recommandations (re-ordonnancement, déplacement, suppression)
77
+ 3. Risques & garde-fous (liste priorisée : Gravité / Impact / Mesure corrective)
78
+ 4. Analyse tokens : "fort ROI" vs "faible ROI", puis proposition Lean vs Quality
79
+ 5. Non utilisé : colonnes à considérer (ajouter/ignorer) + justification
80
+ 6. Proposition finale : "Nouvel ordre recommandé" (segments + colonnes) en format ordonné
81
+
82
+ Contraintes importantes
83
+
84
+ * Ne modifie pas les noms des segments.
85
+ * Ne réordonne pas implicitement : si tu recommandes un nouvel ordre, écris-le explicitement.
86
+ * Sois critique : si c'est une mauvaise idée, dis-le clairement et justifie.
87
+ * Évite le blabla : chaque recommandation doit avoir une raison et un bénéfice attendu.
@@ -23,7 +23,7 @@ segments:
23
23
  description: Ready for development
24
24
  - slug: splitter
25
25
  name: Splitter
26
- description: Si un besoin est trop gros, il faut le splitter en pleins de petits tickets pour limiter la responsabilité ! on crée ces tickets avec `autocode new "<title>" "<description>" -p P2 -l "<labels>" -a "<criteria>" -s patch` une fois terminé et qu'on a RIEN oublié on vient `autocode move <key> <targetColumn>` dans la colonne terminated. et on vient créer un nouveau ticket qui cite tous ceux qu'on vient de créer pour vérifier que le "tout" fonctionne bien ensemble et est bien cohérent !
26
+ description: Si un besoin est trop gros, il faut le splitter en pleins de petits tickets pour limiter la responsabilité ! on crée ces tickets avec `autocode new "<title>" "<description>" --priority P2 --labels "<labels>" --acceptance "<criteria>" --semver patch --column backlog` une fois terminé et qu'on a RIEN oublié on vient `autocode move <ticket-key> <target-column-slug>` dans la colonne terminated. et on vient créer un nouveau ticket qui cite tous ceux qu'on vient de créer pour vérifier que le "tout" fonctionne bien ensemble et est bien cohérent !
27
27
  action:
28
28
  description: Columns for implementation and validation
29
29
  columns:
@@ -7,28 +7,17 @@ Storage for new tickets. Tickets here need qualification before work can begin.
7
7
  ## Actions
8
8
 
9
9
  1. Read the ticket (title, description, attachments)
10
- 2. Verify ticket quality and completeness
11
- 3. If poorly written: rewrite title and enrich description
12
- 4. Define acceptance criteria if missing
13
- 5. Set priority (P0-P3) based on impact and urgency
14
- 6. Identify scope and potentially affected files
15
- 7. If out of scope work detected:
16
- - Slightly out of scope (minor improvement, edge case): `autocode new "<title>" "<description>" -p P2 -l "<labels>" -a "<criteria>" -s patch -c ready`
17
- - Significantly out of scope (new feature, major change): `autocode new "<title>" "<description>" -p P2 -l "<labels>" -a "<criteria>" -s patch`
18
- - In scope: handle directly in current ticket
19
- 8. Document: `autocode comment <key> "Qualification done"`
20
- 9. Advance: `autocode next <key>`
21
-
22
- > Or return: `autocode move <key> <targetColumn>`
10
+ 2. Verify the ticket is complete enough to be processed
11
+ 3. If incomplete or poorly written: add a comment requesting clarifications
12
+ 4. Advance: `autocode next <ticket-key>`
13
+
14
+ > Or leave in backlog if ticket is not ready
23
15
 
24
16
  ## Validation Criteria
25
17
 
26
- - [ ] Title is explicit (verb + what + context)
27
- - [ ] Description is clear and structured
28
- - [ ] Scope is defined (included/excluded)
29
- - [ ] Priority is set appropriately
30
- - [ ] If bug: reproduction steps documented
18
+ - [ ] Ticket read and understood
19
+ - [ ] If ready: moved to qualification
31
20
 
32
21
  ## Notes
33
22
 
34
- A ticket can be a feature, bug, investigation, question, or technical task. Qualify thoroughly before starting work.
23
+ Backlog is passive storage. Active qualification happens in the next step.
@@ -7,28 +7,17 @@ Stockage des nouveaux tickets. Les tickets ici doivent etre qualifies avant de c
7
7
  ## Actions
8
8
 
9
9
  1. Lire le ticket (titre, description, pieces jointes)
10
- 2. Verifier la qualite et la completude du ticket
11
- 3. Si mal redige : reecrire le titre et enrichir la description
12
- 4. Definir les criteres d'acceptation si manquants
13
- 5. Definir la priorite (P0-P3) selon l'impact et l'urgence
14
- 6. Identifier le perimetre et les fichiers potentiellement impactes
15
- 7. Si travail hors scope detecte :
16
- - Legerement hors scope (amelioration mineure, cas limite) : `autocode new "<titre>" "<description>" -p P2 -l "<labels>" -a "<criteres>" -s patch -c ready`
17
- - Tres hors scope (nouvelle feature, changement majeur) : `autocode new "<titre>" "<description>" -p P2 -l "<labels>" -a "<criteres>" -s patch`
18
- - Dans le scope : traiter directement dans le ticket actuel
19
- 8. Documenter : `autocode comment <key> "Qualification effectuee"`
20
- 9. Avancer : `autocode next <key>`
21
-
22
- > Ou retour : `autocode move <key> <targetColumn>`
10
+ 2. Verifier que le ticket est suffisamment complet pour etre traite
11
+ 3. Si incomplet ou mal redige : ajouter un commentaire demandant des clarifications
12
+ 4. Avancer : `autocode next <ticket-key>`
13
+
14
+ > Ou laisser en backlog si le ticket n'est pas pret
23
15
 
24
16
  ## Criteres de Validation
25
17
 
26
- - [ ] Titre explicite (verbe + quoi + contexte)
27
- - [ ] Description claire et structuree
28
- - [ ] Perimetre defini (inclus/exclus)
29
- - [ ] Priorite definie correctement
30
- - [ ] Si bug : etapes de reproduction documentees
18
+ - [ ] Ticket lu et compris
19
+ - [ ] Si pret : avance vers qualification
31
20
 
32
21
  ## Notes
33
22
 
34
- Un ticket peut etre une feature, bug, investigation, question ou tache technique. Qualifier rigoureusement avant de commencer.
23
+ Le backlog est un stockage passif. La qualification active se fait a l'etape suivante.
@@ -12,14 +12,10 @@ Update the changelog with the changes made in this ticket. Document for users an
12
12
  4. Add entry under "Unreleased" section
13
13
  5. Use clear, user-facing language
14
14
  6. Reference ticket key if applicable
15
- 7. If out of scope work detected:
16
- - Slightly out of scope (minor improvement, edge case): `autocode new "<title>" "<description>" -p P2 -l "<labels>" -a "<criteria>" -s patch -c ready`
17
- - Significantly out of scope (new feature, major change): `autocode new "<title>" "<description>" -p P2 -l "<labels>" -a "<criteria>" -s patch`
18
- - In scope: handle directly in current ticket
19
- 8. Document: `autocode comment <key> "Changelog updated"`
20
- 9. Advance: `autocode next <key>`
21
-
22
- > Or return: `autocode move <key> <targetColumn>`
15
+ 7. Document: `autocode comment <ticket-key> "Changelog updated"`
16
+ 8. Advance: `autocode next <ticket-key>`
17
+
18
+ > Or return: `autocode move <ticket-key> <target-column-slug>`
23
19
 
24
20
  ## Validation Criteria
25
21
 
@@ -12,14 +12,10 @@ Mettre a jour le changelog avec les changements effectues dans ce ticket. Docume
12
12
  4. Ajouter une entree sous la section "Unreleased"
13
13
  5. Utiliser un langage clair oriente utilisateur
14
14
  6. Referencer la cle du ticket si applicable
15
- 7. Si travail hors scope detecte :
16
- - Legerement hors scope (amelioration mineure, cas limite) : `autocode new "<titre>" "<description>" -p P2 -l "<labels>" -a "<criteres>" -s patch -c ready`
17
- - Tres hors scope (nouvelle feature, changement majeur) : `autocode new "<titre>" "<description>" -p P2 -l "<labels>" -a "<criteres>" -s patch`
18
- - Dans le scope : traiter directement dans le ticket actuel
19
- 8. Documenter : `autocode comment <key> "Changelog mis a jour"`
20
- 9. Avancer : `autocode next <key>`
21
-
22
- > Ou retour : `autocode move <key> <targetColumn>`
15
+ 7. Documenter : `autocode comment <ticket-key> "Changelog mis a jour"`
16
+ 8. Avancer : `autocode next <ticket-key>`
17
+
18
+ > Ou retour : `autocode move <ticket-key> <target-column-slug>`
23
19
 
24
20
  ## Criteres de Validation
25
21
 
@@ -14,14 +14,10 @@ Deploy the release to production environment. Ensure zero-downtime deployment.
14
14
  6. Verify critical functionality
15
15
  7. Monitor logs for errors
16
16
  8. If issues detected: rollback immediately
17
- 9. If out of scope work detected:
18
- - Slightly out of scope (minor improvement, edge case): `autocode new "<title>" "<description>" -p P2 -l "<labels>" -a "<criteria>" -s patch -c ready`
19
- - Significantly out of scope (new feature, major change): `autocode new "<title>" "<description>" -p P2 -l "<labels>" -a "<criteria>" -s patch`
20
- - In scope: handle directly in current ticket
21
- 10. Document: `autocode comment <key> "Deployed to production: v<version>"`
22
- 11. Advance: `autocode next <key>`
23
-
24
- > Or rollback: `autocode move <key> <targetColumn>`
17
+ 9. Document: `autocode comment <ticket-key> "Deployed to production: v<version>"`
18
+ 10. Advance: `autocode next <ticket-key>`
19
+
20
+ > Or rollback: `autocode move <ticket-key> <target-column-slug>`
25
21
 
26
22
  ## Validation Criteria
27
23
 
@@ -14,14 +14,10 @@ Deployer la release en environnement de production. Assurer un deploiement sans
14
14
  6. Verifier les fonctionnalites critiques
15
15
  7. Surveiller les logs pour les erreurs
16
16
  8. Si problemes detectes : rollback immediatement
17
- 9. Si travail hors scope detecte :
18
- - Legerement hors scope (amelioration mineure, cas limite) : `autocode new "<titre>" "<description>" -p P2 -l "<labels>" -a "<criteres>" -s patch -c ready`
19
- - Tres hors scope (nouvelle feature, changement majeur) : `autocode new "<titre>" "<description>" -p P2 -l "<labels>" -a "<criteres>" -s patch`
20
- - Dans le scope : traiter directement dans le ticket actuel
21
- 10. Documenter : `autocode comment <key> "Deploye en production : v<version>"`
22
- 11. Avancer : `autocode next <key>`
23
-
24
- > Ou rollback : `autocode move <key> <targetColumn>`
17
+ 9. Documenter : `autocode comment <ticket-key> "Deploye en production : v<version>"`
18
+ 10. Avancer : `autocode next <ticket-key>`
19
+
20
+ > Ou rollback : `autocode move <ticket-key> <target-column-slug>`
25
21
 
26
22
  ## Criteres de Validation
27
23
 
@@ -11,14 +11,10 @@ Deploy changes to staging environment for validation.
11
11
  3. Wait for deployment to complete
12
12
  4. Verify deployment is stable
13
13
  5. Document deployed version
14
- 6. If out of scope work detected:
15
- - Slightly out of scope (minor improvement, edge case): `autocode new "<title>" "<description>" -p P2 -l "<labels>" -a "<criteria>" -s patch -c ready`
16
- - Significantly out of scope (new feature, major change): `autocode new "<title>" "<description>" -p P2 -l "<labels>" -a "<criteria>" -s patch`
17
- - In scope: handle directly in current ticket
18
- 7. Document: `autocode comment <key> "Deployed to staging"`
19
- 8. Advance: `autocode next <key>`
20
-
21
- > Or return: `autocode move <key> <targetColumn>`
14
+ 6. Document: `autocode comment <ticket-key> "Deployed to staging"`
15
+ 7. Advance: `autocode next <ticket-key>`
16
+
17
+ > Or return: `autocode move <ticket-key> <target-column-slug>`
22
18
 
23
19
  ## Validation Criteria
24
20
 
@@ -11,14 +11,10 @@ Deployer les changements sur l'environnement de staging pour validation.
11
11
  3. Attendre la fin du deploiement
12
12
  4. Verifier que le deploiement est stable
13
13
  5. Documenter la version deployee
14
- 6. Si travail hors scope detecte :
15
- - Legerement hors scope (amelioration mineure, cas limite) : `autocode new "<titre>" "<description>" -p P2 -l "<labels>" -a "<criteres>" -s patch -c ready`
16
- - Tres hors scope (nouvelle feature, changement majeur) : `autocode new "<titre>" "<description>" -p P2 -l "<labels>" -a "<criteres>" -s patch`
17
- - Dans le scope : traiter directement dans le ticket actuel
18
- 7. Documenter : `autocode comment <key> "Deploye en staging"`
19
- 8. Avancer : `autocode next <key>`
20
-
21
- > Ou retour : `autocode move <key> <targetColumn>`
14
+ 6. Documenter : `autocode comment <ticket-key> "Deploye en staging"`
15
+ 7. Avancer : `autocode next <ticket-key>`
16
+
17
+ > Ou retour : `autocode move <ticket-key> <target-column-slug>`
22
18
 
23
19
  ## Criteres de Validation
24
20
 
@@ -13,13 +13,13 @@ Create technical and/or UX design for the feature. Prepare mockups, diagrams, or
13
13
  5. Define state management approach if applicable
14
14
  6. Document design decisions and trade-offs
15
15
  7. If out of scope work detected:
16
- - Slightly out of scope (minor improvement, edge case): `autocode new "<title>" "<description>" -p P2 -l "<labels>" -a "<criteria>" -s patch -c ready`
17
- - Significantly out of scope (new feature, major change): `autocode new "<title>" "<description>" -p P2 -l "<labels>" -a "<criteria>" -s patch`
16
+ - Slightly out of scope (minor improvement, edge case): `autocode new "<title>" "<description>" --priority P2 --labels "<labels>" --acceptance "<criteria>" --semver patch --column ready`
17
+ - Significantly out of scope (new feature, major change): `autocode new "<title>" "<description>" --priority P2 --labels "<labels>" --acceptance "<criteria>" --semver patch --column backlog`
18
18
  - In scope: handle directly in current ticket
19
- 8. Document: `autocode comment <key> "Design complete: <summary>"`
20
- 9. Advance: `autocode next <key>`
19
+ 8. Document: `autocode comment <ticket-key> "Design complete: <summary>"`
20
+ 9. Advance: `autocode next <ticket-key>`
21
21
 
22
- > Or return: `autocode move <key> <targetColumn>`
22
+ > Or return: `autocode move <ticket-key> <target-column-slug>`
23
23
 
24
24
  ## Validation Criteria
25
25
 
@@ -13,13 +13,13 @@ Creer le design technique et/ou UX pour la fonctionnalite. Preparer les maquette
13
13
  5. Definir l'approche de gestion d'etat si applicable
14
14
  6. Documenter les decisions de design et compromis
15
15
  7. Si travail hors scope detecte :
16
- - Legerement hors scope (amelioration mineure, cas limite) : `autocode new "<titre>" "<description>" -p P2 -l "<labels>" -a "<criteres>" -s patch -c ready`
17
- - Tres hors scope (nouvelle feature, changement majeur) : `autocode new "<titre>" "<description>" -p P2 -l "<labels>" -a "<criteres>" -s patch`
16
+ - Legerement hors scope (amelioration mineure, cas limite) : `autocode new "<titre>" "<description>" --priority P2 --labels "<labels>" --acceptance "<criteres>" --semver patch --column ready`
17
+ - Tres hors scope (nouvelle feature, changement majeur) : `autocode new "<titre>" "<description>" --priority P2 --labels "<labels>" --acceptance "<criteres>" --semver patch --column backlog`
18
18
  - Dans le scope : traiter directement dans le ticket actuel
19
- 8. Documenter : `autocode comment <key> "Design termine : <resume>"`
20
- 9. Avancer : `autocode next <key>`
19
+ 8. Documenter : `autocode comment <ticket-key> "Design termine : <resume>"`
20
+ 9. Avancer : `autocode next <ticket-key>`
21
21
 
22
- > Ou retour : `autocode move <key> <targetColumn>`
22
+ > Ou retour : `autocode move <ticket-key> <target-column-slug>`
23
23
 
24
24
  ## Criteres de Validation
25
25
 
@@ -13,13 +13,13 @@ Implement the feature or fix according to specifications. Write clean, maintaina
13
13
  5. Handle edge cases and errors gracefully
14
14
  6. Test locally before proceeding
15
15
  7. If out of scope work detected:
16
- - Slightly out of scope (minor improvement, edge case): `autocode new "<title>" "<description>" -p P2 -l "<labels>" -a "<criteria>" -s patch -c ready`
17
- - Significantly out of scope (new feature, major change): `autocode new "<title>" "<description>" -p P2 -l "<labels>" -a "<criteria>" -s patch`
16
+ - Slightly out of scope (minor improvement, edge case): `autocode new "<title>" "<description>" --priority P2 --labels "<labels>" --acceptance "<criteria>" --semver patch --column ready`
17
+ - Significantly out of scope (new feature, major change): `autocode new "<title>" "<description>" --priority P2 --labels "<labels>" --acceptance "<criteria>" --semver patch --column backlog`
18
18
  - In scope: handle directly in current ticket
19
- 8. Document: `autocode comment <key> "Development complete: <files modified>"`
20
- 9. Advance: `autocode next <key>`
19
+ 8. Document: `autocode comment <ticket-key> "Development complete: <files modified>"`
20
+ 9. Advance: `autocode next <ticket-key>`
21
21
 
22
- > Or return: `autocode move <key> <targetColumn>`
22
+ > Or return: `autocode move <ticket-key> <target-column-slug>`
23
23
 
24
24
  ## Validation Criteria
25
25
 
@@ -13,13 +13,13 @@ Implementer la fonctionnalite ou le correctif selon les specifications. Ecrire d
13
13
  5. Gerer les cas limites et erreurs elegamment
14
14
  6. Tester localement avant de continuer
15
15
  7. Si travail hors scope detecte :
16
- - Legerement hors scope (amelioration mineure, cas limite) : `autocode new "<titre>" "<description>" -p P2 -l "<labels>" -a "<criteres>" -s patch -c ready`
17
- - Tres hors scope (nouvelle feature, changement majeur) : `autocode new "<titre>" "<description>" -p P2 -l "<labels>" -a "<criteres>" -s patch`
16
+ - Legerement hors scope (amelioration mineure, cas limite) : `autocode new "<titre>" "<description>" --priority P2 --labels "<labels>" --acceptance "<criteres>" --semver patch --column ready`
17
+ - Tres hors scope (nouvelle feature, changement majeur) : `autocode new "<titre>" "<description>" --priority P2 --labels "<labels>" --acceptance "<criteres>" --semver patch --column backlog`
18
18
  - Dans le scope : traiter directement dans le ticket actuel
19
- 8. Documenter : `autocode comment <key> "Developpement termine : <fichiers modifies>"`
20
- 9. Avancer : `autocode next <key>`
19
+ 8. Documenter : `autocode comment <ticket-key> "Developpement termine : <fichiers modifies>"`
20
+ 9. Avancer : `autocode next <ticket-key>`
21
21
 
22
- > Ou retour : `autocode move <key> <targetColumn>`
22
+ > Ou retour : `autocode move <ticket-key> <target-column-slug>`
23
23
 
24
24
  ## Criteres de Validation
25
25
 
@@ -6,11 +6,11 @@ Archive of completed and validated tickets. End of workflow.
6
6
 
7
7
  ## Actions
8
8
 
9
- 1. Document: `autocode comment <key> "Ticket completed"`
9
+ 1. Document: `autocode comment <ticket-key> "Ticket completed"`
10
10
 
11
- > If problem discovered: `autocode move <key> <targetColumn>` or create a new ticket:
12
- > - Slightly out of scope (minor improvement, edge case): `autocode new "<title>" "<description>" -p P2 -l "<labels>" -a "<criteria>" -s patch -c ready`
13
- > - Significantly out of scope (new feature, major change): `autocode new "<title>" "<description>" -p P2 -l "<labels>" -a "<criteria>" -s patch`
11
+ > If problem discovered: `autocode move <ticket-key> <target-column-slug>` or create a new ticket:
12
+ > - Slightly out of scope (minor improvement, edge case): `autocode new "<title>" "<description>" --priority P2 --labels "<labels>" --acceptance "<criteria>" --semver patch --column ready`
13
+ > - Significantly out of scope (new feature, major change): `autocode new "<title>" "<description>" --priority P2 --labels "<labels>" --acceptance "<criteria>" --semver patch --column backlog`
14
14
 
15
15
  ## Validation Criteria
16
16
 
@@ -6,11 +6,11 @@ Archive des tickets termines et valides. Fin du workflow.
6
6
 
7
7
  ## Actions
8
8
 
9
- 1. Documenter : `autocode comment <key> "Ticket termine"`
9
+ 1. Documenter : `autocode comment <ticket-key> "Ticket termine"`
10
10
 
11
- > Si probleme decouvert : `autocode move <key> <targetColumn>` ou creer un nouveau ticket :
12
- > - Legerement hors scope (amelioration mineure, cas limite) : `autocode new "<titre>" "<description>" -p P2 -l "<labels>" -a "<criteres>" -s patch -c ready`
13
- > - Tres hors scope (nouvelle feature, changement majeur) : `autocode new "<titre>" "<description>" -p P2 -l "<labels>" -a "<criteres>" -s patch`
11
+ > Si probleme decouvert : `autocode move <ticket-key> <target-column-slug>` ou creer un nouveau ticket :
12
+ > - Legerement hors scope (amelioration mineure, cas limite) : `autocode new "<titre>" "<description>" --priority P2 --labels "<labels>" --acceptance "<criteres>" --semver patch --column ready`
13
+ > - Tres hors scope (nouvelle feature, changement majeur) : `autocode new "<titre>" "<description>" --priority P2 --labels "<labels>" --acceptance "<criteres>" --semver patch --column backlog`
14
14
 
15
15
  ## Criteres de Validation
16
16
 
@@ -17,14 +17,10 @@ Create a clean, atomic git commit for the changes. Follow conventional commit fo
17
17
  4. Include ticket key in commit body
18
18
  5. Create commit: `git commit -m "<type>: <description>"`
19
19
  6. Verify commit: `git log -1`
20
- 7. If out of scope work detected:
21
- - Slightly out of scope (minor improvement, edge case): `autocode new "<title>" "<description>" -p P2 -l "<labels>" -a "<criteria>" -s patch -c ready`
22
- - Significantly out of scope (new feature, major change): `autocode new "<title>" "<description>" -p P2 -l "<labels>" -a "<criteria>" -s patch`
23
- - In scope: handle directly in current ticket
24
- 8. Document: `autocode comment <key> "Committed: <commit hash>"`
25
- 9. Advance: `autocode next <key>`
20
+ 7. Document: `autocode comment <ticket-key> "Committed: <commit hash>"`
21
+ 8. Advance: `autocode next <ticket-key>`
26
22
 
27
- > Or return: `autocode move <key> <targetColumn>`
23
+ > Or return: `autocode move <ticket-key> <target-column-slug>`
28
24
 
29
25
  ## Validation Criteria
30
26
 
@@ -36,3 +32,5 @@ Create a clean, atomic git commit for the changes. Follow conventional commit fo
36
32
  ## Notes
37
33
 
38
34
  Good commits tell a story. Each commit should be a logical unit of change that could be reverted independently.
35
+
36
+ **IMPORTANT**: Never add any Claude signature or reference in the commit message. No "🤖 Generated with Claude Code", no "Co-Authored-By: Claude...", no AI mention whatsoever.
@@ -17,14 +17,10 @@ Creer un commit git propre et atomique pour les changements. Suivre le format co
17
17
  4. Inclure la cle du ticket dans le corps du commit
18
18
  5. Creer le commit : `git commit -m "<type>: <description>"`
19
19
  6. Verifier le commit : `git log -1`
20
- 7. Si travail hors scope detecte :
21
- - Legerement hors scope (amelioration mineure, cas limite) : `autocode new "<titre>" "<description>" -p P2 -l "<labels>" -a "<criteres>" -s patch -c ready`
22
- - Tres hors scope (nouvelle feature, changement majeur) : `autocode new "<titre>" "<description>" -p P2 -l "<labels>" -a "<criteres>" -s patch`
23
- - Dans le scope : traiter directement dans le ticket actuel
24
- 8. Documenter : `autocode comment <key> "Commite : <hash du commit>"`
25
- 9. Avancer : `autocode next <key>`
20
+ 7. Documenter : `autocode comment <ticket-key> "Commite : <hash du commit>"`
21
+ 8. Avancer : `autocode next <ticket-key>`
26
22
 
27
- > Ou retour : `autocode move <key> <targetColumn>`
23
+ > Ou retour : `autocode move <ticket-key> <target-column-slug>`
28
24
 
29
25
  ## Criteres de Validation
30
26
 
@@ -36,3 +32,5 @@ Creer un commit git propre et atomique pour les changements. Suivre le format co
36
32
  ## Notes
37
33
 
38
34
  De bons commits racontent une histoire. Chaque commit doit etre une unite logique de changement qui pourrait etre revertee independamment.
35
+
36
+ **IMPORTANT** : Ne jamais ajouter de signature ou reference a Claude dans le message de commit. Pas de "🤖 Generated with Claude Code", pas de "Co-Authored-By: Claude...", aucune mention de l'IA.
@@ -13,14 +13,10 @@ Push committed changes to the remote repository. Ensure CI/CD pipelines pass.
13
13
  5. Verify push succeeded
14
14
  6. Check CI/CD pipeline status
15
15
  7. If pipeline fails: fix issues and re-push
16
- 8. If out of scope work detected:
17
- - Slightly out of scope (minor improvement, edge case): `autocode new "<title>" "<description>" -p P2 -l "<labels>" -a "<criteria>" -s patch -c ready`
18
- - Significantly out of scope (new feature, major change): `autocode new "<title>" "<description>" -p P2 -l "<labels>" -a "<criteria>" -s patch`
19
- - In scope: handle directly in current ticket
20
- 9. Document: `autocode comment <key> "Pushed to <branch>"`
21
- 10. Advance: `autocode next <key>`
22
-
23
- > Or return: `autocode move <key> <targetColumn>`
16
+ 8. Document: `autocode comment <ticket-key> "Pushed to <branch>"`
17
+ 9. Advance: `autocode next <ticket-key>`
18
+
19
+ > Or return: `autocode move <ticket-key> <target-column-slug>`
24
20
 
25
21
  ## Validation Criteria
26
22
 
@@ -13,14 +13,10 @@ Pousser les changements commites vers le depot distant. S'assurer que les pipeli
13
13
  5. Verifier que le push a reussi
14
14
  6. Verifier le statut du pipeline CI/CD
15
15
  7. Si le pipeline echoue : corriger les problemes et re-pousser
16
- 8. Si travail hors scope detecte :
17
- - Legerement hors scope (amelioration mineure, cas limite) : `autocode new "<titre>" "<description>" -p P2 -l "<labels>" -a "<criteres>" -s patch -c ready`
18
- - Tres hors scope (nouvelle feature, changement majeur) : `autocode new "<titre>" "<description>" -p P2 -l "<labels>" -a "<criteres>" -s patch`
19
- - Dans le scope : traiter directement dans le ticket actuel
20
- 9. Documenter : `autocode comment <key> "Pousse vers <branche>"`
21
- 10. Avancer : `autocode next <key>`
22
-
23
- > Ou retour : `autocode move <key> <targetColumn>`
16
+ 8. Documenter : `autocode comment <ticket-key> "Pousse vers <branche>"`
17
+ 9. Avancer : `autocode next <ticket-key>`
18
+
19
+ > Ou retour : `autocode move <ticket-key> <target-column-slug>`
24
20
 
25
21
  ## Criteres de Validation
26
22
 
@@ -14,14 +14,10 @@ Create a version tag for the release. Follow semantic versioning.
14
14
  3. Create annotated tag: `git tag -a v<version> -m "<release notes>"`
15
15
  4. Push tag: `git push origin v<version>`
16
16
  5. Verify tag on remote
17
- 6. If out of scope work detected:
18
- - Slightly out of scope (minor improvement, edge case): `autocode new "<title>" "<description>" -p P2 -l "<labels>" -a "<criteria>" -s patch -c ready`
19
- - Significantly out of scope (new feature, major change): `autocode new "<title>" "<description>" -p P2 -l "<labels>" -a "<criteria>" -s patch`
20
- - In scope: handle directly in current ticket
21
- 7. Document: `autocode comment <key> "Tagged: v<version>"`
22
- 8. Advance: `autocode next <key>`
23
-
24
- > Or return: `autocode move <key> <targetColumn>`
17
+ 6. Document: `autocode comment <ticket-key> "Tagged: v<version>"`
18
+ 7. Advance: `autocode next <ticket-key>`
19
+
20
+ > Or return: `autocode move <ticket-key> <target-column-slug>`
25
21
 
26
22
  ## Validation Criteria
27
23