fix: agent bin fields point to dist/cli.js instead of src/cli.ts #79
Reference in New Issue
Block a user
Delete Branch "fix/agent-bin-78"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
What
修复三个 agent 包的 bin 字段,从
./src/cli.ts改为./dist/cli.js。Why
bun 时代遗留,node 无法直接执行
.ts文件,导致uwf thread exec报ERR_MODULE_NOT_FOUND。Changes
packages/agent-builtin/package.jsonpackages/agent-hermes/package.jsonpackages/agent-claude-code/package.json三行改动,bin 统一指向
./dist/cli.js,与 cli 包对齐。Ref
Closes #78
LGTM ✅