@open330/oac-execution
Advanced tools
+17
-3
@@ -1039,3 +1039,3 @@ // src/agents/claude-code.adapter.ts | ||
| const fileList = task.targetFiles.length > 0 ? task.targetFiles.join("\n") : "(none provided)"; | ||
| return [ | ||
| const lines = [ | ||
| "You are implementing a scoped repository contribution task.", | ||
@@ -1047,9 +1047,23 @@ `Task ID: ${task.id}`, | ||
| `Complexity: ${task.complexity}`, | ||
| `Execution mode: ${task.executionMode}`, | ||
| `Execution mode: ${task.executionMode}` | ||
| ]; | ||
| if (task.linkedIssue) { | ||
| lines.push( | ||
| "", | ||
| `GitHub Issue #${task.linkedIssue.number}: ${task.linkedIssue.url}`, | ||
| task.linkedIssue.labels.length > 0 ? `Labels: ${task.linkedIssue.labels.join(", ")}` : "", | ||
| "Resolve this issue completely. Read the issue description carefully and implement the fix." | ||
| ); | ||
| } | ||
| lines.push( | ||
| "", | ||
| "Description:", | ||
| task.description, | ||
| "", | ||
| "Target files:", | ||
| fileList, | ||
| "", | ||
| "Apply minimal, safe changes and ensure the repository remains buildable." | ||
| ].join("\n"); | ||
| ); | ||
| return lines.filter((l) => l !== void 0).join("\n"); | ||
| } | ||
@@ -1056,0 +1070,0 @@ function stageFromEvent(event) { |
+2
-2
| { | ||
| "name": "@open330/oac-execution", | ||
| "version": "2026.3.5", | ||
| "version": "2026.3.6", | ||
| "description": "Agent execution engine and sandboxing for OAC", | ||
@@ -34,3 +34,3 @@ "license": "MIT", | ||
| "simple-git": "^3.27.0", | ||
| "@open330/oac-core": "2026.3.5" | ||
| "@open330/oac-core": "2026.3.6" | ||
| }, | ||
@@ -37,0 +37,0 @@ "devDependencies": { |
Sorry, the diff of this file is too big to display
141081
0.86%1646
0.86%+ Added
- Removed
Updated