codeep 1.1.4 → 1.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -70,8 +70,8 @@ export function setAgentRunning(running, dryRun = false) {
70
70
  * Log agent action
71
71
  */
72
72
  export function logAction(type, target, result, details) {
73
- // Debug
74
- console.log(`[DEBUG] logAction called: ${type} ${target} ${result}`);
73
+ // Debug - use stderr to bypass Ink
74
+ process.stderr.write(`[DEBUG] logAction called: ${type} ${target} ${result}\n`);
75
75
  stopSpinner(); // Stop spinner before logging
76
76
  const filename = target.split('/').pop() || target;
77
77
  const lineCount = details ? details.split('\n').length : 0;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codeep",
3
- "version": "1.1.4",
3
+ "version": "1.1.5",
4
4
  "description": "AI-powered coding assistant built for the terminal. Multiple LLM providers, project-aware context, and a seamless development workflow.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",