
Research
Malicious Go “crypto” Module Steals Passwords and Deploys Rekoobe Backdoor
An impersonated golang.org/x/crypto clone exfiltrates passwords, executes a remote shell stager, and delivers a Rekoobe backdoor on Linux.
@openai/codex-sdk
Advanced tools
Bring the power of the best coding agent to your application.
npm install @openai/codex-sdk
Call startThread() and run() to start a thead with Codex.
import { Codex } from "@openai/codex-sdk";
const codex = new Codex();
const thread = codex.startThread();
const result = await thread.run("Diagnose the test failure and propose a fix");
console.log(result);
You can call run() again to continue the same thread.
const result = await thread.run("Implement the fix");
console.log(result);
The await run() method completes when a thread turn is complete and agent is prepared the final response.
You can thread items while they are being produced by calling await runStreamed().
const result = thread.runStreamed("Diagnose the test failure and propose a fix");
If you don't have the original Thread instance to continue the thread, you can resume a thread by calling resumeThread() and providing the thread.
const threadId = "...";
const thread = codex.resumeThread(threadId);
const result = await thread.run("Implement the fix");
console.log(result);
FAQs
TypeScript SDK for Codex APIs.
The npm package @openai/codex-sdk receives a total of 114,523 weekly downloads. As such, @openai/codex-sdk popularity was classified as popular.
We found that @openai/codex-sdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 12 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
An impersonated golang.org/x/crypto clone exfiltrates passwords, executes a remote shell stager, and delivers a Rekoobe backdoor on Linux.

Security News
npm rolls out a package release cooldown and scalable trusted publishing updates as ecosystem adoption of install safeguards grows.

Security News
AI agents are writing more code than ever, and that's creating new supply chain risks. Feross joins the Risky Business Podcast to break down what that means for open source security.