fix(agentdb): add ESM __dirname polyfill to agentdb-cli.ts#78
Open
adambkovacs wants to merge 1 commit intoruvnet:mainfrom
Open
fix(agentdb): add ESM __dirname polyfill to agentdb-cli.ts#78adambkovacs wants to merge 1 commit intoruvnet:mainfrom
adambkovacs wants to merge 1 commit intoruvnet:mainfrom
Conversation
The agentdb-cli.ts uses __dirname on line 62 but runs as an ES module where __dirname is not available. This causes all MCP tools that rely on the CLI to fail with "__dirname is not defined". Added the standard ESM polyfill using fileURLToPath and dirname from Node.js built-in modules. Fixes ruvnet#77 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <[email protected]>
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.
Summary
__dirname is not definederror in AgentDB CLI when running as an ES modulefileURLToPathanddirnamefrom Node.js built-in modulesProblem
The
agentic-flow/src/agentdb/cli/agentdb-cli.tsfile uses__dirname(line 62) but runs as an ES module where__dirnameis not available. This causes all MCP tools that rely on the CLI to fail:Affected tools:
agentdb_statsagentdb_pattern_storeagentdb_pattern_searchagentdb_pattern_statsSolution
Added the standard ESM polyfill:
Note
The
packages/agentdb/src/cli/agentdb-cli.tsalready has this polyfill (line 35), but theagentic-flow/src/agentdb/cli/agentdb-cli.tswas missing it.Test plan
agentdb_statsreturns database statisticsagentdb_pattern_storesuccessfully stores episodesFixes #77
🤖 Generated with Claude Code