codeep 1.1.5 → 1.1.6

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.
@@ -686,6 +686,8 @@ export async function runAgent(prompt, projectContext, options = {}) {
686
686
  // Actually execute the tool
687
687
  toolResult = executeTool(toolCall, projectContext.root || process.cwd());
688
688
  }
689
+ // Debug
690
+ process.stderr.write(`[AGENT DEBUG] Tool executed: ${toolCall.tool}, calling onToolResult: ${!!opts.onToolResult}\n`);
689
691
  opts.onToolResult?.(toolResult, toolCall);
690
692
  // Log action
691
693
  const actionLog = createActionLog(toolCall, toolResult);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codeep",
3
- "version": "1.1.5",
3
+ "version": "1.1.6",
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",