🎩 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

Agent execution engine and sandboxing for OAC

latest
Source
npmnpm
Version
2026.3.6
Version published
Weekly downloads
3
-70%
Maintainers
1
Weekly downloads
 
Created
Source

@open330/oac-execution

Agent execution engine for OAC (Open Agent Contribution).

Install

npm install @open330/oac-execution

What's Inside

  • ExecutionEngine — priority-based job queue with p-queue, retry, and abort support
  • ClaudeCodeAdapterAgentProvider implementation for Claude Code CLI (claude-code)
  • CodexAdapterAgentProvider implementation for OpenAI Codex CLI (codex)
  • Git Worktree Sandbox — isolated execution environments per task via git worktree

Usage

import { 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);

Adding Custom Agents

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) { /* ... */ }
}

License

MIT — see the main repo for details.

FAQs

Package last updated on 17 Feb 2026

Did you know?

Socket

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.

Install

Related posts