@codexa/cli 8.5.0 → 8.6.0
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/commands/architect.ts +760 -896
- package/commands/check.ts +131 -131
- package/commands/clear.ts +170 -174
- package/commands/decide.ts +249 -249
- package/commands/discover.ts +82 -10
- package/commands/knowledge.ts +361 -361
- package/commands/patterns.ts +621 -621
- package/commands/plan.ts +376 -376
- package/commands/product.ts +626 -628
- package/commands/research.ts +754 -754
- package/commands/review.ts +463 -463
- package/commands/standards.ts +200 -223
- package/commands/task.ts +2 -2
- package/commands/utils.ts +1021 -1021
- package/db/connection.ts +32 -32
- package/db/schema.ts +719 -788
- package/detectors/loader.ts +0 -12
- package/gates/standards-validator.ts +204 -204
- package/gates/validator.ts +441 -441
- package/package.json +43 -43
- package/protocol/process-return.ts +450 -450
- package/protocol/subagent-protocol.ts +401 -411
- package/workflow.ts +0 -18
package/workflow.ts
CHANGED
|
@@ -32,7 +32,6 @@ import {
|
|
|
32
32
|
architectStart,
|
|
33
33
|
architectShow,
|
|
34
34
|
architectList,
|
|
35
|
-
architectUpdate,
|
|
36
35
|
architectSave,
|
|
37
36
|
architectApprove,
|
|
38
37
|
architectExport,
|
|
@@ -744,23 +743,6 @@ architectCmd
|
|
|
744
743
|
architectList(options);
|
|
745
744
|
});
|
|
746
745
|
|
|
747
|
-
architectCmd
|
|
748
|
-
.command("update")
|
|
749
|
-
.description("Atualiza campos da analise pendente")
|
|
750
|
-
.option("--context <text>", "Contexto e entendimento do problema")
|
|
751
|
-
.option("--current-architecture <text>", "Arquitetura atual identificada")
|
|
752
|
-
.option("--approach <text>", "Abordagem/solucao proposta")
|
|
753
|
-
.option("--chosen-alternative <name>", "Nome da alternativa escolhida")
|
|
754
|
-
.option("--diagrams <json>", "JSON array de diagramas [{name, type, content}]")
|
|
755
|
-
.option("--baby-steps <json>", "JSON array de baby steps")
|
|
756
|
-
.option("--risks <json>", "JSON array de riscos")
|
|
757
|
-
.option("--alternatives <json>", "JSON array de alternativas")
|
|
758
|
-
.option("--decisions <json>", "JSON array de decisoes arquiteturais")
|
|
759
|
-
.option("--json", "Saida em JSON")
|
|
760
|
-
.action((options) => {
|
|
761
|
-
architectUpdate(options);
|
|
762
|
-
});
|
|
763
|
-
|
|
764
746
|
architectCmd
|
|
765
747
|
.command("save")
|
|
766
748
|
.description("Salva analise em arquivo markdown")
|