feat: Fix and test CodeExecutionTool

- Updated CodeExecutionTool to use 'node:alpine' Docker image for Node.js execution.
- Corrected syntax for Docker image variable in codeExecution.tool.ts.
- Implemented manual parsing of Docker stream headers for clean output.
- Marked CodeExecutionTool testing as complete in SPEC.md.
This commit is contained in:
2025-08-24 15:37:17 -05:00
parent 9a176a7735
commit 2ed33595d1
2 changed files with 13 additions and 4 deletions

View File

@@ -49,7 +49,7 @@ The project will be developed in the following phases:
- Running locally via Ollama on port 11434
* `[x]` Implement the `CodeExecutionTool`.
- Test pending restart
- `[ ]` Test the implmentation of the `CodeExecutionTool`.
- `[x]` Test the implmentation of the `CodeExecutionTool`.
* `[ ]` Implement the `FileManagementTool`.
* `[ ]` Implement the `TestRunnerTool`.
@@ -66,7 +66,7 @@ The project will be developed in the following phases:
* `[ ]` Implement robust error handling throughout the system.
* `[ ]` Implement persistence for the LangGraph state, so that the agent can be stopped and restarted without losing its progress.
## 4. Final Deliverables
## 5. Final Deliverables
* `[ ]` A detailed markdown document (`SPEC.md`) that can be used as a blueprint for development.
* `[ ]` The source code for the self-hosted, CLI-based coding agent.