
Research
/Security News
11 Malicious NuGet Tools Pose as Game Cheats to Drop a Windows Host-Surveillance Payload
11 malicious NuGet tools pose as game cheats to deploy Windows payloads, track hosts, and use Google Sheets for telemetry and control.
@open330/oac-execution
Advanced tools
Agent execution engine for OAC (Open Agent Contribution).
npm install @open330/oac-execution
p-queue, retry, and abort supportAgentProvider implementation for Claude Code CLI (claude-code)AgentProvider implementation for OpenAI Codex CLI (codex)git worktreeimport { ClaudeCodeAdapter, CodexAdapter, createSandbox, executeTask } from '@open330/oac-execution';
// Use Claude Code
const claude = new ClaudeCodeAdapter();
// Or use Codex
const codex = new CodexAdapter();
const sandbox = await createSandbox(repo, task);
const result = await executeTask(claude, task, sandbox);
Implement the AgentProvider interface:
import type { AgentProvider } from '@open330/oac-execution';
export class MyAgent implements AgentProvider {
readonly id = 'my-agent';
readonly name = 'My Agent';
async checkAvailability() { /* ... */ }
execute(params) { /* ... */ }
async estimateTokens(params) { /* ... */ }
async abort(executionId) { /* ... */ }
}
MIT — see the main repo for details.
FAQs
Agent execution engine and sandboxing for OAC
We found that @open330/oac-execution demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Research
/Security News
11 malicious NuGet tools pose as game cheats to deploy Windows payloads, track hosts, and use Google Sheets for telemetry and control.

Research
/Security News
4 compromised asyncapi packages deliver miasma botnet loader on macOS, Linux and Windows.

Research
/Security News
A compromised jscrambler npm release added a malicious preinstall hook that runs hidden native binaries on Linux, macOS, and Windows.