@codexa/cli 9.0.37 → 9.0.38

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.
@@ -181,7 +181,7 @@ export async function discoverConfirm(): Promise<void> {
181
181
  // Mover de pending para default
182
182
  await dbRun("DELETE FROM project WHERE id = ?", ["pending"]);
183
183
  await dbRun(
184
- `INSERT INTO project (id, name, stack, discovered_at, updated_at, cli_version, last_discover_at)
184
+ `INSERT OR REPLACE INTO project (id, name, stack, discovered_at, updated_at, cli_version, last_discover_at)
185
185
  VALUES ('default', ?, ?, ?, ?, ?, ?)`,
186
186
  ["Projeto", JSON.stringify(data.stack), now, now, pkg.version, now]
187
187
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codexa/cli",
3
- "version": "9.0.37",
3
+ "version": "9.0.38",
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": {