fix(agentdb): add ESM __dirname polyfill to agentdb-cli.ts #78
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