Prerequisites
Bug Description
Running codemie-claude fails with an ENOENT error because the CLI expects a file named
codemie-statusline.mjs, but the package only bundles statusline.mjs.
Steps to Reproduce
- Install the package globally:
npm install -g @codemieai/code@latest --registry https://registry.npmjs.org
- Run
codemie-claude
Expected Behavior
Claude Code starts successfully.
Actual Behavior
✗ Failed to run Claude Code
ENOENT: no such file or directory, open 'C:\Users<username>\AppData\Local\nvm\v24.10.0\node_modules@codemieai\code\dist\agents\plugins\claude\plugin\codemie-statusline.mjs'
CodeMie CLI Version
0.3.2
Which agent are you using?
Claude Code (codemie-claude)
Which provider are you using?
AI/Run SSO
Model
No response
Node.js Version
v24.10.0
Operating System
Windows (native)
Configuration (Redacted)
Error Logs
Additional Context
Root Cause
Filename mismatch in the published package:
|
Path |
| Expected by CLI |
dist/agents/plugins/claude/plugin/codemie-statusline.mjs |
| Actually bundled |
dist/agents/plugins/claude/plugin/statusline.mjs |
Workaround
Manually copying the existing file with the expected name resolves the issue:
copy "...\claude\plugin\statusline.mjs" "...\claude\plugin\codemie-statusline.mjs"
Suggested Fix
Either:
- Rename
statusline.mjs → codemie-statusline.mjs in the package bundle, or
- Update the CLI code to reference
statusline.mjs instead of codemie-statusline.mjs
Prerequisites
Bug Description
Running
codemie-claudefails with anENOENTerror because the CLI expects a file namedcodemie-statusline.mjs, but the package only bundlesstatusline.mjs.Steps to Reproduce
codemie-claudeExpected Behavior
Claude Code starts successfully.
Actual Behavior
✗ Failed to run Claude Code
ENOENT: no such file or directory, open 'C:\Users<username>\AppData\Local\nvm\v24.10.0\node_modules@codemieai\code\dist\agents\plugins\claude\plugin\codemie-statusline.mjs'
CodeMie CLI Version
0.3.2
Which agent are you using?
Claude Code (codemie-claude)
Which provider are you using?
AI/Run SSO
Model
No response
Node.js Version
v24.10.0
Operating System
Windows (native)
Configuration (Redacted)
Error Logs
Additional Context
Root Cause
Filename mismatch in the published package:
dist/agents/plugins/claude/plugin/codemie-statusline.mjsdist/agents/plugins/claude/plugin/statusline.mjsWorkaround
Manually copying the existing file with the expected name resolves the issue:
Suggested Fix
Either:
statusline.mjs→codemie-statusline.mjsin the package bundle, orstatusline.mjsinstead ofcodemie-statusline.mjs