klyro 0.1.22 → 0.1.23

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.
Files changed (2) hide show
  1. package/dist/cli/eval.js +5 -2
  2. package/package.json +1 -1
package/dist/cli/eval.js CHANGED
@@ -67,11 +67,14 @@ export async function runEval(opts) {
67
67
  continue;
68
68
  }
69
69
  else if (opts.suite === 'smoke') {
70
- // smoke = only type smoke (exclude l6 introduce fixtures)
71
70
  try {
72
71
  const metaRaw = await fs.readFile(path.join(fixturesDir, e, 'meta.json'), 'utf-8');
73
72
  const meta = JSON.parse(metaRaw);
74
- if (meta.suite === 'l6' || meta.type === 'l6-introduce')
73
+ const t = meta.type;
74
+ const s = meta.suite;
75
+ if (t === 'l6-introduce' || t === 'locate' || s === 'l6' || s === 'locate')
76
+ continue;
77
+ if (t && t !== 'smoke')
75
78
  continue;
76
79
  }
77
80
  catch { /* no meta → include */ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "klyro",
3
- "version": "0.1.22",
3
+ "version": "0.1.23",
4
4
  "description": "Klyro — autonomous coding harness CLI that streams from any OpenAI-compatible or Anthropic LLM endpoint.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",