
Research
/Security News
Mini Shai-Hulud Campaign Hits Red Hat Cloud Services npm Packages
A mini Shai-Hulud campaign compromised Red Hat Cloud Services npm packages to steal developer and CI/CD secrets during installation.
@appifex/runner
Advanced tools
Execution environment abstraction (local/E2B/Mac Runner) for the DTC toolkit
Execution environment abstraction for the DTC toolkit. The same tools work locally, in E2B cloud sandboxes, or on remote Mac Runners.
import { createRunner, LocalRunner, E2BRunner, RemoteRunner } from '@appifex/runner'
// Factory (reads from DtcConfig.runner)
const runner = createRunner({ type: 'local' })
// Or create directly
const local = new LocalRunner(process.cwd())
const e2b = new E2BRunner({ sandboxId: 'sbx-123', apiKey: 'e2b-key' })
const remote = new RemoteRunner({ runnerUrl: 'https://mac.local:8443', runnerToken: 'amr_tok' })
// All runners share the same interface
const result = await runner.exec('echo', ['hello'])
// { exitCode: 0, stdout: 'hello\n', stderr: '', duration: 12 }
await runner.writeFile('/app/index.ts', 'console.log("hi")')
const code = await runner.readFile('/app/index.ts')
const exists = await runner.exists('/app/package.json')
const files = await runner.glob('/app/**/*.ts')
// Capability detection
runner.capabilities.hasXcode // true on Mac Runner, false on E2B
runner.capabilities.hasMaestro // true when maestro CLI is available
runner.capabilities.platform // 'darwin' or 'linux'
| Runner | Platform | Use case |
|---|---|---|
LocalRunner | darwin/linux | Standalone developer, CI |
E2BRunner | linux | Cloud sandbox |
RemoteRunner | darwin | Swift/Xcode builds on Mac Runner |
FAQs
Execution environment abstraction (local/E2B/Mac Runner) for the DTC toolkit
We found that @appifex/runner demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers 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
A mini Shai-Hulud campaign compromised Red Hat Cloud Services npm packages to steal developer and CI/CD secrets during installation.

Research
/Security News
The North Korean malware loader hides in a Packagist-listed package and its GitHub branch to fetch and execute remote code in a likely Contagious Interview-style lure.

Security News
The Rust project is moving toward formal rules on LLM use in contributions after months of internal debate over maintainer burden, code quality, and contributor experience.