You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Installed via npm install -g freebuff (v0.0.96). Running freebuff with no arguments shows:
Download complete! Starting Freebuff...
Usage: node mcp_proxy.js <serverId_or_socketPath>
Then exits. Binary enters MCP proxy mode instead of the AI coding agent. To Reproduce
npm install -g freebuff
freebuff
See error Expected freebuff with no args should start the interactive agent (logo + login prompt), as documented in the README. Root cause
The npm wrapper (index.js:625) spawns the binary with process.argv.slice(2) — empty when no args passed:
Describe the bug
Installed via
npm install -g freebuff(v0.0.96). Runningfreebuffwith no arguments shows:Download complete! Starting Freebuff...
Usage: node mcp_proxy.js <serverId_or_socketPath>
Then exits. Binary enters MCP proxy mode instead of the AI coding agent.
To Reproduce
npm install -g freebufffreebuffExpected
freebuffwith no args should start the interactive agent (logo + login prompt), as documented in the README.Root cause
The npm wrapper (
index.js:625) spawns the binary withprocess.argv.slice(2)— empty when no args passed: