@codexa/cli 8.5.0 → 8.6.9
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 +1 -137
- package/commands/clear.ts +1 -5
- package/commands/discover.ts +1071 -999
- package/commands/product.ts +0 -2
- package/commands/research.ts +1 -1
- package/commands/standards.ts +0 -23
- package/commands/task.ts +623 -623
- package/db/schema.ts +0 -69
- package/detectors/README.md +109 -109
- package/detectors/dotnet.ts +357 -357
- package/detectors/flutter.ts +350 -350
- package/detectors/go.ts +324 -324
- package/detectors/index.ts +387 -387
- package/detectors/jvm.ts +433 -433
- package/detectors/loader.ts +128 -140
- package/detectors/node.ts +493 -493
- package/detectors/python.ts +423 -423
- package/detectors/rust.ts +348 -348
- package/package.json +5 -4
- package/protocol/subagent-protocol.ts +0 -10
- package/workflow.ts +783 -800
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codexa/cli",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.6.9",
|
|
4
4
|
"description": "Orchestrated workflow system for Claude Code - manages feature development through parallel subagents with structured phases, gates, and quality enforcement.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -15,7 +15,8 @@
|
|
|
15
15
|
"detectors/"
|
|
16
16
|
],
|
|
17
17
|
"scripts": {
|
|
18
|
-
"cli": "bun run workflow.ts"
|
|
18
|
+
"cli": "bun run workflow.ts",
|
|
19
|
+
"install": "npm publish --access public"
|
|
19
20
|
},
|
|
20
21
|
"engines": {
|
|
21
22
|
"bun": ">=1.0.0"
|
|
@@ -38,6 +39,6 @@
|
|
|
38
39
|
"license": "MIT",
|
|
39
40
|
"repository": {
|
|
40
41
|
"type": "git",
|
|
41
|
-
"url": "https://github.com/
|
|
42
|
+
"url": "https://github.com/leandrorazevedo/codexa-workflow"
|
|
42
43
|
}
|
|
43
|
-
}
|
|
44
|
+
}
|
|
@@ -399,14 +399,4 @@ export function formatValidationErrors(result: ParseResult): string {
|
|
|
399
399
|
}\n`;
|
|
400
400
|
|
|
401
401
|
return output;
|
|
402
|
-
}
|
|
403
|
-
|
|
404
|
-
/**
|
|
405
|
-
* Verifica se uma string parece conter um retorno de subagent
|
|
406
|
-
*/
|
|
407
|
-
export function looksLikeSubagentReturn(text: string): boolean {
|
|
408
|
-
return text.includes('"status"') &&
|
|
409
|
-
(text.includes('"completed"') ||
|
|
410
|
-
text.includes('"blocked"') ||
|
|
411
|
-
text.includes('"needs_decision"'));
|
|
412
402
|
}
|