Skip to content

waxa v0.1.1

Latest

Choose a tag to compare

@mizchi mizchi released this 10 May 12:08
· 46 commits to main since this release

Skill evaluation CLI — patch release.

Fixed

  • Broken shebang in the published npm bundle: dnt's bin-entry pass injects #!/usr/bin/env node at line 1 of npm/esm/cli.js, but the source file's own Deno shebang (#!/usr/bin/env -S deno run -A) survived TypeScript transformation and reappeared at line 4 as malformed JavaScript:

    !/usr/bin / env - S;
    deno;
    run - A;
    

    This crashed npx @mizchi/waxa (and any node-launched call) before argv parsing — the CLI advertised in mizchi/skills README was unrunnable in 0.1.0 published form.

    The fix drops the source-side shebang. deno task run and deno run -A src/cli.ts continue to work without it; dnt continues to emit the correct #!/usr/bin/env node for the npm bin.

    Found while dogfooding the README's npx @mizchi/waxa instruction on the skill-finder eval.

Install

npx @mizchi/waxa@0.1.1 <eval.yaml>
# or globally
npm i -g @mizchi/waxa