@mndrk/agx 1.4.29 → 1.4.30

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.
@@ -112,7 +112,7 @@ async function createRun({ projectSlug, taskSlug, stage, runId: explicitRunId, e
112
112
 
113
113
  // If run already exists, return handle to existing run (idempotent)
114
114
  if (await fileExists(paths.meta)) {
115
- const existingMeta = await readJson(paths.meta);
115
+ const existingMeta = await readJsonSafe(paths.meta);
116
116
  return {
117
117
  runId: existingMeta.run_id || runId,
118
118
  paths,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mndrk/agx",
3
- "version": "1.4.29",
3
+ "version": "1.4.30",
4
4
  "description": "Autonomous AI Agent Orchestrator for Claude, Gemini, and Ollama",
5
5
  "main": "lib/index.js",
6
6
  "exports": {