@vexdo/cli 0.2.0 → 0.2.2

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 CHANGED
@@ -3,9 +3,9 @@
3
3
  Automated implementation + review loop for multi-service tasks, powered by Codex and Claude.
4
4
 
5
5
  ![CI](https://github.com/vexdo/vexdo-cli/actions/workflows/ci.yml/badge.svg)
6
- ![npm](https://img.shields.io/npm/v/vexdo)
7
- ![license](https://img.shields.io/npm/l/vexdo)
8
- ![node](https://img.shields.io/node/v/vexdo)
6
+ ![npm](https://img.shields.io/npm/v/@vexdo/cli)
7
+ ![license](https://img.shields.io/npm/l/@vexdo/cli)
8
+ ![node](https://img.shields.io/node/v/@vexdo/cli)
9
9
 
10
10
  ## 1) What is vexdo
11
11
 
package/dist/index.js CHANGED
@@ -1222,9 +1222,6 @@ async function checkCodexAvailable() {
1222
1222
  }
1223
1223
  async function submitTask(prompt, options) {
1224
1224
  const args = ["cloud", "exec", prompt];
1225
- if (options?.cwd) {
1226
- args.push("-C", options.cwd);
1227
- }
1228
1225
  const result = await runCodexCommand(args, { cwd: options?.cwd });
1229
1226
  const sessionId = parseSessionId(result.stdout);
1230
1227
  if (result.exitCode !== 0 || !sessionId) {
@@ -2317,6 +2314,10 @@ async function runStart(taskFile, options) {
2317
2314
  await updateStep(projectRoot, task.id, step.service, { status: "failed" });
2318
2315
  }
2319
2316
  scopedLogger.error(message);
2317
+ if (error2 instanceof CodexError) {
2318
+ if (error2.stderr) scopedLogger.error(`stderr: ${error2.stderr}`);
2319
+ if (error2.stdout) scopedLogger.debug(`stdout: ${error2.stdout}`);
2320
+ }
2320
2321
  return { service: step.service, status: "failed", error: message };
2321
2322
  }
2322
2323
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vexdo/cli",
3
- "version": "0.2.0",
3
+ "version": "0.2.2",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "bin": {