@autocode-cli/autocode 0.1.10 → 0.1.11
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/README.md +2 -1
- package/dist/cli/commands/init.js +1 -1
- package/dist/cli/commands/init.js.map +1 -1
- package/dist/cli/commands/serve.js +1 -1
- package/dist/cli/commands/serve.js.map +1 -1
- package/dist/cli/commands/stats.d.ts +9 -0
- package/dist/cli/commands/stats.d.ts.map +1 -0
- package/dist/cli/commands/stats.js +108 -0
- package/dist/cli/commands/stats.js.map +1 -0
- package/dist/cli/parser.d.ts.map +1 -1
- package/dist/cli/parser.js +2 -0
- package/dist/cli/parser.js.map +1 -1
- package/dist/server/api.d.ts.map +1 -1
- package/dist/server/api.js +25 -13
- package/dist/server/api.js.map +1 -1
- package/dist/server/dashboard/pages/index.d.ts +1 -0
- package/dist/server/dashboard/pages/index.d.ts.map +1 -1
- package/dist/server/dashboard/pages/index.js +1 -0
- package/dist/server/dashboard/pages/index.js.map +1 -1
- package/dist/server/dashboard/pages/stats-page.d.ts +8 -0
- package/dist/server/dashboard/pages/stats-page.d.ts.map +1 -0
- package/dist/server/dashboard/pages/stats-page.js +624 -0
- package/dist/server/dashboard/pages/stats-page.js.map +1 -0
- package/dist/server/dashboard/scripts/index.d.ts.map +1 -1
- package/dist/server/dashboard/scripts/index.js +30 -1
- package/dist/server/dashboard/scripts/index.js.map +1 -1
- package/dist/server/dashboard/styles/base.d.ts.map +1 -1
- package/dist/server/dashboard/styles/base.js +9 -0
- package/dist/server/dashboard/styles/base.js.map +1 -1
- package/dist/server/dashboard.d.ts +1 -1
- package/dist/server/dashboard.d.ts.map +1 -1
- package/dist/server/dashboard.js +1 -1
- package/dist/server/dashboard.js.map +1 -1
- package/dist/server/index.d.ts.map +1 -1
- package/dist/server/index.js +8 -1
- package/dist/server/index.js.map +1 -1
- package/dist/services/claude.d.ts +9 -0
- package/dist/services/claude.d.ts.map +1 -1
- package/dist/services/claude.js +105 -2
- package/dist/services/claude.js.map +1 -1
- package/dist/services/stats.d.ts +58 -0
- package/dist/services/stats.d.ts.map +1 -0
- package/dist/services/stats.js +196 -0
- package/dist/services/stats.js.map +1 -0
- package/dist/utils/fs.js +1 -1
- package/dist/utils/fs.js.map +1 -1
- package/package.json +1 -1
- package/templates/prompts/changelog.en.md +3 -4
- package/templates/prompts/changelog.fr.md +3 -4
- package/templates/prompts/deploy-staging.en.md +2 -2
- package/templates/prompts/deploy-staging.fr.md +2 -2
- package/templates/prompts/dev.en.md +4 -5
- package/templates/prompts/dev.fr.md +4 -5
- package/templates/prompts/in-progress.en.md +3 -5
- package/templates/prompts/in-progress.fr.md +3 -5
- package/templates/prompts/ready.en.md +3 -5
- package/templates/prompts/ready.fr.md +3 -5
- package/templates/prompts/retest-cypress.en.md +3 -4
- package/templates/prompts/retest-cypress.fr.md +3 -4
- package/templates/prompts/review-best-practices.en.md +3 -4
- package/templates/prompts/review-best-practices.fr.md +3 -4
- package/templates/prompts/review-consistency.en.md +3 -4
- package/templates/prompts/review-consistency.fr.md +3 -4
- package/templates/prompts/review-no-duplication.en.md +3 -4
- package/templates/prompts/review-no-duplication.fr.md +3 -4
- package/templates/prompts/review-security.en.md +3 -4
- package/templates/prompts/review-security.fr.md +3 -4
- package/templates/prompts/splitter.en.md +9 -1
- package/templates/prompts/splitter.fr.md +9 -2
- package/templates/prompts/testing-cypress.en.md +3 -4
- package/templates/prompts/testing-cypress.fr.md +3 -4
- package/templates/prompts/testing-integration.en.md +3 -4
- package/templates/prompts/testing-integration.fr.md +3 -4
- package/templates/prompts/testing-unit.en.md +3 -4
- package/templates/prompts/testing-unit.fr.md +3 -4
- package/templates/prompts/update-docs.en.md +3 -4
- package/templates/prompts/update-docs.fr.md +3 -4
- package/templates/prompts/validate-staging.en.md +8 -9
- package/templates/prompts/validate-staging.fr.md +8 -9
|
@@ -13,13 +13,12 @@ Audit securite. Identifier et corriger les vulnerabilites potentielles (OWASP To
|
|
|
13
13
|
5. S'assurer que les cles API sont dans .env, jamais dans le code
|
|
14
14
|
6. Auditer les appels API (injection, XSS)
|
|
15
15
|
7. Corriger les vulnerabilites
|
|
16
|
-
8.
|
|
17
|
-
9. Si travail hors scope detecte :
|
|
16
|
+
8. Si travail hors scope detecte :
|
|
18
17
|
- Legerement hors scope (amelioration mineure, cas limite) : `autocode new "<titre>" "<description>" -p P2 -l "<labels>" -a "<criteres>" -s patch -c ready`
|
|
19
18
|
- Tres hors scope (nouvelle feature, changement majeur) : `autocode new "<titre>" "<description>" -p P2 -l "<labels>" -a "<criteres>" -s patch`
|
|
20
19
|
- Dans le scope : traiter directement dans le ticket actuel
|
|
21
|
-
|
|
22
|
-
|
|
20
|
+
9. Documenter : `autocode comment <key> "Review security OK"`
|
|
21
|
+
10. Avancer : `autocode next <key>`
|
|
23
22
|
|
|
24
23
|
> Ou retour : `autocode move <key> <targetColumn>`
|
|
25
24
|
|
|
@@ -2,7 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
## Role
|
|
4
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.
|
|
5
|
+
Break down large requirements into smaller, focused tickets **when needed** to limit responsibility and improve traceability. Create atomic tasks that can be independently implemented and verified.
|
|
6
|
+
|
|
7
|
+
## When to Split
|
|
8
|
+
|
|
9
|
+
**Use judgment** - splitting is not always necessary:
|
|
10
|
+
- **Split** when the task is large, involves multiple components, or would benefit from parallel work
|
|
11
|
+
- **Don't split** when the task is small, focused, or already atomic
|
|
12
|
+
|
|
13
|
+
If the task is small enough to be completed in one go, proceed directly without splitting.
|
|
6
14
|
|
|
7
15
|
## Actions
|
|
8
16
|
|
|
@@ -2,8 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
## Rôle
|
|
4
4
|
|
|
5
|
-
Découper les besoins trop importants en tickets plus petits et ciblés pour limiter la responsabilité et améliorer la
|
|
6
|
-
|
|
5
|
+
Découper les besoins trop importants en tickets plus petits et ciblés **si nécessaire** pour limiter la responsabilité et améliorer la traçabilité. Créer des tâches atomiques pouvant être implémentées et vérifiées indépendamment.
|
|
6
|
+
|
|
7
|
+
## Quand Découper
|
|
8
|
+
|
|
9
|
+
**Faire preuve de jugement** - le découpage n'est pas systématique :
|
|
10
|
+
- **Découper** quand la tâche est large, implique plusieurs composants, ou bénéficierait d'un travail parallèle
|
|
11
|
+
- **Ne pas découper** quand la tâche est petite, ciblée, ou déjà atomique
|
|
12
|
+
|
|
13
|
+
Si la tâche est suffisamment petite pour être complétée en une fois, procéder directement sans découpage.
|
|
7
14
|
|
|
8
15
|
## Actions
|
|
9
16
|
|
|
@@ -12,13 +12,12 @@ Write AND execute E2E automated tests to prevent regressions.
|
|
|
12
12
|
4. Describe tests clearly (describe/it)
|
|
13
13
|
5. Execute tests: npx cypress run
|
|
14
14
|
6. If failures: fix tests or code
|
|
15
|
-
7.
|
|
16
|
-
8. If out of scope work detected:
|
|
15
|
+
7. If out of scope work detected:
|
|
17
16
|
- Slightly out of scope (minor improvement, edge case): `autocode new "<title>" "<description>" -p P2 -l "<labels>" -a "<criteria>" -s patch -c ready`
|
|
18
17
|
- Significantly out of scope (new feature, major change): `autocode new "<title>" "<description>" -p P2 -l "<labels>" -a "<criteria>" -s patch`
|
|
19
18
|
- In scope: handle directly in current ticket
|
|
20
|
-
|
|
21
|
-
|
|
19
|
+
8. Document: `autocode comment <key> "Cypress tests OK"`
|
|
20
|
+
9. Advance: `autocode next <key>`
|
|
22
21
|
|
|
23
22
|
> Or return: `autocode move <key> <targetColumn>`
|
|
24
23
|
|
|
@@ -12,13 +12,12 @@ Rediger ET executer des tests E2E automatises pour prevenir les regressions.
|
|
|
12
12
|
4. Decrire les tests clairement (describe/it)
|
|
13
13
|
5. Executer les tests : npx cypress run
|
|
14
14
|
6. Si echecs : corriger les tests ou le code
|
|
15
|
-
7.
|
|
16
|
-
8. Si travail hors scope detecte :
|
|
15
|
+
7. Si travail hors scope detecte :
|
|
17
16
|
- Legerement hors scope (amelioration mineure, cas limite) : `autocode new "<titre>" "<description>" -p P2 -l "<labels>" -a "<criteres>" -s patch -c ready`
|
|
18
17
|
- Tres hors scope (nouvelle feature, changement majeur) : `autocode new "<titre>" "<description>" -p P2 -l "<labels>" -a "<criteres>" -s patch`
|
|
19
18
|
- Dans le scope : traiter directement dans le ticket actuel
|
|
20
|
-
|
|
21
|
-
|
|
19
|
+
8. Documenter : `autocode comment <key> "Tests Cypress OK"`
|
|
20
|
+
9. Avancer : `autocode next <key>`
|
|
22
21
|
|
|
23
22
|
> Ou retour : `autocode move <key> <targetColumn>`
|
|
24
23
|
|
|
@@ -13,13 +13,12 @@ Run integration tests to verify components work correctly together. Ensure syste
|
|
|
13
13
|
5. Test database operations
|
|
14
14
|
6. Test external service connections
|
|
15
15
|
7. Fix any failing tests
|
|
16
|
-
8.
|
|
17
|
-
9. If out of scope work detected:
|
|
16
|
+
8. If out of scope work detected:
|
|
18
17
|
- Slightly out of scope (minor improvement, edge case): `autocode new "<title>" "<description>" -p P2 -l "<labels>" -a "<criteria>" -s patch -c ready`
|
|
19
18
|
- Significantly out of scope (new feature, major change): `autocode new "<title>" "<description>" -p P2 -l "<labels>" -a "<criteria>" -s patch`
|
|
20
19
|
- In scope: handle directly in current ticket
|
|
21
|
-
|
|
22
|
-
|
|
20
|
+
9. Document: `autocode comment <key> "Integration tests passed"`
|
|
21
|
+
10. Advance: `autocode next <key>`
|
|
23
22
|
|
|
24
23
|
> Or return: `autocode move <key> <targetColumn>`
|
|
25
24
|
|
|
@@ -13,13 +13,12 @@ Executer les tests d'integration pour verifier que les composants fonctionnent c
|
|
|
13
13
|
5. Tester les operations base de donnees
|
|
14
14
|
6. Tester les connexions aux services externes
|
|
15
15
|
7. Corriger les tests en echec
|
|
16
|
-
8.
|
|
17
|
-
9. Si travail hors scope detecte :
|
|
16
|
+
8. Si travail hors scope detecte :
|
|
18
17
|
- Legerement hors scope (amelioration mineure, cas limite) : `autocode new "<titre>" "<description>" -p P2 -l "<labels>" -a "<criteres>" -s patch -c ready`
|
|
19
18
|
- Tres hors scope (nouvelle feature, changement majeur) : `autocode new "<titre>" "<description>" -p P2 -l "<labels>" -a "<criteres>" -s patch`
|
|
20
19
|
- Dans le scope : traiter directement dans le ticket actuel
|
|
21
|
-
|
|
22
|
-
|
|
20
|
+
9. Documenter : `autocode comment <key> "Tests d'integration OK"`
|
|
21
|
+
10. Avancer : `autocode next <key>`
|
|
23
22
|
|
|
24
23
|
> Ou retour : `autocode move <key> <targetColumn>`
|
|
25
24
|
|
|
@@ -13,13 +13,12 @@ Write and run unit tests for the implemented feature. Ensure code coverage and r
|
|
|
13
13
|
5. Run all unit tests: `npm test` or equivalent
|
|
14
14
|
6. Fix any failing tests
|
|
15
15
|
7. Verify coverage meets project standards
|
|
16
|
-
8.
|
|
17
|
-
9. If out of scope work detected:
|
|
16
|
+
8. If out of scope work detected:
|
|
18
17
|
- Slightly out of scope (minor improvement, edge case): `autocode new "<title>" "<description>" -p P2 -l "<labels>" -a "<criteria>" -s patch -c ready`
|
|
19
18
|
- Significantly out of scope (new feature, major change): `autocode new "<title>" "<description>" -p P2 -l "<labels>" -a "<criteria>" -s patch`
|
|
20
19
|
- In scope: handle directly in current ticket
|
|
21
|
-
|
|
22
|
-
|
|
20
|
+
9. Document: `autocode comment <key> "Unit tests passed: <coverage>%"`
|
|
21
|
+
10. Advance: `autocode next <key>`
|
|
23
22
|
|
|
24
23
|
> Or return: `autocode move <key> <targetColumn>`
|
|
25
24
|
|
|
@@ -13,13 +13,12 @@ Ecrire et executer les tests unitaires pour la fonctionnalite implementee. Assur
|
|
|
13
13
|
5. Executer tous les tests unitaires : `npm test` ou equivalent
|
|
14
14
|
6. Corriger les tests en echec
|
|
15
15
|
7. Verifier que la couverture respecte les standards du projet
|
|
16
|
-
8.
|
|
17
|
-
9. Si travail hors scope detecte :
|
|
16
|
+
8. Si travail hors scope detecte :
|
|
18
17
|
- Legerement hors scope (amelioration mineure, cas limite) : `autocode new "<titre>" "<description>" -p P2 -l "<labels>" -a "<criteres>" -s patch -c ready`
|
|
19
18
|
- Tres hors scope (nouvelle feature, changement majeur) : `autocode new "<titre>" "<description>" -p P2 -l "<labels>" -a "<criteres>" -s patch`
|
|
20
19
|
- Dans le scope : traiter directement dans le ticket actuel
|
|
21
|
-
|
|
22
|
-
|
|
20
|
+
9. Documenter : `autocode comment <key> "Tests unitaires OK : <couverture>%"`
|
|
21
|
+
10. Avancer : `autocode next <key>`
|
|
23
22
|
|
|
24
23
|
> Ou retour : `autocode move <key> <targetColumn>`
|
|
25
24
|
|
|
@@ -11,13 +11,12 @@ Document changes for future developers and users.
|
|
|
11
11
|
3. Document new features
|
|
12
12
|
4. Update existing guides if impacted
|
|
13
13
|
5. Verify doc consistency
|
|
14
|
-
6.
|
|
15
|
-
7. If out of scope work detected:
|
|
14
|
+
6. If out of scope work detected:
|
|
16
15
|
- Slightly out of scope (minor improvement, edge case): `autocode new "<title>" "<description>" -p P2 -l "<labels>" -a "<criteria>" -s patch -c ready`
|
|
17
16
|
- Significantly out of scope (new feature, major change): `autocode new "<title>" "<description>" -p P2 -l "<labels>" -a "<criteria>" -s patch`
|
|
18
17
|
- In scope: handle directly in current ticket
|
|
19
|
-
|
|
20
|
-
|
|
18
|
+
7. Document: `autocode comment <key> "Documentation updated"`
|
|
19
|
+
8. Advance: `autocode next <key>`
|
|
21
20
|
|
|
22
21
|
> Or return: `autocode move <key> <targetColumn>`
|
|
23
22
|
|
|
@@ -11,13 +11,12 @@ Documenter les changements pour les futurs developpeurs et utilisateurs.
|
|
|
11
11
|
3. Documenter les nouvelles features
|
|
12
12
|
4. Mettre a jour les guides existants si impactes
|
|
13
13
|
5. Verifier la coherence de la doc
|
|
14
|
-
6.
|
|
15
|
-
7. Si travail hors scope detecte :
|
|
14
|
+
6. Si travail hors scope detecte :
|
|
16
15
|
- Legerement hors scope (amelioration mineure, cas limite) : `autocode new "<titre>" "<description>" -p P2 -l "<labels>" -a "<criteres>" -s patch -c ready`
|
|
17
16
|
- Tres hors scope (nouvelle feature, changement majeur) : `autocode new "<titre>" "<description>" -p P2 -l "<labels>" -a "<criteres>" -s patch`
|
|
18
17
|
- Dans le scope : traiter directement dans le ticket actuel
|
|
19
|
-
|
|
20
|
-
|
|
18
|
+
7. Documenter : `autocode comment <key> "Documentation mise a jour"`
|
|
19
|
+
8. Avancer : `autocode next <key>`
|
|
21
20
|
|
|
22
21
|
> Ou retour : `autocode move <key> <targetColumn>`
|
|
23
22
|
|
|
@@ -7,18 +7,17 @@ Final validation: verify everything works in staging AND git repo is clean.
|
|
|
7
7
|
## Actions
|
|
8
8
|
|
|
9
9
|
1. Execute git status - must be clean
|
|
10
|
-
2.
|
|
11
|
-
3.
|
|
12
|
-
4.
|
|
13
|
-
5.
|
|
14
|
-
6.
|
|
15
|
-
7.
|
|
16
|
-
8. If out of scope work detected:
|
|
10
|
+
2. Navigate to staging environment
|
|
11
|
+
3. Test developed feature
|
|
12
|
+
4. Verify visually everything is OK
|
|
13
|
+
5. Capture proof (screenshot)
|
|
14
|
+
6. Confirm feature works
|
|
15
|
+
7. If out of scope work detected:
|
|
17
16
|
- Slightly out of scope (minor improvement, edge case): `autocode new "<title>" "<description>" -p P2 -l "<labels>" -a "<criteria>" -s patch -c ready`
|
|
18
17
|
- Significantly out of scope (new feature, major change): `autocode new "<title>" "<description>" -p P2 -l "<labels>" -a "<criteria>" -s patch`
|
|
19
18
|
- In scope: handle directly in current ticket
|
|
20
|
-
|
|
21
|
-
|
|
19
|
+
8. Document: `autocode comment <key> "Staging validation OK"`
|
|
20
|
+
9. Advance: `autocode next <key>`
|
|
22
21
|
|
|
23
22
|
> Or return: `autocode move <key> <targetColumn>`
|
|
24
23
|
|
|
@@ -7,18 +7,17 @@ Validation finale : verifier que tout fonctionne en staging ET que le repo git e
|
|
|
7
7
|
## Actions
|
|
8
8
|
|
|
9
9
|
1. Executer git status - doit etre propre
|
|
10
|
-
2.
|
|
11
|
-
3.
|
|
12
|
-
4.
|
|
13
|
-
5.
|
|
14
|
-
6.
|
|
15
|
-
7.
|
|
16
|
-
8. Si travail hors scope detecte :
|
|
10
|
+
2. Naviguer vers l'environnement staging
|
|
11
|
+
3. Tester la feature developpee
|
|
12
|
+
4. Verifier visuellement que tout est OK
|
|
13
|
+
5. Capturer une preuve (screenshot)
|
|
14
|
+
6. Confirmer que la feature fonctionne
|
|
15
|
+
7. Si travail hors scope detecte :
|
|
17
16
|
- Legerement hors scope (amelioration mineure, cas limite) : `autocode new "<titre>" "<description>" -p P2 -l "<labels>" -a "<criteres>" -s patch -c ready`
|
|
18
17
|
- Tres hors scope (nouvelle feature, changement majeur) : `autocode new "<titre>" "<description>" -p P2 -l "<labels>" -a "<criteres>" -s patch`
|
|
19
18
|
- Dans le scope : traiter directement dans le ticket actuel
|
|
20
|
-
|
|
21
|
-
|
|
19
|
+
8. Documenter : `autocode comment <key> "Validation staging OK"`
|
|
20
|
+
9. Avancer : `autocode next <key>`
|
|
22
21
|
|
|
23
22
|
> Ou retour : `autocode move <key> <targetColumn>`
|
|
24
23
|
|