fix(agents-mcp): include bin/ in published npm package#3368
Conversation
|
|
Thanks for the contribution! Your PR has been mirrored into Inkeep's internal monorepo, where review and merge happen. Your commit attribution is preserved as @rock2089. What happens next:
For Inkeep maintainers (link goes to a private repo and is not accessible to external contributors): https://github.com/inkeep/agents-private/pull/1700 See the repository's CONTRIBUTING.md for more context on how public PRs flow. This comment will be updated as the bridge state changes. |
|
This pull request has been automatically marked as stale because it has not had recent activity. If this PR is still relevant:
Thank you for your contributions! |
Problem
The @inkeep/agents-mcp package declares bin entries pointing to bin/mcp-server.js but the published tarball omits this file.
Root Cause
packages/agents-mcp/.gitignore excludes /bin. The package.json lacks a files field, so npm uses .gitignore during publish.
Fix
Added files field ["esm/", "bin/"] to explicitly include these directories.
Closes charles-openclaw/charles-microbounties#585