praxis-agent 0.64.0 → 0.64.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.
@@ -432,7 +432,8 @@ export function compareProjectEvalAggregates(baseline, candidate, baselineName,
432
432
  model: right.model,
433
433
  },
434
434
  comparable_run_count: leftRuns.length,
435
- passed: right.pass_rate >= left.pass_rate &&
435
+ passed: regressions.length === 0 &&
436
+ right.pass_rate >= left.pass_rate &&
436
437
  safetyKnown &&
437
438
  (rightSafety ?? 0) >= (leftSafety ?? 0),
438
439
  regressions,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "praxis-agent",
3
- "version": "0.64.0",
3
+ "version": "0.64.1",
4
4
  "description": "Local-first, single-user general agent for the command line.",
5
5
  "license": "MIT",
6
6
  "author": "wuqisen",