@vexdo/cli 0.2.0 → 0.2.1
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 +3 -3
- package/dist/index.js +4 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -3,9 +3,9 @@
|
|
|
3
3
|
Automated implementation + review loop for multi-service tasks, powered by Codex and Claude.
|
|
4
4
|
|
|
5
5
|

|
|
6
|
-

|
|
7
|
+

|
|
8
|
+

|
|
9
9
|
|
|
10
10
|
## 1) What is vexdo
|
|
11
11
|
|
package/dist/index.js
CHANGED
|
@@ -2317,6 +2317,10 @@ async function runStart(taskFile, options) {
|
|
|
2317
2317
|
await updateStep(projectRoot, task.id, step.service, { status: "failed" });
|
|
2318
2318
|
}
|
|
2319
2319
|
scopedLogger.error(message);
|
|
2320
|
+
if (error2 instanceof CodexError) {
|
|
2321
|
+
if (error2.stderr) scopedLogger.error(`stderr: ${error2.stderr}`);
|
|
2322
|
+
if (error2.stdout) scopedLogger.debug(`stdout: ${error2.stdout}`);
|
|
2323
|
+
}
|
|
2320
2324
|
return { service: step.service, status: "failed", error: message };
|
|
2321
2325
|
}
|
|
2322
2326
|
}
|