@webpresso/agent-kit@0.7.2
·
749 commits
to main
since this release
Patch Changes
-
4e33177: Register
akas a published bin so consumers can runak setup,
ak audit, etc. directly fromnode_modules/.bin/ak(and
pnpm exec ak ...) without thebun ./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 mainakCLI entrypoint. Consumers
hit this whenak audit agentsdemandsscripts.setup:agent === "ak setup"
literally, butakitself wasn't on PATH — forcing every consumer to
either fail the audit or carry a duplicate bun-drivensetup:agent-kit
script alongside the canonicalsetup:agent.src/cli/cli.tsalready has the#!/usr/bin/env bunshebang, so the
fix is one entry:"ak": "./src/cli/cli.ts"in the bin map.