@autocode-cli/autocode 0.1.9 → 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/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/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/backlog.en.md +4 -1
- package/templates/prompts/backlog.fr.md +4 -1
- package/templates/prompts/changelog.en.md +6 -4
- package/templates/prompts/changelog.fr.md +6 -4
- 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 +6 -3
- package/templates/prompts/deploy-staging.fr.md +6 -3
- package/templates/prompts/design.en.md +4 -1
- package/templates/prompts/design.fr.md +4 -1
- package/templates/prompts/dev.en.md +7 -5
- package/templates/prompts/dev.fr.md +7 -5
- 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 +6 -5
- package/templates/prompts/in-progress.fr.md +6 -5
- package/templates/prompts/qualification.en.md +4 -1
- package/templates/prompts/qualification.fr.md +4 -1
- package/templates/prompts/ready.en.md +6 -5
- package/templates/prompts/ready.fr.md +6 -5
- package/templates/prompts/retest-cypress.en.md +6 -4
- package/templates/prompts/retest-cypress.fr.md +6 -4
- 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 +6 -4
- package/templates/prompts/review-best-practices.fr.md +6 -4
- 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 +6 -4
- package/templates/prompts/review-consistency.fr.md +6 -4
- package/templates/prompts/review-no-duplication.en.md +6 -4
- package/templates/prompts/review-no-duplication.fr.md +6 -4
- package/templates/prompts/review-security.en.md +6 -4
- package/templates/prompts/review-security.fr.md +6 -4
- package/templates/prompts/specification.en.md +4 -1
- package/templates/prompts/specification.fr.md +4 -1
- package/templates/prompts/splitter.en.md +9 -1
- package/templates/prompts/splitter.fr.md +9 -2
- package/templates/prompts/testing-cypress.en.md +6 -4
- package/templates/prompts/testing-cypress.fr.md +6 -4
- package/templates/prompts/testing-integration.en.md +6 -4
- package/templates/prompts/testing-integration.fr.md +6 -4
- 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 +6 -4
- package/templates/prompts/testing-unit.fr.md +6 -4
- package/templates/prompts/update-docs.en.md +6 -4
- package/templates/prompts/update-docs.fr.md +6 -4
- package/templates/prompts/validate-staging.en.md +11 -9
- package/templates/prompts/validate-staging.fr.md +11 -9
|
@@ -7,15 +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
|
-
|
|
17
|
-
|
|
18
|
-
|
|
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:
|
|
16
|
+
- Slightly out of scope (minor improvement, edge case): `autocode new "<title>" "<description>" -p P2 -l "<labels>" -a "<criteria>" -s patch -c ready`
|
|
17
|
+
- Significantly out of scope (new feature, major change): `autocode new "<title>" "<description>" -p P2 -l "<labels>" -a "<criteria>" -s patch`
|
|
18
|
+
- In scope: handle directly in current ticket
|
|
19
|
+
8. Document: `autocode comment <key> "Staging validation OK"`
|
|
20
|
+
9. Advance: `autocode next <key>`
|
|
19
21
|
|
|
20
22
|
> Or return: `autocode move <key> <targetColumn>`
|
|
21
23
|
|
|
@@ -7,15 +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
|
-
|
|
17
|
-
|
|
18
|
-
|
|
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 :
|
|
16
|
+
- Legerement hors scope (amelioration mineure, cas limite) : `autocode new "<titre>" "<description>" -p P2 -l "<labels>" -a "<criteres>" -s patch -c ready`
|
|
17
|
+
- Tres hors scope (nouvelle feature, changement majeur) : `autocode new "<titre>" "<description>" -p P2 -l "<labels>" -a "<criteres>" -s patch`
|
|
18
|
+
- Dans le scope : traiter directement dans le ticket actuel
|
|
19
|
+
8. Documenter : `autocode comment <key> "Validation staging OK"`
|
|
20
|
+
9. Avancer : `autocode next <key>`
|
|
19
21
|
|
|
20
22
|
> Ou retour : `autocode move <key> <targetColumn>`
|
|
21
23
|
|