fix(release): bundle agon-mcp into the cli — unblock public npm install#179
Merged
Conversation
@kernlang/agon-mcp was an unpublished runtime dependency of @kernlang/agon (Cesar spawns it for orchestration tools via require.resolve), so a fresh `npm i -g @kernlang/agon` 404'd at install. Rather than publish agon-mcp + agon-core (against the "bundle everything, keep core private" strategy), emit the MCP server from the cli's own tsup build: - cli tsup: second entry ../mcp/src/index.ts -> dist/mcp/index.js (inlines agon-core, shares chunks); copy engines/ next to it so the spawned server resolves them via resolveBuiltinEnginesDir. - resolveAgonMcpServerPath: check the bundled sibling <dist>/mcp/index.js first (the published path); keep the monorepo fallbacks. - drop @kernlang/agon-mcp from cli dependencies (kills the install 404). - mcp/src/index.ts: remove the source shebang (cli's banner adds one; a double shebang is a hard SyntaxError in the bundle). - mark packages/mcp private + drop its bin: it is now an internal bundle-source, never published or run standalone. Verified: bundled server spawns, loads engines, serves 23 orchestration tools; tarball ships dist/mcp/; typecheck + full suite (2231) green; 6-engine agon review clean. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
@kernlang/agon-mcp was an unpublished runtime dependency of @kernlang/agon (Cesar spawns it for orchestration tools via require.resolve), so a fresh
npm i -g @kernlang/agon404'd at install. Rather than publish agon-mcp + agon-core (against the "bundle everything, keep core private" strategy), emit the MCP server from the cli's own tsup build:Verified: bundled server spawns, loads engines, serves 23 orchestration tools; tarball ships dist/mcp/; typecheck + full suite (2231) green; 6-engine agon review clean.