🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@open330/oac-execution

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@open330/oac-execution - npm Package Compare versions

Comparing version
2026.3.5
to
2026.3.6
+17
-3
dist/index.js

@@ -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