
Security News
AI Agent Lands PRs in Major OSS Projects, Targets Maintainers via Cold Outreach
An AI agent is merging PRs into major OSS projects and cold-emailing maintainers to drum up more work.
depi-node-client
Advanced tools
Install dependencies:
npm install
# Apple M1 users should install for x64 due to grpc-tools not supporting arm64
npm install --target_arch=x64
Use proto compiler and ts-protoc-gen to generate the TypeScript files:
Important! This needs to be executed from the directory where this file is.
npm run build
To use the async API for the client. Including the following snippet when creating the depi-client instance.
These *Async methods are generate in the d.ts by generateAsyncTypes.js which is run as part of the build.
const { DepiClient } = require('./pbs/depi_grpc_pb');
const addAsyncMethods = require('./pbs/addAsyncMethods');
const client = new DepiClient('127.0.0.1:5150', grpc.credentials.createInsecure());
addAsyncMethods(client);
// Example using the async/promise methods,
const req = new depi.LoginRequest();
const loginResponse = await client.loginAsync(req);
(Make sure to npm run build and check it's up-to-date).
npm run compilex.x.x) in package.jsongit commit -am "Node-client release x.x.x"git push origin mainnpm publish ./FAQs
GRPC Client for communicating with depi from node in typescript or javascript
The npm package depi-node-client receives a total of 58 weekly downloads. As such, depi-node-client popularity was classified as not popular.
We found that depi-node-client demonstrated a not healthy version release cadence and project activity because the last version was released 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.

Security News
An AI agent is merging PRs into major OSS projects and cold-emailing maintainers to drum up more work.

Research
/Security News
Chrome extension CL Suite by @CLMasters neutralizes 2FA for Facebook and Meta Business accounts while exfiltrating Business Manager contact and analytics data.

Security News
After Matplotlib rejected an AI-written PR, the agent fired back with a blog post, igniting debate over AI contributions and maintainer burden.