@autocode-cli/autocode 0.1.15 → 0.1.17
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 +38 -38
- package/dist/cli/commands/comment.d.ts +1 -1
- package/dist/cli/commands/comment.js +11 -11
- package/dist/cli/commands/comment.js.map +1 -1
- package/dist/cli/commands/init.js +1 -1
- package/dist/cli/commands/init.js.map +1 -1
- package/dist/cli/commands/list.d.ts +1 -1
- package/dist/cli/commands/list.d.ts.map +1 -1
- package/dist/cli/commands/list.js +65 -22
- package/dist/cli/commands/list.js.map +1 -1
- package/dist/cli/commands/move.d.ts +1 -1
- package/dist/cli/commands/move.js +12 -12
- package/dist/cli/commands/move.js.map +1 -1
- package/dist/cli/commands/new.d.ts +1 -1
- package/dist/cli/commands/new.d.ts.map +1 -1
- package/dist/cli/commands/new.js +26 -13
- package/dist/cli/commands/new.js.map +1 -1
- package/dist/cli/commands/next.d.ts +1 -1
- package/dist/cli/commands/next.js +15 -15
- package/dist/cli/commands/next.js.map +1 -1
- package/dist/cli/commands/parent.d.ts +9 -0
- package/dist/cli/commands/parent.d.ts.map +1 -0
- package/dist/cli/commands/parent.js +94 -0
- package/dist/cli/commands/parent.js.map +1 -0
- package/dist/cli/commands/serve.js +8 -8
- package/dist/cli/commands/serve.js.map +1 -1
- package/dist/cli/commands/show.d.ts +1 -1
- package/dist/cli/commands/show.d.ts.map +1 -1
- package/dist/cli/commands/show.js +51 -31
- package/dist/cli/commands/show.js.map +1 -1
- package/dist/cli/commands/stats.js +2 -2
- package/dist/cli/commands/stats.js.map +1 -1
- package/dist/cli/commands/sync.js +3 -3
- package/dist/cli/commands/sync.js.map +1 -1
- package/dist/cli/parser.d.ts.map +1 -1
- package/dist/cli/parser.js +5 -3
- package/dist/cli/parser.js.map +1 -1
- package/dist/core/column.js +2 -2
- package/dist/core/column.js.map +1 -1
- package/dist/core/hierarchy.d.ts +97 -0
- package/dist/core/hierarchy.d.ts.map +1 -0
- package/dist/core/hierarchy.js +274 -0
- package/dist/core/hierarchy.js.map +1 -0
- package/dist/core/issue.d.ts +62 -0
- package/dist/core/issue.d.ts.map +1 -0
- package/dist/core/issue.js +247 -0
- package/dist/core/issue.js.map +1 -0
- package/dist/core/sync.d.ts +9 -9
- package/dist/core/sync.d.ts.map +1 -1
- package/dist/core/sync.js +61 -58
- package/dist/core/sync.js.map +1 -1
- package/dist/core/workflow.d.ts +22 -20
- package/dist/core/workflow.d.ts.map +1 -1
- package/dist/core/workflow.js +68 -51
- package/dist/core/workflow.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/server/api-autocomplete.test.d.ts +6 -0
- package/dist/server/api-autocomplete.test.d.ts.map +1 -0
- package/dist/server/api-autocomplete.test.js +249 -0
- package/dist/server/api-autocomplete.test.js.map +1 -0
- package/dist/server/api.d.ts.map +1 -1
- package/dist/server/api.js +216 -106
- package/dist/server/api.js.map +1 -1
- package/dist/server/dashboard/pages/column-prompt.d.ts +1 -1
- package/dist/server/dashboard/pages/column-prompt.d.ts.map +1 -1
- package/dist/server/dashboard/pages/column-prompt.js +11 -11
- package/dist/server/dashboard/pages/column-prompt.js.map +1 -1
- package/dist/server/dashboard/pages/column-terminal.d.ts +1 -1
- package/dist/server/dashboard/pages/column-terminal.d.ts.map +1 -1
- package/dist/server/dashboard/pages/column-terminal.js +14 -14
- package/dist/server/dashboard/pages/column-terminal.js.map +1 -1
- package/dist/server/dashboard/pages/index.d.ts +3 -1
- package/dist/server/dashboard/pages/index.d.ts.map +1 -1
- package/dist/server/dashboard/pages/index.js +3 -1
- package/dist/server/dashboard/pages/index.js.map +1 -1
- package/dist/server/dashboard/pages/issue-graph.d.ts +9 -0
- package/dist/server/dashboard/pages/issue-graph.d.ts.map +1 -0
- package/dist/server/dashboard/pages/issue-graph.js +581 -0
- package/dist/server/dashboard/pages/issue-graph.js.map +1 -0
- package/dist/server/dashboard/pages/issue-view.d.ts +8 -0
- package/dist/server/dashboard/pages/issue-view.d.ts.map +1 -0
- package/dist/server/dashboard/pages/{ticket-view.js → issue-view.js} +128 -128
- package/dist/server/dashboard/pages/issue-view.js.map +1 -0
- package/dist/server/dashboard/pages/main-dashboard.js +21 -21
- package/dist/server/dashboard/pages/main-dashboard.js.map +1 -1
- package/dist/server/dashboard/pages/new-issue.d.ts +8 -0
- package/dist/server/dashboard/pages/new-issue.d.ts.map +1 -0
- package/dist/server/dashboard/pages/new-issue.js +648 -0
- package/dist/server/dashboard/pages/new-issue.js.map +1 -0
- package/dist/server/dashboard/pages/new-issue.test.d.ts +6 -0
- package/dist/server/dashboard/pages/new-issue.test.d.ts.map +1 -0
- package/dist/server/dashboard/pages/new-issue.test.js +349 -0
- package/dist/server/dashboard/pages/new-issue.test.js.map +1 -0
- package/dist/server/dashboard/pages/pipeline-configurator.js +1 -1
- package/dist/server/dashboard/pages/shared.d.ts +2 -2
- package/dist/server/dashboard/pages/shared.d.ts.map +1 -1
- package/dist/server/dashboard/pages/shared.js +5 -5
- package/dist/server/dashboard/pages/shared.js.map +1 -1
- package/dist/server/dashboard/pages/stats-page.js +11 -11
- package/dist/server/dashboard/scripts/index.js +134 -134
- package/dist/server/dashboard/styles/board.d.ts +1 -1
- package/dist/server/dashboard/styles/board.js +10 -10
- 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 +40 -24
- package/dist/server/index.js.map +1 -1
- package/dist/server/websocket.d.ts +6 -6
- package/dist/server/websocket.d.ts.map +1 -1
- package/dist/server/websocket.js +10 -10
- package/dist/server/websocket.js.map +1 -1
- package/dist/services/claude.d.ts +13 -13
- package/dist/services/claude.d.ts.map +1 -1
- package/dist/services/claude.js +98 -98
- package/dist/services/claude.js.map +1 -1
- package/dist/services/issue-io.d.ts +81 -0
- package/dist/services/issue-io.d.ts.map +1 -0
- package/dist/services/{ticket-io.js → issue-io.js} +54 -53
- package/dist/services/issue-io.js.map +1 -0
- package/dist/services/stats.d.ts +2 -0
- package/dist/services/stats.d.ts.map +1 -1
- package/dist/services/stats.js.map +1 -1
- package/dist/types/index.d.ts +6 -4
- package/dist/types/index.d.ts.map +1 -1
- package/dist/utils/fs.d.ts +2 -2
- package/dist/utils/fs.d.ts.map +1 -1
- package/dist/utils/fs.js +2 -2
- package/dist/utils/fs.js.map +1 -1
- package/package.json +3 -3
- package/templates/catalog.yaml +2 -2
- package/templates/prompts/api-endpoints-test.en.md +2 -2
- package/templates/prompts/api-endpoints-test.fr.md +2 -2
- package/templates/prompts/backlog.en.md +6 -6
- package/templates/prompts/backlog.fr.md +1 -1
- package/templates/prompts/changelog.en.md +6 -6
- package/templates/prompts/changelog.fr.md +3 -3
- package/templates/prompts/dashboard-responsive.en.md +1 -1
- package/templates/prompts/deploy-prod.en.md +3 -3
- package/templates/prompts/deploy-prod.fr.md +3 -3
- package/templates/prompts/deploy-staging.en.md +3 -3
- package/templates/prompts/deploy-staging.fr.md +3 -3
- package/templates/prompts/design.en.md +5 -5
- package/templates/prompts/design.fr.md +3 -3
- package/templates/prompts/dev.en.md +4 -4
- package/templates/prompts/dev.fr.md +3 -3
- package/templates/prompts/done.en.md +5 -5
- package/templates/prompts/done.fr.md +2 -2
- package/templates/prompts/error-handling-review.en.md +1 -1
- package/templates/prompts/error-handling-review.fr.md +1 -1
- package/templates/prompts/file-watcher-test.en.md +4 -4
- package/templates/prompts/file-watcher-test.fr.md +1 -1
- package/templates/prompts/git-commit.en.md +5 -5
- package/templates/prompts/git-commit.fr.md +3 -3
- package/templates/prompts/git-push.en.md +3 -3
- package/templates/prompts/git-push.fr.md +3 -3
- package/templates/prompts/git-tag.en.md +3 -3
- package/templates/prompts/git-tag.fr.md +3 -3
- package/templates/prompts/in-progress.en.md +6 -6
- package/templates/prompts/in-progress.fr.md +3 -3
- package/templates/prompts/qualification.en.md +8 -8
- package/templates/prompts/qualification.fr.md +3 -3
- package/templates/prompts/retest-cypress.en.md +3 -3
- package/templates/prompts/retest-cypress.fr.md +3 -3
- package/templates/prompts/retest-playwright.en.md +4 -4
- package/templates/prompts/retest-playwright.fr.md +3 -3
- package/templates/prompts/retest.en.md +4 -4
- package/templates/prompts/retest.fr.md +3 -3
- package/templates/prompts/review-best-practices.en.md +3 -3
- package/templates/prompts/review-best-practices.fr.md +3 -3
- package/templates/prompts/review-code.en.md +4 -4
- package/templates/prompts/review-code.fr.md +3 -3
- package/templates/prompts/review-consistency.en.md +3 -3
- package/templates/prompts/review-consistency.fr.md +3 -3
- package/templates/prompts/review-no-duplication.en.md +3 -3
- package/templates/prompts/review-no-duplication.fr.md +3 -3
- package/templates/prompts/review-security.en.md +4 -4
- package/templates/prompts/review-security.fr.md +3 -3
- package/templates/prompts/specification.en.md +5 -5
- package/templates/prompts/specification.fr.md +3 -3
- package/templates/prompts/splitter.en.md +13 -13
- package/templates/prompts/splitter.fr.md +3 -3
- package/templates/prompts/template-validation.en.md +1 -1
- package/templates/prompts/template-validation.fr.md +1 -1
- package/templates/prompts/testing-coverage.en.md +1 -1
- package/templates/prompts/testing-coverage.fr.md +1 -1
- package/templates/prompts/testing-cypress.en.md +4 -4
- package/templates/prompts/testing-cypress.fr.md +3 -3
- package/templates/prompts/testing-integration.en.md +4 -4
- package/templates/prompts/testing-integration.fr.md +3 -3
- package/templates/prompts/testing-playwright.en.md +4 -4
- package/templates/prompts/testing-playwright.fr.md +3 -3
- package/templates/prompts/testing-unit.en.md +4 -4
- package/templates/prompts/testing-unit.fr.md +3 -3
- package/templates/prompts/update-docs.en.md +3 -3
- package/templates/prompts/update-docs.fr.md +3 -3
- package/templates/prompts/validate-staging.en.md +3 -3
- package/templates/prompts/validate-staging.fr.md +3 -3
- package/templates/prompts/websocket-test.en.md +1 -1
- package/dist/core/ticket.d.ts +0 -50
- package/dist/core/ticket.d.ts.map +0 -1
- package/dist/core/ticket.js +0 -224
- package/dist/core/ticket.js.map +0 -1
- package/dist/server/dashboard/pages/ticket-view.d.ts +0 -8
- package/dist/server/dashboard/pages/ticket-view.d.ts.map +0 -1
- package/dist/server/dashboard/pages/ticket-view.js.map +0 -1
- package/dist/services/ticket-io.d.ts +0 -80
- package/dist/services/ticket-io.d.ts.map +0 -1
- package/dist/services/ticket-io.js.map +0 -1
|
@@ -15,11 +15,11 @@ Create technical and/or UX design for the feature. Prepare mockups, diagrams, or
|
|
|
15
15
|
7. If out of scope work detected:
|
|
16
16
|
- Slightly out of scope (minor improvement, edge case): `autocode new "<title>" "<description>" --priority P2 --labels "<labels>" --acceptance "<criteria>" --semver patch --column ready`
|
|
17
17
|
- Significantly out of scope (new feature, major change): `autocode new "<title>" "<description>" --priority P2 --labels "<labels>" --acceptance "<criteria>" --semver patch --column backlog`
|
|
18
|
-
- In scope: handle directly in current
|
|
19
|
-
8. Document: `autocode comment <
|
|
20
|
-
9. Advance: `autocode next <
|
|
18
|
+
- In scope: handle directly in current issue
|
|
19
|
+
8. Document: `autocode comment <issue-key> "Design complete: <summary>"`
|
|
20
|
+
9. Advance: `autocode next <issue-key>`
|
|
21
21
|
|
|
22
|
-
> Or return: `autocode move <
|
|
22
|
+
> Or return: `autocode move <issue-key> <target-column-slug>`
|
|
23
23
|
|
|
24
24
|
## Validation Criteria
|
|
25
25
|
|
|
@@ -30,4 +30,4 @@ Create technical and/or UX design for the feature. Prepare mockups, diagrams, or
|
|
|
30
30
|
|
|
31
31
|
## Notes
|
|
32
32
|
|
|
33
|
-
Good design prevents costly refactoring later. Balance thoroughness with pragmatism based on
|
|
33
|
+
Good design prevents costly refactoring later. Balance thoroughness with pragmatism based on issue complexity.
|
|
@@ -16,10 +16,10 @@ Creer le design technique et/ou UX pour la fonctionnalite. Preparer les maquette
|
|
|
16
16
|
- Legerement hors scope (amelioration mineure, cas limite) : `autocode new "<titre>" "<description>" --priority P2 --labels "<labels>" --acceptance "<criteres>" --semver patch --column ready`
|
|
17
17
|
- Tres hors scope (nouvelle feature, changement majeur) : `autocode new "<titre>" "<description>" --priority P2 --labels "<labels>" --acceptance "<criteres>" --semver patch --column backlog`
|
|
18
18
|
- Dans le scope : traiter directement dans le ticket actuel
|
|
19
|
-
8. Documenter : `autocode comment <
|
|
20
|
-
9. Avancer : `autocode next <
|
|
19
|
+
8. Documenter : `autocode comment <issue-key> "Design termine : <resume>"`
|
|
20
|
+
9. Avancer : `autocode next <issue-key>`
|
|
21
21
|
|
|
22
|
-
> Ou retour : `autocode move <
|
|
22
|
+
> Ou retour : `autocode move <issue-key> <target-column-slug>`
|
|
23
23
|
|
|
24
24
|
## Criteres de Validation
|
|
25
25
|
|
|
@@ -15,11 +15,11 @@ Implement the feature or fix according to specifications. Write clean, maintaina
|
|
|
15
15
|
7. If out of scope work detected:
|
|
16
16
|
- Slightly out of scope (minor improvement, edge case): `autocode new "<title>" "<description>" --priority P2 --labels "<labels>" --acceptance "<criteria>" --semver patch --column ready`
|
|
17
17
|
- Significantly out of scope (new feature, major change): `autocode new "<title>" "<description>" --priority P2 --labels "<labels>" --acceptance "<criteria>" --semver patch --column backlog`
|
|
18
|
-
- In scope: handle directly in current
|
|
19
|
-
8. Document: `autocode comment <
|
|
20
|
-
9. Advance: `autocode next <
|
|
18
|
+
- In scope: handle directly in current issue
|
|
19
|
+
8. Document: `autocode comment <issue-key> "Development complete: <files modified>"`
|
|
20
|
+
9. Advance: `autocode next <issue-key>`
|
|
21
21
|
|
|
22
|
-
> Or return: `autocode move <
|
|
22
|
+
> Or return: `autocode move <issue-key> <target-column-slug>`
|
|
23
23
|
|
|
24
24
|
## Validation Criteria
|
|
25
25
|
|
|
@@ -16,10 +16,10 @@ Implementer la fonctionnalite ou le correctif selon les specifications. Ecrire d
|
|
|
16
16
|
- Legerement hors scope (amelioration mineure, cas limite) : `autocode new "<titre>" "<description>" --priority P2 --labels "<labels>" --acceptance "<criteres>" --semver patch --column ready`
|
|
17
17
|
- Tres hors scope (nouvelle feature, changement majeur) : `autocode new "<titre>" "<description>" --priority P2 --labels "<labels>" --acceptance "<criteres>" --semver patch --column backlog`
|
|
18
18
|
- Dans le scope : traiter directement dans le ticket actuel
|
|
19
|
-
8. Documenter : `autocode comment <
|
|
20
|
-
9. Avancer : `autocode next <
|
|
19
|
+
8. Documenter : `autocode comment <issue-key> "Developpement termine : <fichiers modifies>"`
|
|
20
|
+
9. Avancer : `autocode next <issue-key>`
|
|
21
21
|
|
|
22
|
-
> Ou retour : `autocode move <
|
|
22
|
+
> Ou retour : `autocode move <issue-key> <target-column-slug>`
|
|
23
23
|
|
|
24
24
|
## Criteres de Validation
|
|
25
25
|
|
|
@@ -2,19 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
## Role
|
|
4
4
|
|
|
5
|
-
Archive of completed and validated
|
|
5
|
+
Archive of completed and validated issues. End of workflow.
|
|
6
6
|
|
|
7
7
|
## Actions
|
|
8
8
|
|
|
9
|
-
1. Document: `autocode comment <
|
|
9
|
+
1. Document: `autocode comment <issue-key> "Issue completed"`
|
|
10
10
|
|
|
11
|
-
> If problem discovered: `autocode move <
|
|
11
|
+
> If problem discovered: `autocode move <issue-key> <target-column-slug>` or create a new issue:
|
|
12
12
|
> - Slightly out of scope (minor improvement, edge case): `autocode new "<title>" "<description>" --priority P2 --labels "<labels>" --acceptance "<criteria>" --semver patch --column ready`
|
|
13
13
|
> - Significantly out of scope (new feature, major change): `autocode new "<title>" "<description>" --priority P2 --labels "<labels>" --acceptance "<criteria>" --semver patch --column backlog`
|
|
14
14
|
|
|
15
15
|
## Validation Criteria
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
Issue should only arrive here if:
|
|
18
18
|
- [x] All previous steps validated
|
|
19
19
|
- [x] Feature is deployed and tested
|
|
20
20
|
- [x] Documentation is up to date
|
|
@@ -22,4 +22,4 @@ Ticket should only arrive here if:
|
|
|
22
22
|
|
|
23
23
|
## Notes
|
|
24
24
|
|
|
25
|
-
Never take
|
|
25
|
+
Never take an issue from this column. If a problem is discovered on a "Done" issue, create a new issue to handle it.
|
|
@@ -6,9 +6,9 @@ Archive des tickets termines et valides. Fin du workflow.
|
|
|
6
6
|
|
|
7
7
|
## Actions
|
|
8
8
|
|
|
9
|
-
1. Documenter : `autocode comment <
|
|
9
|
+
1. Documenter : `autocode comment <issue-key> "Ticket termine"`
|
|
10
10
|
|
|
11
|
-
> Si probleme decouvert : `autocode move <
|
|
11
|
+
> Si probleme decouvert : `autocode move <issue-key> <target-column-slug>` ou creer un nouveau ticket :
|
|
12
12
|
> - Legerement hors scope (amelioration mineure, cas limite) : `autocode new "<titre>" "<description>" --priority P2 --labels "<labels>" --acceptance "<criteres>" --semver patch --column ready`
|
|
13
13
|
> - Tres hors scope (nouvelle feature, changement majeur) : `autocode new "<titre>" "<description>" --priority P2 --labels "<labels>" --acceptance "<criteres>" --semver patch --column backlog`
|
|
14
14
|
|
|
@@ -6,7 +6,7 @@ Verify errors are correctly handled throughout the code.
|
|
|
6
6
|
## Actions
|
|
7
7
|
1. Analyze critical files:
|
|
8
8
|
- src/server/api.ts (REST endpoints)
|
|
9
|
-
- src/core/
|
|
9
|
+
- src/core/issue.ts (file operations)
|
|
10
10
|
- src/services/claude.ts (external calls)
|
|
11
11
|
2. Check patterns:
|
|
12
12
|
- try/catch around I/O
|
|
@@ -6,7 +6,7 @@ Vérifier que les erreurs sont correctement gérées dans tout le code.
|
|
|
6
6
|
## Actions
|
|
7
7
|
1. Analyser les fichiers critiques:
|
|
8
8
|
- src/server/api.ts (endpoints REST)
|
|
9
|
-
- src/core/
|
|
9
|
+
- src/core/issue.ts (opérations fichiers)
|
|
10
10
|
- src/services/claude.ts (appels externes)
|
|
11
11
|
2. Vérifier les patterns:
|
|
12
12
|
- try/catch autour des I/O
|
|
@@ -5,11 +5,11 @@ Verify file monitoring system works correctly.
|
|
|
5
5
|
|
|
6
6
|
## Actions
|
|
7
7
|
1. Start server with watcher: `node dist/index.js serve`
|
|
8
|
-
2. Create a new
|
|
8
|
+
2. Create a new issue file in .autocode/issues/
|
|
9
9
|
3. Verify dashboard detects the change
|
|
10
|
-
4. Modify an existing
|
|
10
|
+
4. Modify an existing issue
|
|
11
11
|
5. Verify real-time update via WebSocket
|
|
12
|
-
6. Delete
|
|
12
|
+
6. Delete an issue
|
|
13
13
|
7. Test with many files (performance)
|
|
14
14
|
|
|
15
15
|
## Validation Criteria
|
|
@@ -17,4 +17,4 @@ Verify file monitoring system works correctly.
|
|
|
17
17
|
- [ ] Modification detected and propagated
|
|
18
18
|
- [ ] Deletion detected
|
|
19
19
|
- [ ] No memory leak on prolonged watch
|
|
20
|
-
- [ ] Acceptable performance with 100+
|
|
20
|
+
- [ ] Acceptable performance with 100+ issues
|
|
@@ -5,7 +5,7 @@ Vérifier que le système de surveillance des fichiers fonctionne correctement.
|
|
|
5
5
|
|
|
6
6
|
## Actions
|
|
7
7
|
1. Démarrer le serveur avec watcher: `node dist/index.js serve`
|
|
8
|
-
2. Créer un nouveau fichier ticket dans .autocode/
|
|
8
|
+
2. Créer un nouveau fichier ticket dans .autocode/issues/
|
|
9
9
|
3. Vérifier que le dashboard détecte le changement
|
|
10
10
|
4. Modifier un ticket existant
|
|
11
11
|
5. Vérifier la mise à jour en temps réel via WebSocket
|
|
@@ -14,20 +14,20 @@ Create a clean, atomic git commit for the changes. Follow conventional commit fo
|
|
|
14
14
|
- `docs:` for documentation
|
|
15
15
|
- `refactor:` for refactoring
|
|
16
16
|
- `test:` for tests
|
|
17
|
-
4. Include
|
|
17
|
+
4. Include issue key in commit body
|
|
18
18
|
5. Create commit: `git commit -m "<type>: <description>"`
|
|
19
19
|
6. Verify commit: `git log -1`
|
|
20
|
-
7. Document: `autocode comment <
|
|
21
|
-
8. Advance: `autocode next <
|
|
20
|
+
7. Document: `autocode comment <issue-key> "Committed: <commit hash>"`
|
|
21
|
+
8. Advance: `autocode next <issue-key>`
|
|
22
22
|
|
|
23
|
-
> Or return: `autocode move <
|
|
23
|
+
> Or return: `autocode move <issue-key> <target-column-slug>`
|
|
24
24
|
|
|
25
25
|
## Validation Criteria
|
|
26
26
|
|
|
27
27
|
- [ ] Commit message follows convention
|
|
28
28
|
- [ ] Only relevant files included
|
|
29
29
|
- [ ] Commit is atomic (single purpose)
|
|
30
|
-
- [ ]
|
|
30
|
+
- [ ] Issue key referenced
|
|
31
31
|
|
|
32
32
|
## Notes
|
|
33
33
|
|
|
@@ -17,10 +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. Documenter : `autocode comment <
|
|
21
|
-
8. Avancer : `autocode next <
|
|
20
|
+
7. Documenter : `autocode comment <issue-key> "Commite : <hash du commit>"`
|
|
21
|
+
8. Avancer : `autocode next <issue-key>`
|
|
22
22
|
|
|
23
|
-
> Ou retour : `autocode move <
|
|
23
|
+
> Ou retour : `autocode move <issue-key> <target-column-slug>`
|
|
24
24
|
|
|
25
25
|
## Criteres de Validation
|
|
26
26
|
|
|
@@ -13,10 +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. Document: `autocode comment <
|
|
17
|
-
9. Advance: `autocode next <
|
|
16
|
+
8. Document: `autocode comment <issue-key> "Pushed to <branch>"`
|
|
17
|
+
9. Advance: `autocode next <issue-key>`
|
|
18
18
|
|
|
19
|
-
> Or return: `autocode move <
|
|
19
|
+
> Or return: `autocode move <issue-key> <target-column-slug>`
|
|
20
20
|
|
|
21
21
|
## Validation Criteria
|
|
22
22
|
|
|
@@ -13,10 +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. Documenter : `autocode comment <
|
|
17
|
-
9. Avancer : `autocode next <
|
|
16
|
+
8. Documenter : `autocode comment <issue-key> "Pousse vers <branche>"`
|
|
17
|
+
9. Avancer : `autocode next <issue-key>`
|
|
18
18
|
|
|
19
|
-
> Ou retour : `autocode move <
|
|
19
|
+
> Ou retour : `autocode move <issue-key> <target-column-slug>`
|
|
20
20
|
|
|
21
21
|
## Criteres de Validation
|
|
22
22
|
|
|
@@ -14,10 +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. Document: `autocode comment <
|
|
18
|
-
7. Advance: `autocode next <
|
|
17
|
+
6. Document: `autocode comment <issue-key> "Tagged: v<version>"`
|
|
18
|
+
7. Advance: `autocode next <issue-key>`
|
|
19
19
|
|
|
20
|
-
> Or return: `autocode move <
|
|
20
|
+
> Or return: `autocode move <issue-key> <target-column-slug>`
|
|
21
21
|
|
|
22
22
|
## Validation Criteria
|
|
23
23
|
|
|
@@ -14,10 +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. Documenter : `autocode comment <
|
|
18
|
-
7. Avancer : `autocode next <
|
|
17
|
+
6. Documenter : `autocode comment <issue-key> "Tag cree : v<version>"`
|
|
18
|
+
7. Avancer : `autocode next <issue-key>`
|
|
19
19
|
|
|
20
|
-
> Ou retour : `autocode move <
|
|
20
|
+
> Ou retour : `autocode move <issue-key> <target-column-slug>`
|
|
21
21
|
|
|
22
22
|
## Criteres de Validation
|
|
23
23
|
|
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
## Role
|
|
4
4
|
|
|
5
|
-
Active development.
|
|
5
|
+
Active development. Issue is being worked on, code is being written.
|
|
6
6
|
|
|
7
7
|
## Actions
|
|
8
8
|
|
|
9
|
-
1. Analyze
|
|
9
|
+
1. Analyze issue and acceptance criteria
|
|
10
10
|
2. Explore codebase to understand existing context
|
|
11
11
|
3. Plan modifications (files to create/modify)
|
|
12
12
|
4. Implement the solution
|
|
@@ -14,11 +14,11 @@ Active development. Ticket is being worked on, code is being written.
|
|
|
14
14
|
6. If out of scope work detected:
|
|
15
15
|
- Slightly out of scope (minor improvement, edge case): `autocode new "<title>" "<description>" --priority P2 --labels "<labels>" --acceptance "<criteria>" --semver patch --column ready`
|
|
16
16
|
- Significantly out of scope (new feature, major change): `autocode new "<title>" "<description>" --priority P2 --labels "<labels>" --acceptance "<criteria>" --semver patch --column backlog`
|
|
17
|
-
- In scope: handle directly in current
|
|
18
|
-
7. Document: `autocode comment <
|
|
19
|
-
8. Advance: `autocode next <
|
|
17
|
+
- In scope: handle directly in current issue
|
|
18
|
+
7. Document: `autocode comment <issue-key> "Work completed"`
|
|
19
|
+
8. Advance: `autocode next <issue-key>`
|
|
20
20
|
|
|
21
|
-
> Or return: `autocode move <
|
|
21
|
+
> Or return: `autocode move <issue-key> <target-column-slug>`
|
|
22
22
|
|
|
23
23
|
## Validation Criteria
|
|
24
24
|
|
|
@@ -15,10 +15,10 @@ Developpement actif. Le ticket est en cours de travail, le code est en cours d'e
|
|
|
15
15
|
- Legerement hors scope (amelioration mineure, cas limite) : `autocode new "<titre>" "<description>" --priority P2 --labels "<labels>" --acceptance "<criteres>" --semver patch --column ready`
|
|
16
16
|
- Tres hors scope (nouvelle feature, changement majeur) : `autocode new "<titre>" "<description>" --priority P2 --labels "<labels>" --acceptance "<criteres>" --semver patch --column backlog`
|
|
17
17
|
- Dans le scope : traiter directement dans le ticket actuel
|
|
18
|
-
7. Documenter : `autocode comment <
|
|
19
|
-
8. Avancer : `autocode next <
|
|
18
|
+
7. Documenter : `autocode comment <issue-key> "Travail effectue"`
|
|
19
|
+
8. Avancer : `autocode next <issue-key>`
|
|
20
20
|
|
|
21
|
-
> Ou retour : `autocode move <
|
|
21
|
+
> Ou retour : `autocode move <issue-key> <target-column-slug>`
|
|
22
22
|
|
|
23
23
|
## Criteres de Validation
|
|
24
24
|
|
|
@@ -2,24 +2,24 @@
|
|
|
2
2
|
|
|
3
3
|
## Role
|
|
4
4
|
|
|
5
|
-
Analyze and qualify the
|
|
5
|
+
Analyze and qualify the issue requirement. Ensure the request is clear, feasible, and properly scoped.
|
|
6
6
|
|
|
7
7
|
## Actions
|
|
8
8
|
|
|
9
|
-
1. Read the
|
|
9
|
+
1. Read the issue description and acceptance criteria
|
|
10
10
|
2. Identify ambiguities or missing information
|
|
11
11
|
3. Assess technical feasibility
|
|
12
12
|
4. Estimate complexity (simple/medium/complex)
|
|
13
|
-
5. Identify dependencies with other
|
|
13
|
+
5. Identify dependencies with other issues or systems
|
|
14
14
|
6. If clarification needed: add comment with questions
|
|
15
15
|
7. If out of scope work detected:
|
|
16
16
|
- Slightly out of scope (minor improvement, edge case): `autocode new "<title>" "<description>" --priority P2 --labels "<labels>" --acceptance "<criteria>" --semver patch --column ready`
|
|
17
17
|
- Significantly out of scope (new feature, major change): `autocode new "<title>" "<description>" --priority P2 --labels "<labels>" --acceptance "<criteria>" --semver patch --column backlog`
|
|
18
|
-
- In scope: handle directly in current
|
|
19
|
-
8. Document: `autocode comment <
|
|
20
|
-
9. Advance: `autocode next <
|
|
18
|
+
- In scope: handle directly in current issue
|
|
19
|
+
8. Document: `autocode comment <issue-key> "Qualification complete: <summary>"`
|
|
20
|
+
9. Advance: `autocode next <issue-key>`
|
|
21
21
|
|
|
22
|
-
> Or return: `autocode move <
|
|
22
|
+
> Or return: `autocode move <issue-key> <target-column-slug>`
|
|
23
23
|
|
|
24
24
|
## Validation Criteria
|
|
25
25
|
|
|
@@ -30,4 +30,4 @@ Analyze and qualify the ticket requirement. Ensure the request is clear, feasibl
|
|
|
30
30
|
|
|
31
31
|
## Notes
|
|
32
32
|
|
|
33
|
-
A well-qualified
|
|
33
|
+
A well-qualified issue saves development time. When in doubt, ask for clarification rather than assuming.
|
|
@@ -16,10 +16,10 @@ Analyser et qualifier le besoin du ticket. S'assurer que la demande est claire,
|
|
|
16
16
|
- Legerement hors scope (amelioration mineure, cas limite) : `autocode new "<titre>" "<description>" --priority P2 --labels "<labels>" --acceptance "<criteres>" --semver patch --column ready`
|
|
17
17
|
- Tres hors scope (nouvelle feature, changement majeur) : `autocode new "<titre>" "<description>" --priority P2 --labels "<labels>" --acceptance "<criteres>" --semver patch --column backlog`
|
|
18
18
|
- Dans le scope : traiter directement dans le ticket actuel
|
|
19
|
-
8. Documenter : `autocode comment <
|
|
20
|
-
9. Avancer : `autocode next <
|
|
19
|
+
8. Documenter : `autocode comment <issue-key> "Qualification terminee : <resume>"`
|
|
20
|
+
9. Avancer : `autocode next <issue-key>`
|
|
21
21
|
|
|
22
|
-
> Ou retour : `autocode move <
|
|
22
|
+
> Ou retour : `autocode move <issue-key> <target-column-slug>`
|
|
23
23
|
|
|
24
24
|
## Criteres de Validation
|
|
25
25
|
|
|
@@ -10,10 +10,10 @@ Re-run all automated E2E tests to ensure refactoring did not introduce regressio
|
|
|
10
10
|
2. Compare results with pre-refactoring run
|
|
11
11
|
3. If new failures: identify cause (test or code issue)
|
|
12
12
|
4. Fix any regressions before proceeding
|
|
13
|
-
5. Document: `autocode comment <
|
|
14
|
-
6. Advance: `autocode next <
|
|
13
|
+
5. Document: `autocode comment <issue-key> "Retest Cypress OK"`
|
|
14
|
+
6. Advance: `autocode next <issue-key>`
|
|
15
15
|
|
|
16
|
-
> Or return: `autocode move <
|
|
16
|
+
> Or return: `autocode move <issue-key> <target-column-slug>`
|
|
17
17
|
|
|
18
18
|
## Validation Criteria
|
|
19
19
|
|
|
@@ -10,10 +10,10 @@ Re-executer tous les tests E2E automatises pour s'assurer que le refactoring n'a
|
|
|
10
10
|
2. Comparer les resultats avec l'execution pre-refactoring
|
|
11
11
|
3. Si nouveaux echecs : identifier la cause (probleme de test ou de code)
|
|
12
12
|
4. Corriger toute regression avant de continuer
|
|
13
|
-
5. Documenter : `autocode comment <
|
|
14
|
-
6. Avancer : `autocode next <
|
|
13
|
+
5. Documenter : `autocode comment <issue-key> "Retest Cypress OK"`
|
|
14
|
+
6. Avancer : `autocode next <issue-key>`
|
|
15
15
|
|
|
16
|
-
> Ou retour : `autocode move <
|
|
16
|
+
> Ou retour : `autocode move <issue-key> <target-column-slug>`
|
|
17
17
|
|
|
18
18
|
## Criteres de Validation
|
|
19
19
|
|
|
@@ -12,11 +12,11 @@ Post-refactoring validation with Playwright. Verify that refactoring did not bre
|
|
|
12
12
|
4. Verify edge cases still work
|
|
13
13
|
5. Compare behavior with pre-refactoring state
|
|
14
14
|
6. If regression detected: return to review step
|
|
15
|
-
7. Do not test functionality outside the
|
|
16
|
-
8. Document: `autocode comment <
|
|
17
|
-
9. Advance: `autocode next <
|
|
15
|
+
7. Do not test functionality outside the issue scope
|
|
16
|
+
8. Document: `autocode comment <issue-key> "Retest Playwright OK"`
|
|
17
|
+
9. Advance: `autocode next <issue-key>`
|
|
18
18
|
|
|
19
|
-
> Or return: `autocode move <
|
|
19
|
+
> Or return: `autocode move <issue-key> <target-column-slug>`
|
|
20
20
|
|
|
21
21
|
## Validation Criteria
|
|
22
22
|
|
|
@@ -13,10 +13,10 @@ Validation post-refactoring avec Playwright. Verifier que le refactoring n'a pas
|
|
|
13
13
|
5. Comparer le comportement avec l'etat pre-refactoring
|
|
14
14
|
6. Si regression detectee : retour a l'etape de review
|
|
15
15
|
7. Ne pas tester de fonctionnalites hors scope du ticket
|
|
16
|
-
8. Documenter : `autocode comment <
|
|
17
|
-
9. Avancer : `autocode next <
|
|
16
|
+
8. Documenter : `autocode comment <issue-key> "Retest Playwright OK"`
|
|
17
|
+
9. Avancer : `autocode next <issue-key>`
|
|
18
18
|
|
|
19
|
-
> Ou retour : `autocode move <
|
|
19
|
+
> Ou retour : `autocode move <issue-key> <target-column-slug>`
|
|
20
20
|
|
|
21
21
|
## Criteres de Validation
|
|
22
22
|
|
|
@@ -13,11 +13,11 @@ Re-run all tests after bug fixes or corrections. Ensure no regressions were intr
|
|
|
13
13
|
5. Verify the original issue is fixed
|
|
14
14
|
6. Check for regressions in related functionality
|
|
15
15
|
7. If tests fail: return to appropriate column for fixes
|
|
16
|
-
8. Do not write tests for code outside the
|
|
17
|
-
9. Document: `autocode comment <
|
|
18
|
-
10. Advance: `autocode next <
|
|
16
|
+
8. Do not write tests for code outside the issue scope
|
|
17
|
+
9. Document: `autocode comment <issue-key> "Retest passed: all tests green"`
|
|
18
|
+
10. Advance: `autocode next <issue-key>`
|
|
19
19
|
|
|
20
|
-
> Or return: `autocode move <
|
|
20
|
+
> Or return: `autocode move <issue-key> <target-column-slug>`
|
|
21
21
|
|
|
22
22
|
## Validation Criteria
|
|
23
23
|
|
|
@@ -14,10 +14,10 @@ Re-executer tous les tests apres corrections de bugs. S'assurer qu'aucune regres
|
|
|
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
16
|
8. Ne pas ecrire de tests pour du code hors scope du ticket
|
|
17
|
-
9. Documenter : `autocode comment <
|
|
18
|
-
10. Avancer : `autocode next <
|
|
17
|
+
9. Documenter : `autocode comment <issue-key> "Retest OK : tous les tests verts"`
|
|
18
|
+
10. Avancer : `autocode next <issue-key>`
|
|
19
19
|
|
|
20
|
-
> Ou retour : `autocode move <
|
|
20
|
+
> Ou retour : `autocode move <issue-key> <target-column-slug>`
|
|
21
21
|
|
|
22
22
|
## Criteres de Validation
|
|
23
23
|
|
|
@@ -12,10 +12,10 @@ Code quality audit. Verify conventions and best practices are followed.
|
|
|
12
12
|
4. Verify file size (components < 300 lines)
|
|
13
13
|
5. Verify import organization
|
|
14
14
|
6. Fix violations found
|
|
15
|
-
7. Document: `autocode comment <
|
|
16
|
-
8. Advance: `autocode next <
|
|
15
|
+
7. Document: `autocode comment <issue-key> "Review best practices OK"`
|
|
16
|
+
8. Advance: `autocode next <issue-key>`
|
|
17
17
|
|
|
18
|
-
> Or return: `autocode move <
|
|
18
|
+
> Or return: `autocode move <issue-key> <target-column-slug>`
|
|
19
19
|
|
|
20
20
|
## Validation Criteria
|
|
21
21
|
|
|
@@ -12,10 +12,10 @@ Audit qualite du code. Verifier que les conventions et bonnes pratiques sont res
|
|
|
12
12
|
4. Verifier la taille des fichiers (composants < 300 lignes)
|
|
13
13
|
5. Verifier l'organisation des imports
|
|
14
14
|
6. Corriger les violations trouvees
|
|
15
|
-
7. Documenter : `autocode comment <
|
|
16
|
-
8. Avancer : `autocode next <
|
|
15
|
+
7. Documenter : `autocode comment <issue-key> "Review best practices OK"`
|
|
16
|
+
8. Avancer : `autocode next <issue-key>`
|
|
17
17
|
|
|
18
|
-
> Ou retour : `autocode move <
|
|
18
|
+
> Ou retour : `autocode move <issue-key> <target-column-slug>`
|
|
19
19
|
|
|
20
20
|
## Criteres de Validation
|
|
21
21
|
|
|
@@ -6,17 +6,17 @@ Perform peer code review. Ensure code quality, readability, and adherence to pro
|
|
|
6
6
|
|
|
7
7
|
## Actions
|
|
8
8
|
|
|
9
|
-
1. Review all changed files in the
|
|
9
|
+
1. Review all changed files in the issue
|
|
10
10
|
2. Check code readability and naming conventions
|
|
11
11
|
3. Verify logic correctness
|
|
12
12
|
4. Look for potential bugs or edge cases
|
|
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. Document: `autocode comment <
|
|
17
|
-
9. Advance: `autocode next <
|
|
16
|
+
8. Document: `autocode comment <issue-key> "Code review passed: <summary>"`
|
|
17
|
+
9. Advance: `autocode next <issue-key>`
|
|
18
18
|
|
|
19
|
-
> Or return: `autocode move <
|
|
19
|
+
> Or return: `autocode move <issue-key> <target-column-slug>`
|
|
20
20
|
|
|
21
21
|
## Validation Criteria
|
|
22
22
|
|
|
@@ -13,10 +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. Documenter : `autocode comment <
|
|
17
|
-
9. Avancer : `autocode next <
|
|
16
|
+
8. Documenter : `autocode comment <issue-key> "Code review OK : <resume>"`
|
|
17
|
+
9. Avancer : `autocode next <issue-key>`
|
|
18
18
|
|
|
19
|
-
> Ou retour : `autocode move <
|
|
19
|
+
> Ou retour : `autocode move <issue-key> <target-column-slug>`
|
|
20
20
|
|
|
21
21
|
## Criteres de Validation
|
|
22
22
|
|
|
@@ -12,10 +12,10 @@ Verify code integrates harmoniously with existing project architecture.
|
|
|
12
12
|
4. Check error handling (uniform try/catch)
|
|
13
13
|
5. Verify correct Pinia store usage
|
|
14
14
|
6. Fix inconsistencies
|
|
15
|
-
7. Document: `autocode comment <
|
|
16
|
-
8. Advance: `autocode next <
|
|
15
|
+
7. Document: `autocode comment <issue-key> "Review consistency OK"`
|
|
16
|
+
8. Advance: `autocode next <issue-key>`
|
|
17
17
|
|
|
18
|
-
> Or return: `autocode move <
|
|
18
|
+
> Or return: `autocode move <issue-key> <target-column-slug>`
|
|
19
19
|
|
|
20
20
|
## Validation Criteria
|
|
21
21
|
|
|
@@ -12,10 +12,10 @@ Verifier que le code s'integre harmonieusement avec l'architecture existante du
|
|
|
12
12
|
4. Controler la gestion d'erreurs (try/catch uniforme)
|
|
13
13
|
5. Verifier l'usage correct des stores Pinia
|
|
14
14
|
6. Corriger les incoherences
|
|
15
|
-
7. Documenter : `autocode comment <
|
|
16
|
-
8. Avancer : `autocode next <
|
|
15
|
+
7. Documenter : `autocode comment <issue-key> "Review consistency OK"`
|
|
16
|
+
8. Avancer : `autocode next <issue-key>`
|
|
17
17
|
|
|
18
|
-
> Ou retour : `autocode move <
|
|
18
|
+
> Ou retour : `autocode move <issue-key> <target-column-slug>`
|
|
19
19
|
|
|
20
20
|
## Criteres de Validation
|
|
21
21
|
|
|
@@ -12,10 +12,10 @@ Identify and eliminate code duplication. Factor into reusable functions/composab
|
|
|
12
12
|
4. Detect copy-pasted business logic
|
|
13
13
|
5. Extract to composable/service/shared function if >2 usages
|
|
14
14
|
6. Update all existing calls
|
|
15
|
-
7. Document: `autocode comment <
|
|
16
|
-
8. Advance: `autocode next <
|
|
15
|
+
7. Document: `autocode comment <issue-key> "Review no duplication OK"`
|
|
16
|
+
8. Advance: `autocode next <issue-key>`
|
|
17
17
|
|
|
18
|
-
> Or return: `autocode move <
|
|
18
|
+
> Or return: `autocode move <issue-key> <target-column-slug>`
|
|
19
19
|
|
|
20
20
|
## Validation Criteria
|
|
21
21
|
|
|
@@ -12,10 +12,10 @@ Identifier et eliminer la duplication de code. Factoriser en fonctions/composabl
|
|
|
12
12
|
4. Detecter la logique metier copiee-collee
|
|
13
13
|
5. Extraire en composable/service/fonction partagee si >2 usages
|
|
14
14
|
6. Mettre a jour tous les appels existants
|
|
15
|
-
7. Documenter : `autocode comment <
|
|
16
|
-
8. Avancer : `autocode next <
|
|
15
|
+
7. Documenter : `autocode comment <issue-key> "Review no duplication OK"`
|
|
16
|
+
8. Avancer : `autocode next <issue-key>`
|
|
17
17
|
|
|
18
|
-
> Ou retour : `autocode move <
|
|
18
|
+
> Ou retour : `autocode move <issue-key> <target-column-slug>`
|
|
19
19
|
|
|
20
20
|
## Criteres de Validation
|
|
21
21
|
|
|
@@ -16,11 +16,11 @@ Security audit. Identify and fix potential vulnerabilities (OWASP Top 10).
|
|
|
16
16
|
8. If out of scope work detected:
|
|
17
17
|
- Slightly out of scope (minor improvement, edge case): `autocode new "<title>" "<description>" --priority P2 --labels "<labels>" --acceptance "<criteria>" --semver patch --column ready`
|
|
18
18
|
- Significantly out of scope (new feature, major change): `autocode new "<title>" "<description>" --priority P2 --labels "<labels>" --acceptance "<criteria>" --semver patch --column backlog`
|
|
19
|
-
- In scope: handle directly in current
|
|
20
|
-
9. Document: `autocode comment <
|
|
21
|
-
10. Advance: `autocode next <
|
|
19
|
+
- In scope: handle directly in current issue
|
|
20
|
+
9. Document: `autocode comment <issue-key> "Review security OK"`
|
|
21
|
+
10. Advance: `autocode next <issue-key>`
|
|
22
22
|
|
|
23
|
-
> Or return: `autocode move <
|
|
23
|
+
> Or return: `autocode move <issue-key> <target-column-slug>`
|
|
24
24
|
|
|
25
25
|
## Validation Criteria
|
|
26
26
|
|