@axlsdk/studio 0.18.0 → 0.18.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/dist/cli.cjs CHANGED
@@ -134,7 +134,10 @@ function redactEvalItem(item) {
134
134
  detailsOut[name] = {
135
135
  score: detail.score,
136
136
  ...detail.duration !== void 0 ? { duration: detail.duration } : {},
137
- ...detail.cost !== void 0 ? { cost: detail.cost } : {}
137
+ ...detail.cost !== void 0 ? { cost: detail.cost } : {},
138
+ // `skipped` is a structural boolean (the `applies` predicate verdict),
139
+ // not user/LLM content — preserve it so the client's N/A chip renders.
140
+ ...detail.skipped !== void 0 ? { skipped: detail.skipped } : {}
138
141
  // metadata deliberately omitted — may contain LLM scorer reasoning
139
142
  };
140
143
  }