
Product
Introducing Reachability for PHP
Reachability analysis for PHP is now available in experimental, helping teams identify which vulnerabilities are actually exploitable.
@cmdop/node
Advanced tools

Node.js SDK for CMDOP — terminal streaming, file operations, AI agents over gRPC.
npm install @cmdop/node
Requires: Node.js >= 18.0.0
import { CMDOPClient } from '@cmdop/node';
// Local agent (auto-discover)
const client = CMDOPClient.local();
// Remote via cloud relay
const client = CMDOPClient.remote('cmdop_live_xxx');
// Route to a machine, then use any service
await client.terminal.setMachine('my-server');
await client.terminal.sendInput('ls -la\n');
const { output } = await client.terminal.execute('echo hello');
console.log(output);
| Service | Description |
|---|---|
client.terminal | Sessions, I/O, streaming, attach (SSH-like) |
client.files | Read, write, list, search, archive remote files |
client.agent | Run AI agents (one-shot, streaming, structured output) |
client.extract | Structured data extraction via LLM |
client.skills | List, show, run installed skills |
client.download | Download remote files or URLs to local disk |
const attach = client.terminal.attach(sessionId, { password: 'secret' });
attach.on((event) => {
if (event.type === 'output') process.stdout.write(event.data);
});
await attach.connect();
Password can also be set via CMDOP_AGENT_PASSWORD env var.
import { CMDOPClient, sshConnect } from '@cmdop/node';
const client = CMDOPClient.remote('cmdop_live_xxx');
await sshConnect({ client, hostname: 'my-server' });
See docs/ for detailed guides:
MIT
FAQs
CMDOP SDK for Node.js - Server-side agent interaction via gRPC
We found that @cmdop/node 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.

Product
Reachability analysis for PHP is now available in experimental, helping teams identify which vulnerabilities are actually exploitable.

Product
Export Socket alert data to your own cloud storage in JSON, CSV, or Parquet, with flexible snapshot or incremental delivery.

Research
/Security News
Bitwarden CLI 2026.4.0 was compromised in the Checkmarx supply chain campaign after attackers abused a GitHub Action in Bitwarden’s CI/CD pipeline.