@autocode-cli/autocode 0.1.9 → 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/package.json +1 -1
- package/templates/prompts/backlog.en.md +4 -1
- package/templates/prompts/backlog.fr.md +4 -1
- package/templates/prompts/changelog.en.md +4 -1
- package/templates/prompts/changelog.fr.md +4 -1
- package/templates/prompts/deploy-prod.en.md +4 -1
- package/templates/prompts/deploy-prod.fr.md +4 -1
- package/templates/prompts/deploy-staging.en.md +4 -1
- package/templates/prompts/deploy-staging.fr.md +4 -1
- package/templates/prompts/design.en.md +4 -1
- package/templates/prompts/design.fr.md +4 -1
- package/templates/prompts/dev.en.md +4 -1
- package/templates/prompts/dev.fr.md +4 -1
- package/templates/prompts/done.en.md +3 -1
- package/templates/prompts/done.fr.md +3 -1
- package/templates/prompts/git-commit.en.md +4 -1
- package/templates/prompts/git-commit.fr.md +4 -1
- package/templates/prompts/git-push.en.md +4 -1
- package/templates/prompts/git-push.fr.md +4 -1
- package/templates/prompts/git-tag.en.md +4 -1
- package/templates/prompts/git-tag.fr.md +4 -1
- package/templates/prompts/in-progress.en.md +4 -1
- package/templates/prompts/in-progress.fr.md +4 -1
- package/templates/prompts/qualification.en.md +4 -1
- package/templates/prompts/qualification.fr.md +4 -1
- package/templates/prompts/ready.en.md +4 -1
- package/templates/prompts/ready.fr.md +4 -1
- package/templates/prompts/retest-cypress.en.md +4 -1
- package/templates/prompts/retest-cypress.fr.md +4 -1
- package/templates/prompts/retest-playwright.en.md +4 -1
- package/templates/prompts/retest-playwright.fr.md +4 -1
- package/templates/prompts/retest.en.md +4 -1
- package/templates/prompts/retest.fr.md +4 -1
- package/templates/prompts/review-best-practices.en.md +4 -1
- package/templates/prompts/review-best-practices.fr.md +4 -1
- package/templates/prompts/review-code.en.md +4 -1
- package/templates/prompts/review-code.fr.md +4 -1
- package/templates/prompts/review-consistency.en.md +4 -1
- package/templates/prompts/review-consistency.fr.md +4 -1
- package/templates/prompts/review-no-duplication.en.md +4 -1
- package/templates/prompts/review-no-duplication.fr.md +4 -1
- package/templates/prompts/review-security.en.md +4 -1
- package/templates/prompts/review-security.fr.md +4 -1
- package/templates/prompts/specification.en.md +4 -1
- package/templates/prompts/specification.fr.md +4 -1
- package/templates/prompts/testing-cypress.en.md +4 -1
- package/templates/prompts/testing-cypress.fr.md +4 -1
- package/templates/prompts/testing-integration.en.md +4 -1
- package/templates/prompts/testing-integration.fr.md +4 -1
- package/templates/prompts/testing-playwright.en.md +4 -1
- package/templates/prompts/testing-playwright.fr.md +4 -1
- package/templates/prompts/testing-unit.en.md +4 -1
- package/templates/prompts/testing-unit.fr.md +4 -1
- package/templates/prompts/update-docs.en.md +4 -1
- package/templates/prompts/update-docs.fr.md +4 -1
- package/templates/prompts/validate-staging.en.md +4 -1
- package/templates/prompts/validate-staging.fr.md +4 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"new.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/new.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;
|
|
1
|
+
{"version":3,"file":"new.d.ts","sourceRoot":"","sources":["../../../src/cli/commands/new.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAOpC;;GAEG;AACH,wBAAgB,UAAU,IAAI,OAAO,CAiEpC"}
|
package/dist/cli/commands/new.js
CHANGED
|
@@ -2,7 +2,8 @@
|
|
|
2
2
|
* new command - Create a new ticket
|
|
3
3
|
*/
|
|
4
4
|
import { Command } from 'commander';
|
|
5
|
-
import { createTicket } from '../../core/ticket.js';
|
|
5
|
+
import { createTicket, moveTicket } from '../../core/ticket.js';
|
|
6
|
+
import { getColumnByName, getColumnBySlug, getColumns } from '../../core/column.js';
|
|
6
7
|
import { getConfig } from '../../utils/config.js';
|
|
7
8
|
import { logger } from '../../utils/logger.js';
|
|
8
9
|
/**
|
|
@@ -18,13 +19,14 @@ export function newCommand() {
|
|
|
18
19
|
.option('-l, --labels <labels>', 'Comma-separated labels')
|
|
19
20
|
.option('-a, --acceptance <criteria>', 'Comma-separated acceptance criteria')
|
|
20
21
|
.option('-s, --semver <type>', 'Semver type (major/minor/patch/none)', 'patch')
|
|
22
|
+
.option('-c, --column <column>', 'Target column (default: backlog)')
|
|
21
23
|
.action((title, description, options) => {
|
|
22
24
|
const config = getConfig();
|
|
23
25
|
const priority = validatePriority(options.priority);
|
|
24
26
|
const semver = validateSemver(options.semver);
|
|
25
27
|
const labels = options.labels ? options.labels.split(',').map((l) => l.trim()) : [];
|
|
26
28
|
const acceptanceCriteria = options.acceptance ? options.acceptance.split(',').map((c) => c.trim()) : [];
|
|
27
|
-
|
|
29
|
+
let ticket = createTicket(config.root, {
|
|
28
30
|
title,
|
|
29
31
|
priority,
|
|
30
32
|
labels,
|
|
@@ -32,6 +34,22 @@ export function newCommand() {
|
|
|
32
34
|
acceptance_criteria: acceptanceCriteria,
|
|
33
35
|
semver,
|
|
34
36
|
});
|
|
37
|
+
// Move to target column if specified
|
|
38
|
+
if (options.column) {
|
|
39
|
+
const targetColumn = getColumnByName(options.column) || getColumnBySlug(options.column);
|
|
40
|
+
if (!targetColumn) {
|
|
41
|
+
logger.error(`Column '${options.column}' not found`);
|
|
42
|
+
logger.info('Available columns:');
|
|
43
|
+
for (const col of getColumns()) {
|
|
44
|
+
console.log(` - ${col.name} (${col.slug})`);
|
|
45
|
+
}
|
|
46
|
+
process.exit(1);
|
|
47
|
+
}
|
|
48
|
+
const moved = moveTicket(config.root, ticket.key, targetColumn.name, true);
|
|
49
|
+
if (moved) {
|
|
50
|
+
ticket = moved;
|
|
51
|
+
}
|
|
52
|
+
}
|
|
35
53
|
logger.success(`Created ticket ${logger.bold(ticket.key)}`);
|
|
36
54
|
logger.row('Title', ticket.title);
|
|
37
55
|
logger.row('Priority', logger.priority(ticket.priority));
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"new.js","sourceRoot":"","sources":["../../../src/cli/commands/new.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,EAAE,YAAY,EAAE,MAAM,sBAAsB,CAAC;
|
|
1
|
+
{"version":3,"file":"new.js","sourceRoot":"","sources":["../../../src/cli/commands/new.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -12,7 +12,10 @@ Storage for new tickets. Tickets here need qualification before work can begin.
|
|
|
12
12
|
4. Define acceptance criteria if missing
|
|
13
13
|
5. Set priority (P0-P3) based on impact and urgency
|
|
14
14
|
6. Identify scope and potentially affected files
|
|
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 done"`
|
|
17
20
|
9. Advance: `autocode next <key>`
|
|
18
21
|
|
|
@@ -12,7 +12,10 @@ Stockage des nouveaux tickets. Les tickets ici doivent etre qualifies avant de c
|
|
|
12
12
|
4. Definir les criteres d'acceptation si manquants
|
|
13
13
|
5. Definir la priorite (P0-P3) selon l'impact et l'urgence
|
|
14
14
|
6. Identifier le perimetre et les fichiers potentiellement impactes
|
|
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 effectuee"`
|
|
17
20
|
9. Avancer : `autocode next <key>`
|
|
18
21
|
|
|
@@ -13,7 +13,10 @@ Update the changelog with the changes made in this ticket. Document for users an
|
|
|
13
13
|
5. Use clear, user-facing language
|
|
14
14
|
6. Reference ticket key if applicable
|
|
15
15
|
7. Commit + push changelog update
|
|
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> "Changelog updated"`
|
|
18
21
|
10. Advance: `autocode next <key>`
|
|
19
22
|
|
|
@@ -13,7 +13,10 @@ Mettre a jour le changelog avec les changements effectues dans ce ticket. Docume
|
|
|
13
13
|
5. Utiliser un langage clair oriente utilisateur
|
|
14
14
|
6. Referencer la cle du ticket si applicable
|
|
15
15
|
7. Commit + push de la mise a jour du changelog
|
|
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> "Changelog mis a jour"`
|
|
18
21
|
10. Avancer : `autocode next <key>`
|
|
19
22
|
|
|
@@ -14,7 +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:
|
|
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> "Deployed to production: v<version>"`
|
|
19
22
|
11. Advance: `autocode next <key>`
|
|
20
23
|
|
|
@@ -14,7 +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 :
|
|
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> "Deploye en production : v<version>"`
|
|
19
22
|
11. Avancer : `autocode next <key>`
|
|
20
23
|
|
|
@@ -11,7 +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:
|
|
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> "Deployed to staging"`
|
|
16
19
|
8. Advance: `autocode next <key>`
|
|
17
20
|
|
|
@@ -11,7 +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 :
|
|
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> "Deploye en staging"`
|
|
16
19
|
8. Avancer : `autocode next <key>`
|
|
17
20
|
|
|
@@ -12,7 +12,10 @@ Create technical and/or UX design for the feature. Prepare mockups, diagrams, or
|
|
|
12
12
|
4. Create sequence diagrams for complex flows
|
|
13
13
|
5. Define state management approach if applicable
|
|
14
14
|
6. Document design decisions and trade-offs
|
|
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> "Design complete: <summary>"`
|
|
17
20
|
9. Advance: `autocode next <key>`
|
|
18
21
|
|
|
@@ -12,7 +12,10 @@ Creer le design technique et/ou UX pour la fonctionnalite. Preparer les maquette
|
|
|
12
12
|
4. Creer des diagrammes de sequence pour les flux complexes
|
|
13
13
|
5. Definir l'approche de gestion d'etat si applicable
|
|
14
14
|
6. Documenter les decisions de design et compromis
|
|
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> "Design termine : <resume>"`
|
|
17
20
|
9. Avancer : `autocode next <key>`
|
|
18
21
|
|
|
@@ -13,7 +13,10 @@ 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 committing
|
|
15
15
|
7. Commit + push with descriptive message
|
|
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> "Development complete: <files modified>"`
|
|
18
21
|
10. Advance: `autocode next <key>`
|
|
19
22
|
|
|
@@ -13,7 +13,10 @@ 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 commiter
|
|
15
15
|
7. Commit + push avec message descriptif
|
|
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> "Developpement termine : <fichiers modifies>"`
|
|
18
21
|
10. Avancer : `autocode next <key>`
|
|
19
22
|
|
|
@@ -8,7 +8,9 @@ Archive of completed and validated tickets. End of workflow.
|
|
|
8
8
|
|
|
9
9
|
1. Document: `autocode comment <key> "Ticket completed"`
|
|
10
10
|
|
|
11
|
-
> If problem discovered: `autocode move <key> <targetColumn>` or
|
|
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`
|
|
12
14
|
|
|
13
15
|
## Validation Criteria
|
|
14
16
|
|
|
@@ -8,7 +8,9 @@ Archive des tickets termines et valides. Fin du workflow.
|
|
|
8
8
|
|
|
9
9
|
1. Documenter : `autocode comment <key> "Ticket termine"`
|
|
10
10
|
|
|
11
|
-
> Si probleme decouvert : `autocode move <key> <targetColumn>` ou
|
|
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`
|
|
12
14
|
|
|
13
15
|
## Criteres de Validation
|
|
14
16
|
|
|
@@ -17,7 +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:
|
|
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
|
|
21
24
|
8. Document: `autocode comment <key> "Committed: <commit hash>"`
|
|
22
25
|
9. Advance: `autocode next <key>`
|
|
23
26
|
|
|
@@ -17,7 +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 :
|
|
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
|
|
21
24
|
8. Documenter : `autocode comment <key> "Commite : <hash du commit>"`
|
|
22
25
|
9. Avancer : `autocode next <key>`
|
|
23
26
|
|
|
@@ -13,7 +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:
|
|
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> "Pushed to <branch>"`
|
|
18
21
|
10. Advance: `autocode next <key>`
|
|
19
22
|
|
|
@@ -13,7 +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 :
|
|
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
|
|
|
@@ -14,7 +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:
|
|
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
|
|
|
@@ -14,7 +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 :
|
|
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
|
|
|
@@ -12,7 +12,10 @@ 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
|
|
|
@@ -12,7 +12,10 @@ 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
|
|
|
@@ -12,7 +12,10 @@ 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
|
|
|
@@ -12,7 +12,10 @@ 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
|
|
|
@@ -12,7 +12,10 @@ 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
|
|
|
@@ -12,7 +12,10 @@ 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
|
|
|
@@ -11,7 +11,10 @@ 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
|
|
|
@@ -11,7 +11,10 @@ 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
|
|
|
@@ -12,7 +12,10 @@ 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
|
|
|
@@ -12,7 +12,10 @@ 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
|
|
|
@@ -13,7 +13,10 @@ 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
|
|
|
@@ -13,7 +13,10 @@ 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
|
|
|
@@ -13,7 +13,10 @@ 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
|
|
|
@@ -13,7 +13,10 @@ 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
|
|
|
@@ -13,7 +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:
|
|
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
|
|
|
@@ -13,7 +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 :
|
|
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
|
|
|
@@ -13,7 +13,10 @@ 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
|
|
|
@@ -13,7 +13,10 @@ 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
|
|
|
@@ -13,7 +13,10 @@ 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
|
|
|
@@ -13,7 +13,10 @@ 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
|
|
|
@@ -14,7 +14,10 @@ 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
|
|
|
@@ -14,7 +14,10 @@ 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
|
|
|
@@ -12,7 +12,10 @@ 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
|
|
|
@@ -12,7 +12,10 @@ 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
|
|
|
@@ -13,7 +13,10 @@ 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
|
|
|
@@ -13,7 +13,10 @@ 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
|
|
|
@@ -14,7 +14,10 @@ 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
|
|
|
@@ -14,7 +14,10 @@ Executer les tests d'integration pour verifier que les composants fonctionnent c
|
|
|
14
14
|
6. Tester les connexions aux services externes
|
|
15
15
|
7. Corriger les tests en echec
|
|
16
16
|
8. Commit + push des fichiers de test
|
|
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> "Tests d'integration OK"`
|
|
19
22
|
11. Avancer : `autocode next <key>`
|
|
20
23
|
|
|
@@ -12,7 +12,10 @@ Live functional testing with Playwright. Manually verify feature works by naviga
|
|
|
12
12
|
4. Test edge cases
|
|
13
13
|
5. Verify error handling
|
|
14
14
|
6. Capture screenshots if needed
|
|
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> "Playwright tests OK"`
|
|
17
20
|
9. Advance: `autocode next <key>`
|
|
18
21
|
|
|
@@ -12,7 +12,10 @@ Test fonctionnel live avec Playwright. Verifier manuellement que la feature fonc
|
|
|
12
12
|
4. Tester les cas limites
|
|
13
13
|
5. Verifier la gestion d'erreurs
|
|
14
14
|
6. Capturer des screenshots si necessaire
|
|
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> "Tests Playwright OK"`
|
|
17
20
|
9. Avancer : `autocode next <key>`
|
|
18
21
|
|
|
@@ -14,7 +14,10 @@ Write and run unit tests for the implemented feature. Ensure code coverage and r
|
|
|
14
14
|
6. Fix any failing tests
|
|
15
15
|
7. Verify coverage meets project standards
|
|
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> "Unit tests passed: <coverage>%"`
|
|
19
22
|
11. Advance: `autocode next <key>`
|
|
20
23
|
|
|
@@ -14,7 +14,10 @@ Ecrire et executer les tests unitaires pour la fonctionnalite implementee. Assur
|
|
|
14
14
|
6. Corriger les tests en echec
|
|
15
15
|
7. Verifier que la couverture respecte les standards du projet
|
|
16
16
|
8. Commit + push des fichiers de test
|
|
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> "Tests unitaires OK : <couverture>%"`
|
|
19
22
|
11. Avancer : `autocode next <key>`
|
|
20
23
|
|
|
@@ -12,7 +12,10 @@ Document changes for future developers and users.
|
|
|
12
12
|
4. Update existing guides if impacted
|
|
13
13
|
5. Verify doc consistency
|
|
14
14
|
6. Commit + push
|
|
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> "Documentation updated"`
|
|
17
20
|
9. Advance: `autocode next <key>`
|
|
18
21
|
|
|
@@ -12,7 +12,10 @@ Documenter les changements pour les futurs developpeurs et utilisateurs.
|
|
|
12
12
|
4. Mettre a jour les guides existants si impactes
|
|
13
13
|
5. Verifier la coherence de la doc
|
|
14
14
|
6. Commit + push
|
|
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> "Documentation mise a jour"`
|
|
17
20
|
9. Avancer : `autocode next <key>`
|
|
18
21
|
|
|
@@ -13,7 +13,10 @@ Final validation: verify everything works in staging AND git repo is clean.
|
|
|
13
13
|
5. Verify visually everything is OK
|
|
14
14
|
6. Capture proof (screenshot)
|
|
15
15
|
7. Confirm feature works
|
|
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> "Staging validation OK"`
|
|
18
21
|
10. Advance: `autocode next <key>`
|
|
19
22
|
|
|
@@ -13,7 +13,10 @@ Validation finale : verifier que tout fonctionne en staging ET que le repo git e
|
|
|
13
13
|
5. Verifier visuellement que tout est OK
|
|
14
14
|
6. Capturer une preuve (screenshot)
|
|
15
15
|
7. Confirmer que la feature fonctionne
|
|
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> "Validation staging OK"`
|
|
18
21
|
10. Avancer : `autocode next <key>`
|
|
19
22
|
|