@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
@@ -14,14 +14,10 @@ Creer un tag de version pour la release. Suivre le versionnement semantique.
14
14
  3. Creer un tag annote : `git tag -a v<version> -m "<notes de release>"`
15
15
  4. Pousser le tag : `git push origin v<version>`
16
16
  5. Verifier le tag sur le distant
17
- 6. 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
- 7. Documenter : `autocode comment <key> "Tag cree : v<version>"`
22
- 8. Avancer : `autocode next <key>`
23
-
24
- > Ou retour : `autocode move <key> <targetColumn>`
17
+ 6. Documenter : `autocode comment <ticket-key> "Tag cree : v<version>"`
18
+ 7. Avancer : `autocode next <ticket-key>`
19
+
20
+ > Ou retour : `autocode move <ticket-key> <target-column-slug>`
25
21
 
26
22
  ## Criteres de Validation
27
23
 
@@ -12,13 +12,13 @@ Active development. Ticket is being worked on, code is being written.
12
12
  4. Implement the solution
13
13
  5. Test locally that it works
14
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`
15
+ - Slightly out of scope (minor improvement, edge case): `autocode new "<title>" "<description>" --priority P2 --labels "<labels>" --acceptance "<criteria>" --semver patch --column ready`
16
+ - Significantly out of scope (new feature, major change): `autocode new "<title>" "<description>" --priority P2 --labels "<labels>" --acceptance "<criteria>" --semver patch --column backlog`
17
17
  - In scope: handle directly in current ticket
18
- 7. Document: `autocode comment <key> "Work completed"`
19
- 8. Advance: `autocode next <key>`
18
+ 7. Document: `autocode comment <ticket-key> "Work completed"`
19
+ 8. Advance: `autocode next <ticket-key>`
20
20
 
21
- > Or return: `autocode move <key> <targetColumn>`
21
+ > Or return: `autocode move <ticket-key> <target-column-slug>`
22
22
 
23
23
  ## Validation Criteria
24
24
 
@@ -12,13 +12,13 @@ Developpement actif. Le ticket est en cours de travail, le code est en cours d'e
12
12
  4. Implementer la solution
13
13
  5. Tester localement que ca fonctionne
14
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`
15
+ - Legerement hors scope (amelioration mineure, cas limite) : `autocode new "<titre>" "<description>" --priority P2 --labels "<labels>" --acceptance "<criteres>" --semver patch --column ready`
16
+ - Tres hors scope (nouvelle feature, changement majeur) : `autocode new "<titre>" "<description>" --priority P2 --labels "<labels>" --acceptance "<criteres>" --semver patch --column backlog`
17
17
  - Dans le scope : traiter directement dans le ticket actuel
18
- 7. Documenter : `autocode comment <key> "Travail effectue"`
19
- 8. Avancer : `autocode next <key>`
18
+ 7. Documenter : `autocode comment <ticket-key> "Travail effectue"`
19
+ 8. Avancer : `autocode next <ticket-key>`
20
20
 
21
- > Ou retour : `autocode move <key> <targetColumn>`
21
+ > Ou retour : `autocode move <ticket-key> <target-column-slug>`
22
22
 
23
23
  ## Criteres de Validation
24
24
 
@@ -13,13 +13,13 @@ Analyze and qualify the ticket requirement. Ensure the request is clear, feasibl
13
13
  5. Identify dependencies with other tickets or systems
14
14
  6. If clarification needed: add comment with questions
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> "Qualification complete: <summary>"`
20
- 9. Advance: `autocode next <key>`
19
+ 8. Document: `autocode comment <ticket-key> "Qualification 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 @@ Analyser et qualifier le besoin du ticket. S'assurer que la demande est claire,
13
13
  5. Identifier les dependances avec d'autres tickets ou systemes
14
14
  6. Si clarification necessaire : ajouter un commentaire avec les questions
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> "Qualification terminee : <resume>"`
20
- 9. Avancer : `autocode next <key>`
19
+ 8. Documenter : `autocode comment <ticket-key> "Qualification terminee : <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
 
@@ -10,14 +10,10 @@ Re-run all automated E2E tests to ensure refactoring did not introduce regressio
10
10
  2. Compare results with pre-refactoring run
11
11
  3. If new failures: identify cause (test or code issue)
12
12
  4. Fix any regressions before proceeding
13
- 5. If out of scope work detected:
14
- - Slightly out of scope (minor improvement, edge case): `autocode new "<title>" "<description>" -p P2 -l "<labels>" -a "<criteria>" -s patch -c ready`
15
- - Significantly out of scope (new feature, major change): `autocode new "<title>" "<description>" -p P2 -l "<labels>" -a "<criteria>" -s patch`
16
- - In scope: handle directly in current ticket
17
- 6. Document: `autocode comment <key> "Retest Cypress OK"`
18
- 7. Advance: `autocode next <key>`
19
-
20
- > Or return: `autocode move <key> <targetColumn>`
13
+ 5. Document: `autocode comment <ticket-key> "Retest Cypress OK"`
14
+ 6. Advance: `autocode next <ticket-key>`
15
+
16
+ > Or return: `autocode move <ticket-key> <target-column-slug>`
21
17
 
22
18
  ## Validation Criteria
23
19
 
@@ -10,14 +10,10 @@ Re-executer tous les tests E2E automatises pour s'assurer que le refactoring n'a
10
10
  2. Comparer les resultats avec l'execution pre-refactoring
11
11
  3. Si nouveaux echecs : identifier la cause (probleme de test ou de code)
12
12
  4. Corriger toute regression avant de continuer
13
- 5. Si travail hors scope detecte :
14
- - Legerement hors scope (amelioration mineure, cas limite) : `autocode new "<titre>" "<description>" -p P2 -l "<labels>" -a "<criteres>" -s patch -c ready`
15
- - Tres hors scope (nouvelle feature, changement majeur) : `autocode new "<titre>" "<description>" -p P2 -l "<labels>" -a "<criteres>" -s patch`
16
- - Dans le scope : traiter directement dans le ticket actuel
17
- 6. Documenter : `autocode comment <key> "Retest Cypress OK"`
18
- 7. Avancer : `autocode next <key>`
19
-
20
- > Ou retour : `autocode move <key> <targetColumn>`
13
+ 5. Documenter : `autocode comment <ticket-key> "Retest Cypress OK"`
14
+ 6. Avancer : `autocode next <ticket-key>`
15
+
16
+ > Ou retour : `autocode move <ticket-key> <target-column-slug>`
21
17
 
22
18
  ## Criteres de Validation
23
19
 
@@ -12,14 +12,11 @@ Post-refactoring validation with Playwright. Verify that refactoring did not bre
12
12
  4. Verify edge cases still work
13
13
  5. Compare behavior with pre-refactoring state
14
14
  6. If regression detected: return to review step
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> "Retest Playwright OK"`
20
- 9. Advance: `autocode next <key>`
21
-
22
- > Or return: `autocode move <key> <targetColumn>`
15
+ 7. Do not test functionality outside the ticket scope
16
+ 8. Document: `autocode comment <ticket-key> "Retest Playwright OK"`
17
+ 9. Advance: `autocode next <ticket-key>`
18
+
19
+ > Or return: `autocode move <ticket-key> <target-column-slug>`
23
20
 
24
21
  ## Validation Criteria
25
22
 
@@ -12,14 +12,11 @@ Validation post-refactoring avec Playwright. Verifier que le refactoring n'a pas
12
12
  4. Verifier que les cas limites fonctionnent toujours
13
13
  5. Comparer le comportement avec l'etat pre-refactoring
14
14
  6. Si regression detectee : retour a l'etape de review
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> "Retest Playwright OK"`
20
- 9. Avancer : `autocode next <key>`
21
-
22
- > Ou retour : `autocode move <key> <targetColumn>`
15
+ 7. Ne pas tester de fonctionnalites hors scope du ticket
16
+ 8. Documenter : `autocode comment <ticket-key> "Retest Playwright OK"`
17
+ 9. Avancer : `autocode next <ticket-key>`
18
+
19
+ > Ou retour : `autocode move <ticket-key> <target-column-slug>`
23
20
 
24
21
  ## Criteres de Validation
25
22
 
@@ -13,14 +13,11 @@ Re-run all tests after bug fixes or corrections. Ensure no regressions were intr
13
13
  5. Verify the original issue is fixed
14
14
  6. Check for regressions in related functionality
15
15
  7. If tests fail: return to appropriate column for fixes
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> "Retest passed: all tests green"`
21
- 10. Advance: `autocode next <key>`
22
-
23
- > Or return: `autocode move <key> <targetColumn>`
16
+ 8. Do not write tests for code outside the ticket scope
17
+ 9. Document: `autocode comment <ticket-key> "Retest passed: all tests green"`
18
+ 10. Advance: `autocode next <ticket-key>`
19
+
20
+ > Or return: `autocode move <ticket-key> <target-column-slug>`
24
21
 
25
22
  ## Validation Criteria
26
23
 
@@ -13,14 +13,11 @@ Re-executer tous les tests apres corrections de bugs. S'assurer qu'aucune regres
13
13
  5. Verifier que le probleme original est corrige
14
14
  6. Verifier les regressions dans les fonctionnalites liees
15
15
  7. Si les tests echouent : retourner a la colonne appropriee pour corrections
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> "Retest OK : tous les tests verts"`
21
- 10. Avancer : `autocode next <key>`
22
-
23
- > Ou retour : `autocode move <key> <targetColumn>`
16
+ 8. Ne pas ecrire de tests pour du code hors scope du ticket
17
+ 9. Documenter : `autocode comment <ticket-key> "Retest OK : tous les tests verts"`
18
+ 10. Avancer : `autocode next <ticket-key>`
19
+
20
+ > Ou retour : `autocode move <ticket-key> <target-column-slug>`
24
21
 
25
22
  ## Criteres de Validation
26
23
 
@@ -12,14 +12,10 @@ Code quality audit. Verify conventions and best practices are followed.
12
12
  4. Verify file size (components < 300 lines)
13
13
  5. Verify import organization
14
14
  6. Fix violations found
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> "Review best practices OK"`
20
- 9. Advance: `autocode next <key>`
21
-
22
- > Or return: `autocode move <key> <targetColumn>`
15
+ 7. Document: `autocode comment <ticket-key> "Review best practices OK"`
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 @@ Audit qualite du code. Verifier que les conventions et bonnes pratiques sont res
12
12
  4. Verifier la taille des fichiers (composants < 300 lignes)
13
13
  5. Verifier l'organisation des imports
14
14
  6. Corriger les violations trouvees
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> "Review best practices OK"`
20
- 9. Avancer : `autocode next <key>`
21
-
22
- > Ou retour : `autocode move <key> <targetColumn>`
15
+ 7. Documenter : `autocode comment <ticket-key> "Review best practices OK"`
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
 
@@ -13,14 +13,10 @@ Perform peer code review. Ensure code quality, readability, and adherence to pro
13
13
  5. Check error handling
14
14
  6. Suggest improvements if needed
15
15
  7. If issues found: add comment with feedback and return to dev
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> "Code review passed: <summary>"`
21
- 10. Advance: `autocode next <key>`
22
-
23
- > Or return: `autocode move <key> <targetColumn>`
16
+ 8. Document: `autocode comment <ticket-key> "Code review passed: <summary>"`
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 @@ Effectuer une revue de code. Assurer la qualite du code, sa lisibilite et le res
13
13
  5. Verifier la gestion des erreurs
14
14
  6. Suggerer des ameliorations si necessaire
15
15
  7. Si problemes trouves : ajouter un commentaire avec feedback et retourner au dev
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> "Code review OK : <resume>"`
21
- 10. Avancer : `autocode next <key>`
22
-
23
- > Ou retour : `autocode move <key> <targetColumn>`
16
+ 8. Documenter : `autocode comment <ticket-key> "Code review OK : <resume>"`
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
 
@@ -12,14 +12,10 @@ Verify code integrates harmoniously with existing project architecture.
12
12
  4. Check error handling (uniform try/catch)
13
13
  5. Verify correct Pinia store usage
14
14
  6. Fix inconsistencies
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> "Review consistency OK"`
20
- 9. Advance: `autocode next <key>`
21
-
22
- > Or return: `autocode move <key> <targetColumn>`
15
+ 7. Document: `autocode comment <ticket-key> "Review consistency OK"`
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 @@ Verifier que le code s'integre harmonieusement avec l'architecture existante du
12
12
  4. Controler la gestion d'erreurs (try/catch uniforme)
13
13
  5. Verifier l'usage correct des stores Pinia
14
14
  6. Corriger les incoherences
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> "Review consistency OK"`
20
- 9. Avancer : `autocode next <key>`
21
-
22
- > Ou retour : `autocode move <key> <targetColumn>`
15
+ 7. Documenter : `autocode comment <ticket-key> "Review consistency OK"`
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
 
@@ -12,14 +12,10 @@ Identify and eliminate code duplication. Factor into reusable functions/composab
12
12
  4. Detect copy-pasted business logic
13
13
  5. Extract to composable/service/shared function if >2 usages
14
14
  6. Update all existing calls
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> "Review no duplication OK"`
20
- 9. Advance: `autocode next <key>`
21
-
22
- > Or return: `autocode move <key> <targetColumn>`
15
+ 7. Document: `autocode comment <ticket-key> "Review no duplication OK"`
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 @@ Identifier et eliminer la duplication de code. Factoriser en fonctions/composabl
12
12
  4. Detecter la logique metier copiee-collee
13
13
  5. Extraire en composable/service/fonction partagee si >2 usages
14
14
  6. Mettre a jour tous les appels existants
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> "Review no duplication OK"`
20
- 9. Avancer : `autocode next <key>`
21
-
22
- > Ou retour : `autocode move <key> <targetColumn>`
15
+ 7. Documenter : `autocode comment <ticket-key> "Review no duplication OK"`
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,13 +14,13 @@ Security audit. Identify and fix potential vulnerabilities (OWASP Top 10).
14
14
  6. Audit API calls (injection, XSS)
15
15
  7. Fix vulnerabilities
16
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`
17
+ - Slightly out of scope (minor improvement, edge case): `autocode new "<title>" "<description>" --priority P2 --labels "<labels>" --acceptance "<criteria>" --semver patch --column ready`
18
+ - Significantly out of scope (new feature, major change): `autocode new "<title>" "<description>" --priority P2 --labels "<labels>" --acceptance "<criteria>" --semver patch --column backlog`
19
19
  - In scope: handle directly in current ticket
20
- 9. Document: `autocode comment <key> "Review security OK"`
21
- 10. Advance: `autocode next <key>`
20
+ 9. Document: `autocode comment <ticket-key> "Review security OK"`
21
+ 10. Advance: `autocode next <ticket-key>`
22
22
 
23
- > Or return: `autocode move <key> <targetColumn>`
23
+ > Or return: `autocode move <ticket-key> <target-column-slug>`
24
24
 
25
25
  ## Validation Criteria
26
26
 
@@ -14,13 +14,13 @@ Audit securite. Identifier et corriger les vulnerabilites potentielles (OWASP To
14
14
  6. Auditer les appels API (injection, XSS)
15
15
  7. Corriger les vulnerabilites
16
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`
17
+ - Legerement hors scope (amelioration mineure, cas limite) : `autocode new "<titre>" "<description>" --priority P2 --labels "<labels>" --acceptance "<criteres>" --semver patch --column ready`
18
+ - Tres hors scope (nouvelle feature, changement majeur) : `autocode new "<titre>" "<description>" --priority P2 --labels "<labels>" --acceptance "<criteres>" --semver patch --column backlog`
19
19
  - Dans le scope : traiter directement dans le ticket actuel
20
- 9. Documenter : `autocode comment <key> "Review security OK"`
21
- 10. Avancer : `autocode next <key>`
20
+ 9. Documenter : `autocode comment <ticket-key> "Review security OK"`
21
+ 10. Avancer : `autocode next <ticket-key>`
22
22
 
23
- > Ou retour : `autocode move <key> <targetColumn>`
23
+ > Ou retour : `autocode move <ticket-key> <target-column-slug>`
24
24
 
25
25
  ## Criteres de Validation
26
26
 
@@ -13,13 +13,13 @@ Write detailed technical specifications for the ticket. Define the implementatio
13
13
  5. Specify API contracts if applicable
14
14
  6. Document edge cases and error handling
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> "Specification complete: <technical approach>"`
20
- 9. Advance: `autocode next <key>`
19
+ 8. Document: `autocode comment <ticket-key> "Specification complete: <technical approach>"`
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 @@ Rediger les specifications techniques detaillees pour le ticket. Definir clairem
13
13
  5. Specifier les contrats API si applicable
14
14
  6. Documenter les cas limites et la gestion d'erreurs
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> "Specification terminee : <approche technique>"`
20
- 9. Avancer : `autocode next <key>`
19
+ 8. Documenter : `autocode comment <ticket-key> "Specification terminee : <approche technique>"`
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
 
@@ -18,14 +18,13 @@ If the task is small enough to be completed in one go, proceed directly without
18
18
  2. Identify natural boundaries between features, layers, or responsibilities
19
19
  3. Define clear acceptance criteria for each sub-ticket
20
20
  4. Ensure each split ticket is independently testable and deployable
21
- 5. Create sub-tickets: `autocode new "<title>" "<description>" -p P2 -l "<labels>" -a "<criteria>" -s patch`
21
+ 5. Create sub-tickets: `autocode new "<title>" "<description>" --priority P2 --labels "<labels>" --acceptance "<criteria>" --semver patch --column backlog`
22
22
  6. Verify no functionality has been forgotten or duplicated across tickets
23
23
  7. Create an integration ticket that references all sub-tickets to validate cohesion
24
- 8. If out of scope work detected: `autocode new "<title>" "<description>" -p P2 -l "<labels>" -a "<criteria>" -s patch`
25
- 9. Document: `autocode comment <key> "[summary]"`
26
- 10. Advance: `autocode next <key>`
24
+ 8. Document: `autocode comment <ticket-key> "[summary]"`
25
+ 9. Advance: `autocode next <ticket-key>`
27
26
 
28
- > Or return: `autocode move <key> <targetColumn>`
27
+ > Or return: `autocode move <ticket-key> <target-column-slug>`
29
28
 
30
29
  ## Validation Criteria
31
30
 
@@ -18,14 +18,13 @@ Si la tâche est suffisamment petite pour être complétée en une fois, procéd
18
18
  2. Identifier les frontières naturelles entre fonctionnalités, couches ou responsabilités
19
19
  3. Définir des critères d'acceptation clairs pour chaque sous-ticket
20
20
  4. S'assurer que chaque ticket découpé est testable et déployable indépendamment
21
- 5. Créer les sous-tickets : `autocode new "<title>" "<description>" -p P2 -l "<labels>" -a "<criteria>" -s patch`
21
+ 5. Créer les sous-tickets : `autocode new "<title>" "<description>" --priority P2 --labels "<labels>" --acceptance "<criteria>" --semver patch --column backlog`
22
22
  6. Vérifier qu'aucune fonctionnalité n'a été oubliée ou dupliquée entre les tickets
23
23
  7. Créer un ticket d'intégration qui référence tous les sous-tickets pour valider la cohésion
24
- 8. Si travail hors scope détecté : `autocode new "<title>" "<description>" -p P2 -l "<labels>" -a "<criteria>" -s patch`
25
- 9. Documenter : `autocode comment <key> "[résumé]"`
26
- 10. Avancer : `autocode next <key>`
24
+ 8. Documenter : `autocode comment <ticket-key> "[résumé]"`
25
+ 9. Avancer : `autocode next <ticket-key>`
27
26
 
28
- > Ou retourner : `autocode move <key> <targetColumn>`
27
+ > Ou retourner : `autocode move <ticket-key> <target-column-slug>`
29
28
 
30
29
  ## Critères de Validation
31
30
 
@@ -12,14 +12,11 @@ Write AND execute E2E automated tests to prevent regressions.
12
12
  4. Describe tests clearly (describe/it)
13
13
  5. Execute tests: npx cypress run
14
14
  6. If failures: fix tests or code
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> "Cypress tests OK"`
20
- 9. Advance: `autocode next <key>`
21
-
22
- > Or return: `autocode move <key> <targetColumn>`
15
+ 7. Do not write tests for code outside the ticket scope
16
+ 8. Document: `autocode comment <ticket-key> "Cypress tests OK"`
17
+ 9. Advance: `autocode next <ticket-key>`
18
+
19
+ > Or return: `autocode move <ticket-key> <target-column-slug>`
23
20
 
24
21
  ## Validation Criteria
25
22
 
@@ -12,14 +12,11 @@ Rediger ET executer des tests E2E automatises pour prevenir les regressions.
12
12
  4. Decrire les tests clairement (describe/it)
13
13
  5. Executer les tests : npx cypress run
14
14
  6. Si echecs : corriger les tests ou le code
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> "Tests Cypress OK"`
20
- 9. Avancer : `autocode next <key>`
21
-
22
- > Ou retour : `autocode move <key> <targetColumn>`
15
+ 7. Ne pas ecrire de tests pour du code hors scope du ticket
16
+ 8. Documenter : `autocode comment <ticket-key> "Tests Cypress OK"`
17
+ 9. Avancer : `autocode next <ticket-key>`
18
+
19
+ > Ou retour : `autocode move <ticket-key> <target-column-slug>`
23
20
 
24
21
  ## Criteres de Validation
25
22
 
@@ -13,14 +13,11 @@ Run integration tests to verify components work correctly together. Ensure syste
13
13
  5. Test database operations
14
14
  6. Test external service connections
15
15
  7. Fix any failing tests
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> "Integration tests passed"`
21
- 10. Advance: `autocode next <key>`
22
-
23
- > Or return: `autocode move <key> <targetColumn>`
16
+ 8. Do not write tests for code outside the ticket scope
17
+ 9. Document: `autocode comment <ticket-key> "Integration tests passed"`
18
+ 10. Advance: `autocode next <ticket-key>`
19
+
20
+ > Or return: `autocode move <ticket-key> <target-column-slug>`
24
21
 
25
22
  ## Validation Criteria
26
23