@autocode-cli/autocode 0.1.8 → 0.1.10
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/dist/cli/commands/new.d.ts.map +1 -1
- package/dist/cli/commands/new.js +20 -2
- package/dist/cli/commands/new.js.map +1 -1
- package/dist/server/api.js +1 -1
- package/dist/server/dashboard/pages/pipeline-configurator.d.ts.map +1 -1
- package/dist/server/dashboard/pages/pipeline-configurator.js +121 -4
- package/dist/server/dashboard/pages/pipeline-configurator.js.map +1 -1
- package/package.json +1 -1
- package/templates/catalog.yaml +3 -1
- package/templates/prompts/backlog.en.md +5 -2
- package/templates/prompts/backlog.fr.md +5 -2
- package/templates/prompts/changelog.en.md +5 -2
- package/templates/prompts/changelog.fr.md +5 -2
- package/templates/prompts/deploy-prod.en.md +5 -2
- package/templates/prompts/deploy-prod.fr.md +5 -2
- package/templates/prompts/deploy-staging.en.md +5 -2
- package/templates/prompts/deploy-staging.fr.md +5 -2
- package/templates/prompts/design.en.md +5 -2
- package/templates/prompts/design.fr.md +5 -2
- package/templates/prompts/dev.en.md +5 -2
- package/templates/prompts/dev.fr.md +5 -2
- package/templates/prompts/done.en.md +3 -1
- package/templates/prompts/done.fr.md +3 -1
- package/templates/prompts/git-commit.en.md +5 -2
- package/templates/prompts/git-commit.fr.md +5 -2
- package/templates/prompts/git-push.en.md +5 -2
- package/templates/prompts/git-push.fr.md +5 -2
- package/templates/prompts/git-tag.en.md +5 -2
- package/templates/prompts/git-tag.fr.md +5 -2
- package/templates/prompts/in-progress.en.md +5 -2
- package/templates/prompts/in-progress.fr.md +5 -2
- package/templates/prompts/qualification.en.md +5 -2
- package/templates/prompts/qualification.fr.md +5 -2
- package/templates/prompts/ready.en.md +5 -2
- package/templates/prompts/ready.fr.md +5 -2
- package/templates/prompts/retest-cypress.en.md +5 -2
- package/templates/prompts/retest-cypress.fr.md +5 -2
- package/templates/prompts/retest-playwright.en.md +5 -2
- package/templates/prompts/retest-playwright.fr.md +5 -2
- package/templates/prompts/retest.en.md +5 -2
- package/templates/prompts/retest.fr.md +5 -2
- package/templates/prompts/review-best-practices.en.md +5 -2
- package/templates/prompts/review-best-practices.fr.md +5 -2
- package/templates/prompts/review-code.en.md +5 -2
- package/templates/prompts/review-code.fr.md +5 -2
- package/templates/prompts/review-consistency.en.md +5 -2
- package/templates/prompts/review-consistency.fr.md +5 -2
- package/templates/prompts/review-no-duplication.en.md +5 -2
- package/templates/prompts/review-no-duplication.fr.md +5 -2
- package/templates/prompts/review-security.en.md +5 -2
- package/templates/prompts/review-security.fr.md +5 -2
- package/templates/prompts/specification.en.md +5 -2
- package/templates/prompts/specification.fr.md +5 -2
- package/templates/prompts/splitter.en.md +31 -0
- package/templates/prompts/splitter.fr.md +33 -0
- package/templates/prompts/testing-cypress.en.md +5 -2
- package/templates/prompts/testing-cypress.fr.md +5 -2
- package/templates/prompts/testing-integration.en.md +5 -2
- package/templates/prompts/testing-integration.fr.md +5 -2
- package/templates/prompts/testing-playwright.en.md +5 -2
- package/templates/prompts/testing-playwright.fr.md +5 -2
- package/templates/prompts/testing-unit.en.md +5 -2
- package/templates/prompts/testing-unit.fr.md +5 -2
- package/templates/prompts/update-docs.en.md +5 -2
- package/templates/prompts/update-docs.fr.md +5 -2
- package/templates/prompts/validate-staging.en.md +5 -2
- package/templates/prompts/validate-staging.fr.md +5 -2
|
@@ -13,11 +13,14 @@ 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 :
|
|
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
|
|
17
20
|
9. Documenter : `autocode comment <key> "Pousse vers <branche>"`
|
|
18
21
|
10. Avancer : `autocode next <key>`
|
|
19
22
|
|
|
20
|
-
> Ou retour : `autocode move <key> <
|
|
23
|
+
> Ou retour : `autocode move <key> <targetColumn>`
|
|
21
24
|
|
|
22
25
|
## Criteres de Validation
|
|
23
26
|
|
|
@@ -14,11 +14,14 @@ 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:
|
|
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
|
|
18
21
|
7. Document: `autocode comment <key> "Tagged: v<version>"`
|
|
19
22
|
8. Advance: `autocode next <key>`
|
|
20
23
|
|
|
21
|
-
> Or return: `autocode move <key> <
|
|
24
|
+
> Or return: `autocode move <key> <targetColumn>`
|
|
22
25
|
|
|
23
26
|
## Validation Criteria
|
|
24
27
|
|
|
@@ -14,11 +14,14 @@ 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 :
|
|
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
|
|
18
21
|
7. Documenter : `autocode comment <key> "Tag cree : v<version>"`
|
|
19
22
|
8. Avancer : `autocode next <key>`
|
|
20
23
|
|
|
21
|
-
> Ou retour : `autocode move <key> <
|
|
24
|
+
> Ou retour : `autocode move <key> <targetColumn>`
|
|
22
25
|
|
|
23
26
|
## Criteres de Validation
|
|
24
27
|
|
|
@@ -12,11 +12,14 @@ 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. Commit + push work done
|
|
15
|
-
7. If out of scope work detected:
|
|
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
|
|
16
19
|
8. Document: `autocode comment <key> "Work completed"`
|
|
17
20
|
9. Advance: `autocode next <key>`
|
|
18
21
|
|
|
19
|
-
> Or return: `autocode move <key> <
|
|
22
|
+
> Or return: `autocode move <key> <targetColumn>`
|
|
20
23
|
|
|
21
24
|
## Validation Criteria
|
|
22
25
|
|
|
@@ -12,11 +12,14 @@ 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. Commit + push du travail effectue
|
|
15
|
-
7. Si travail hors scope detecte :
|
|
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
|
|
16
19
|
8. Documenter : `autocode comment <key> "Travail effectue"`
|
|
17
20
|
9. Avancer : `autocode next <key>`
|
|
18
21
|
|
|
19
|
-
> Ou retour : `autocode move <key> <
|
|
22
|
+
> Ou retour : `autocode move <key> <targetColumn>`
|
|
20
23
|
|
|
21
24
|
## Criteres de Validation
|
|
22
25
|
|
|
@@ -12,11 +12,14 @@ Analyze and qualify the ticket requirement. Ensure the request is clear, feasibl
|
|
|
12
12
|
4. Estimate complexity (simple/medium/complex)
|
|
13
13
|
5. Identify dependencies with other tickets or systems
|
|
14
14
|
6. If clarification needed: add comment with questions
|
|
15
|
-
7. If out of scope work detected:
|
|
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
|
|
16
19
|
8. Document: `autocode comment <key> "Qualification complete: <summary>"`
|
|
17
20
|
9. Advance: `autocode next <key>`
|
|
18
21
|
|
|
19
|
-
> Or return: `autocode move <key> <
|
|
22
|
+
> Or return: `autocode move <key> <targetColumn>`
|
|
20
23
|
|
|
21
24
|
## Validation Criteria
|
|
22
25
|
|
|
@@ -12,11 +12,14 @@ Analyser et qualifier le besoin du ticket. S'assurer que la demande est claire,
|
|
|
12
12
|
4. Estimer la complexite (simple/moyenne/complexe)
|
|
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
|
-
7. Si travail hors scope detecte :
|
|
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
|
|
16
19
|
8. Documenter : `autocode comment <key> "Qualification terminee : <resume>"`
|
|
17
20
|
9. Avancer : `autocode next <key>`
|
|
18
21
|
|
|
19
|
-
> Ou retour : `autocode move <key> <
|
|
22
|
+
> Ou retour : `autocode move <key> <targetColumn>`
|
|
20
23
|
|
|
21
24
|
## Criteres de Validation
|
|
22
25
|
|
|
@@ -12,11 +12,14 @@ Qualified tickets ready to be worked on. All information needed is available.
|
|
|
12
12
|
4. Implement the solution
|
|
13
13
|
5. Test locally that it works
|
|
14
14
|
6. Commit + push work done
|
|
15
|
-
7. If out of scope work detected:
|
|
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
|
|
16
19
|
8. Document: `autocode comment <key> "Work completed"`
|
|
17
20
|
9. Advance: `autocode next <key>`
|
|
18
21
|
|
|
19
|
-
> Or return: `autocode move <key> <
|
|
22
|
+
> Or return: `autocode move <key> <targetColumn>`
|
|
20
23
|
|
|
21
24
|
## Validation Criteria
|
|
22
25
|
|
|
@@ -12,11 +12,14 @@ Tickets qualifies prets a etre travailles. Toutes les informations necessaires s
|
|
|
12
12
|
4. Implementer la solution
|
|
13
13
|
5. Tester localement que ca fonctionne
|
|
14
14
|
6. Commit + push du travail effectue
|
|
15
|
-
7. Si travail hors scope detecte :
|
|
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
|
|
16
19
|
8. Documenter : `autocode comment <key> "Travail effectue"`
|
|
17
20
|
9. Avancer : `autocode next <key>`
|
|
18
21
|
|
|
19
|
-
> Ou retour : `autocode move <key> <
|
|
22
|
+
> Ou retour : `autocode move <key> <targetColumn>`
|
|
20
23
|
|
|
21
24
|
## Criteres de Validation
|
|
22
25
|
|
|
@@ -11,11 +11,14 @@ Re-run all automated E2E tests to ensure refactoring did not introduce regressio
|
|
|
11
11
|
3. If new failures: identify cause (test or code issue)
|
|
12
12
|
4. Fix any regressions before proceeding
|
|
13
13
|
5. Commit test fixes if needed
|
|
14
|
-
6. If out of scope work detected:
|
|
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
|
|
15
18
|
7. Document: `autocode comment <key> "Retest Cypress OK"`
|
|
16
19
|
8. Advance: `autocode next <key>`
|
|
17
20
|
|
|
18
|
-
> Or return: `autocode move <key> <
|
|
21
|
+
> Or return: `autocode move <key> <targetColumn>`
|
|
19
22
|
|
|
20
23
|
## Validation Criteria
|
|
21
24
|
|
|
@@ -11,11 +11,14 @@ Re-executer tous les tests E2E automatises pour s'assurer que le refactoring n'a
|
|
|
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
13
|
5. Commiter les corrections de tests si necessaire
|
|
14
|
-
6. Si travail hors scope detecte :
|
|
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
|
|
15
18
|
7. Documenter : `autocode comment <key> "Retest Cypress OK"`
|
|
16
19
|
8. Avancer : `autocode next <key>`
|
|
17
20
|
|
|
18
|
-
> Ou retour : `autocode move <key> <
|
|
21
|
+
> Ou retour : `autocode move <key> <targetColumn>`
|
|
19
22
|
|
|
20
23
|
## Criteres de Validation
|
|
21
24
|
|
|
@@ -12,11 +12,14 @@ 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:
|
|
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
|
|
16
19
|
8. Document: `autocode comment <key> "Retest Playwright OK"`
|
|
17
20
|
9. Advance: `autocode next <key>`
|
|
18
21
|
|
|
19
|
-
> Or return: `autocode move <key> <
|
|
22
|
+
> Or return: `autocode move <key> <targetColumn>`
|
|
20
23
|
|
|
21
24
|
## Validation Criteria
|
|
22
25
|
|
|
@@ -12,11 +12,14 @@ 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 :
|
|
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
|
|
16
19
|
8. Documenter : `autocode comment <key> "Retest Playwright OK"`
|
|
17
20
|
9. Avancer : `autocode next <key>`
|
|
18
21
|
|
|
19
|
-
> Ou retour : `autocode move <key> <
|
|
22
|
+
> Ou retour : `autocode move <key> <targetColumn>`
|
|
20
23
|
|
|
21
24
|
## Criteres de Validation
|
|
22
25
|
|
|
@@ -13,11 +13,14 @@ 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:
|
|
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
|
|
17
20
|
9. Document: `autocode comment <key> "Retest passed: all tests green"`
|
|
18
21
|
10. Advance: `autocode next <key>`
|
|
19
22
|
|
|
20
|
-
> Or return: `autocode move <key> <
|
|
23
|
+
> Or return: `autocode move <key> <targetColumn>`
|
|
21
24
|
|
|
22
25
|
## Validation Criteria
|
|
23
26
|
|
|
@@ -13,11 +13,14 @@ 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 :
|
|
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
|
|
17
20
|
9. Documenter : `autocode comment <key> "Retest OK : tous les tests verts"`
|
|
18
21
|
10. Avancer : `autocode next <key>`
|
|
19
22
|
|
|
20
|
-
> Ou retour : `autocode move <key> <
|
|
23
|
+
> Ou retour : `autocode move <key> <targetColumn>`
|
|
21
24
|
|
|
22
25
|
## Criteres de Validation
|
|
23
26
|
|
|
@@ -13,11 +13,14 @@ Code quality audit. Verify conventions and best practices are followed.
|
|
|
13
13
|
5. Verify import organization
|
|
14
14
|
6. Fix violations found
|
|
15
15
|
7. Commit + push corrections
|
|
16
|
-
8. If out of scope work detected:
|
|
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
|
|
17
20
|
9. Document: `autocode comment <key> "Review best practices OK"`
|
|
18
21
|
10. Advance: `autocode next <key>`
|
|
19
22
|
|
|
20
|
-
> Or return: `autocode move <key> <
|
|
23
|
+
> Or return: `autocode move <key> <targetColumn>`
|
|
21
24
|
|
|
22
25
|
## Validation Criteria
|
|
23
26
|
|
|
@@ -13,11 +13,14 @@ Audit qualite du code. Verifier que les conventions et bonnes pratiques sont res
|
|
|
13
13
|
5. Verifier l'organisation des imports
|
|
14
14
|
6. Corriger les violations trouvees
|
|
15
15
|
7. Commit + push des corrections
|
|
16
|
-
8. Si travail hors scope detecte :
|
|
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
|
|
17
20
|
9. Documenter : `autocode comment <key> "Review best practices OK"`
|
|
18
21
|
10. Avancer : `autocode next <key>`
|
|
19
22
|
|
|
20
|
-
> Ou retour : `autocode move <key> <
|
|
23
|
+
> Ou retour : `autocode move <key> <targetColumn>`
|
|
21
24
|
|
|
22
25
|
## Criteres de Validation
|
|
23
26
|
|
|
@@ -13,11 +13,14 @@ 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:
|
|
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
|
|
17
20
|
9. Document: `autocode comment <key> "Code review passed: <summary>"`
|
|
18
21
|
10. Advance: `autocode next <key>`
|
|
19
22
|
|
|
20
|
-
> Or return: `autocode move <key> <
|
|
23
|
+
> Or return: `autocode move <key> <targetColumn>`
|
|
21
24
|
|
|
22
25
|
## Validation Criteria
|
|
23
26
|
|
|
@@ -13,11 +13,14 @@ 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 :
|
|
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
|
|
17
20
|
9. Documenter : `autocode comment <key> "Code review OK : <resume>"`
|
|
18
21
|
10. Avancer : `autocode next <key>`
|
|
19
22
|
|
|
20
|
-
> Ou retour : `autocode move <key> <
|
|
23
|
+
> Ou retour : `autocode move <key> <targetColumn>`
|
|
21
24
|
|
|
22
25
|
## Criteres de Validation
|
|
23
26
|
|
|
@@ -13,11 +13,14 @@ Verify code integrates harmoniously with existing project architecture.
|
|
|
13
13
|
5. Verify correct Pinia store usage
|
|
14
14
|
6. Fix inconsistencies
|
|
15
15
|
7. Commit + push
|
|
16
|
-
8. If out of scope work detected:
|
|
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
|
|
17
20
|
9. Document: `autocode comment <key> "Review consistency OK"`
|
|
18
21
|
10. Advance: `autocode next <key>`
|
|
19
22
|
|
|
20
|
-
> Or return: `autocode move <key> <
|
|
23
|
+
> Or return: `autocode move <key> <targetColumn>`
|
|
21
24
|
|
|
22
25
|
## Validation Criteria
|
|
23
26
|
|
|
@@ -13,11 +13,14 @@ Verifier que le code s'integre harmonieusement avec l'architecture existante du
|
|
|
13
13
|
5. Verifier l'usage correct des stores Pinia
|
|
14
14
|
6. Corriger les incoherences
|
|
15
15
|
7. Commit + push
|
|
16
|
-
8. Si travail hors scope detecte :
|
|
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
|
|
17
20
|
9. Documenter : `autocode comment <key> "Review consistency OK"`
|
|
18
21
|
10. Avancer : `autocode next <key>`
|
|
19
22
|
|
|
20
|
-
> Ou retour : `autocode move <key> <
|
|
23
|
+
> Ou retour : `autocode move <key> <targetColumn>`
|
|
21
24
|
|
|
22
25
|
## Criteres de Validation
|
|
23
26
|
|
|
@@ -13,11 +13,14 @@ Identify and eliminate code duplication. Factor into reusable functions/composab
|
|
|
13
13
|
5. Extract to composable/service/shared function if >2 usages
|
|
14
14
|
6. Update all existing calls
|
|
15
15
|
7. Commit + push
|
|
16
|
-
8. If out of scope work detected:
|
|
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
|
|
17
20
|
9. Document: `autocode comment <key> "Review no duplication OK"`
|
|
18
21
|
10. Advance: `autocode next <key>`
|
|
19
22
|
|
|
20
|
-
> Or return: `autocode move <key> <
|
|
23
|
+
> Or return: `autocode move <key> <targetColumn>`
|
|
21
24
|
|
|
22
25
|
## Validation Criteria
|
|
23
26
|
|
|
@@ -13,11 +13,14 @@ Identifier et eliminer la duplication de code. Factoriser en fonctions/composabl
|
|
|
13
13
|
5. Extraire en composable/service/fonction partagee si >2 usages
|
|
14
14
|
6. Mettre a jour tous les appels existants
|
|
15
15
|
7. Commit + push
|
|
16
|
-
8. Si travail hors scope detecte :
|
|
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
|
|
17
20
|
9. Documenter : `autocode comment <key> "Review no duplication OK"`
|
|
18
21
|
10. Avancer : `autocode next <key>`
|
|
19
22
|
|
|
20
|
-
> Ou retour : `autocode move <key> <
|
|
23
|
+
> Ou retour : `autocode move <key> <targetColumn>`
|
|
21
24
|
|
|
22
25
|
## Criteres de Validation
|
|
23
26
|
|
|
@@ -14,11 +14,14 @@ 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. Commit + push
|
|
17
|
-
9. If out of scope work detected:
|
|
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
|
|
18
21
|
10. Document: `autocode comment <key> "Review security OK"`
|
|
19
22
|
11. Advance: `autocode next <key>`
|
|
20
23
|
|
|
21
|
-
> Or return: `autocode move <key> <
|
|
24
|
+
> Or return: `autocode move <key> <targetColumn>`
|
|
22
25
|
|
|
23
26
|
## Validation Criteria
|
|
24
27
|
|
|
@@ -14,11 +14,14 @@ 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. Commit + push
|
|
17
|
-
9. Si travail hors scope detecte :
|
|
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
|
|
18
21
|
10. Documenter : `autocode comment <key> "Review security OK"`
|
|
19
22
|
11. Avancer : `autocode next <key>`
|
|
20
23
|
|
|
21
|
-
> Ou retour : `autocode move <key> <
|
|
24
|
+
> Ou retour : `autocode move <key> <targetColumn>`
|
|
22
25
|
|
|
23
26
|
## Criteres de Validation
|
|
24
27
|
|
|
@@ -12,11 +12,14 @@ Write detailed technical specifications for the ticket. Define the implementatio
|
|
|
12
12
|
4. Define data structures if applicable
|
|
13
13
|
5. Specify API contracts if applicable
|
|
14
14
|
6. Document edge cases and error handling
|
|
15
|
-
7. If out of scope work detected:
|
|
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
|
|
16
19
|
8. Document: `autocode comment <key> "Specification complete: <technical approach>"`
|
|
17
20
|
9. Advance: `autocode next <key>`
|
|
18
21
|
|
|
19
|
-
> Or return: `autocode move <key> <
|
|
22
|
+
> Or return: `autocode move <key> <targetColumn>`
|
|
20
23
|
|
|
21
24
|
## Validation Criteria
|
|
22
25
|
|
|
@@ -12,11 +12,14 @@ Rediger les specifications techniques detaillees pour le ticket. Definir clairem
|
|
|
12
12
|
4. Definir les structures de donnees si applicable
|
|
13
13
|
5. Specifier les contrats API si applicable
|
|
14
14
|
6. Documenter les cas limites et la gestion d'erreurs
|
|
15
|
-
7. Si travail hors scope detecte :
|
|
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
|
|
16
19
|
8. Documenter : `autocode comment <key> "Specification terminee : <approche technique>"`
|
|
17
20
|
9. Avancer : `autocode next <key>`
|
|
18
21
|
|
|
19
|
-
> Ou retour : `autocode move <key> <
|
|
22
|
+
> Ou retour : `autocode move <key> <targetColumn>`
|
|
20
23
|
|
|
21
24
|
## Criteres de Validation
|
|
22
25
|
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Splitter
|
|
2
|
+
|
|
3
|
+
## Role
|
|
4
|
+
|
|
5
|
+
Break down large requirements into smaller, focused tickets to limit responsibility and improve traceability. Create atomic tasks that can be independently implemented and verified.
|
|
6
|
+
|
|
7
|
+
## Actions
|
|
8
|
+
|
|
9
|
+
1. Analyze the requirement to identify distinct functional components
|
|
10
|
+
2. Identify natural boundaries between features, layers, or responsibilities
|
|
11
|
+
3. Define clear acceptance criteria for each sub-ticket
|
|
12
|
+
4. Ensure each split ticket is independently testable and deployable
|
|
13
|
+
5. Create sub-tickets: `autocode new "<title>" "<description>" -p P2 -l "<labels>" -a "<criteria>" -s patch`
|
|
14
|
+
6. Verify no functionality has been forgotten or duplicated across tickets
|
|
15
|
+
7. Create an integration ticket that references all sub-tickets to validate cohesion
|
|
16
|
+
8. If out of scope work detected: `autocode new "<title>" "<description>" -p P2 -l "<labels>" -a "<criteria>" -s patch`
|
|
17
|
+
9. Document: `autocode comment <key> "[summary]"`
|
|
18
|
+
10. Advance: `autocode next <key>`
|
|
19
|
+
|
|
20
|
+
> Or return: `autocode move <key> <targetColumn>`
|
|
21
|
+
|
|
22
|
+
## Validation Criteria
|
|
23
|
+
|
|
24
|
+
- [ ] All sub-tickets are atomic and independently implementable
|
|
25
|
+
- [ ] No functionality from the original requirement has been forgotten
|
|
26
|
+
- [ ] An integration ticket exists to verify all parts work together cohesively
|
|
27
|
+
- [ ] Each sub-ticket has clear acceptance criteria
|
|
28
|
+
|
|
29
|
+
## Notes
|
|
30
|
+
|
|
31
|
+
Smaller tickets reduce cognitive load and merge conflicts. Always create an integration ticket to ensure the split parts form a coherent whole.
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# Splitter
|
|
2
|
+
|
|
3
|
+
## Rôle
|
|
4
|
+
|
|
5
|
+
Découper les besoins trop importants en tickets plus petits et ciblés pour limiter la responsabilité et améliorer la
|
|
6
|
+
traçabilité. Créer des tâches atomiques pouvant être implémentées et vérifiées indépendamment.
|
|
7
|
+
|
|
8
|
+
## Actions
|
|
9
|
+
|
|
10
|
+
1. Analyser le besoin pour identifier les composants fonctionnels distincts
|
|
11
|
+
2. Identifier les frontières naturelles entre fonctionnalités, couches ou responsabilités
|
|
12
|
+
3. Définir des critères d'acceptation clairs pour chaque sous-ticket
|
|
13
|
+
4. S'assurer que chaque ticket découpé est testable et déployable indépendamment
|
|
14
|
+
5. Créer les sous-tickets : `autocode new "<title>" "<description>" -p P2 -l "<labels>" -a "<criteria>" -s patch`
|
|
15
|
+
6. Vérifier qu'aucune fonctionnalité n'a été oubliée ou dupliquée entre les tickets
|
|
16
|
+
7. Créer un ticket d'intégration qui référence tous les sous-tickets pour valider la cohésion
|
|
17
|
+
8. Si travail hors scope détecté : `autocode new "<title>" "<description>" -p P2 -l "<labels>" -a "<criteria>" -s patch`
|
|
18
|
+
9. Documenter : `autocode comment <key> "[résumé]"`
|
|
19
|
+
10. Avancer : `autocode next <key>`
|
|
20
|
+
|
|
21
|
+
> Ou retourner : `autocode move <key> <targetColumn>`
|
|
22
|
+
|
|
23
|
+
## Critères de Validation
|
|
24
|
+
|
|
25
|
+
- [ ] Tous les sous-tickets sont atomiques et implémentables indépendamment
|
|
26
|
+
- [ ] Aucune fonctionnalité du besoin original n'a été oubliée
|
|
27
|
+
- [ ] Un ticket d'intégration existe pour vérifier que toutes les parties fonctionnent ensemble
|
|
28
|
+
- [ ] Chaque sous-ticket possède des critères d'acceptation clairs
|
|
29
|
+
|
|
30
|
+
## Notes
|
|
31
|
+
|
|
32
|
+
Les tickets plus petits réduisent la charge cognitive et les conflits de merge. Toujours créer un ticket d'intégration
|
|
33
|
+
pour s'assurer que les parties découpées forment un tout cohérent.
|
|
@@ -13,11 +13,14 @@ Write AND execute E2E automated tests to prevent regressions.
|
|
|
13
13
|
5. Execute tests: npx cypress run
|
|
14
14
|
6. If failures: fix tests or code
|
|
15
15
|
7. Commit + push tests
|
|
16
|
-
8. If out of scope work detected:
|
|
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
|
|
17
20
|
9. Document: `autocode comment <key> "Cypress tests OK"`
|
|
18
21
|
10. Advance: `autocode next <key>`
|
|
19
22
|
|
|
20
|
-
> Or return: `autocode move <key> <
|
|
23
|
+
> Or return: `autocode move <key> <targetColumn>`
|
|
21
24
|
|
|
22
25
|
## Validation Criteria
|
|
23
26
|
|
|
@@ -13,11 +13,14 @@ Rediger ET executer des tests E2E automatises pour prevenir les regressions.
|
|
|
13
13
|
5. Executer les tests : npx cypress run
|
|
14
14
|
6. Si echecs : corriger les tests ou le code
|
|
15
15
|
7. Commit + push des tests
|
|
16
|
-
8. Si travail hors scope detecte :
|
|
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
|
|
17
20
|
9. Documenter : `autocode comment <key> "Tests Cypress OK"`
|
|
18
21
|
10. Avancer : `autocode next <key>`
|
|
19
22
|
|
|
20
|
-
> Ou retour : `autocode move <key> <
|
|
23
|
+
> Ou retour : `autocode move <key> <targetColumn>`
|
|
21
24
|
|
|
22
25
|
## Criteres de Validation
|
|
23
26
|
|
|
@@ -14,11 +14,14 @@ Run integration tests to verify components work correctly together. Ensure syste
|
|
|
14
14
|
6. Test external service connections
|
|
15
15
|
7. Fix any failing tests
|
|
16
16
|
8. Commit + push test files
|
|
17
|
-
9. If out of scope work detected:
|
|
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
|
|
18
21
|
10. Document: `autocode comment <key> "Integration tests passed"`
|
|
19
22
|
11. Advance: `autocode next <key>`
|
|
20
23
|
|
|
21
|
-
> Or return: `autocode move <key> <
|
|
24
|
+
> Or return: `autocode move <key> <targetColumn>`
|
|
22
25
|
|
|
23
26
|
## Validation Criteria
|
|
24
27
|
|