Skip to content

@webpresso/agent-kit@0.7.2

Choose a tag to compare

@github-actions github-actions released this 07 May 14:31
· 749 commits to main since this release
99c9940

Patch Changes

  • 4e33177: Register ak as a published bin so consumers can run ak setup,
    ak audit, etc. directly from node_modules/.bin/ak (and
    pnpm exec ak ...) without the bun ./node_modules/@webpresso/agent-kit/src/cli/cli.ts
    workaround.

    The package shipped 6 hook bins (ak-pretool-guard, ak-post-tool,
    etc.) but never registered the main ak CLI entrypoint. Consumers
    hit this when ak audit agents demands scripts.setup:agent === "ak setup"
    literally, but ak itself wasn't on PATH — forcing every consumer to
    either fail the audit or carry a duplicate bun-driven setup:agent-kit
    script alongside the canonical setup:agent.

    src/cli/cli.ts already has the #!/usr/bin/env bun shebang, so the
    fix is one entry: "ak": "./src/cli/cli.ts" in the bin map.