
Security News
OpenClaw Skill Marketplace Emerges as Active Malware Vector
Security researchers report widespread abuse of OpenClaw skills to deliver info-stealing malware, exposing a new supply chain risk as agent ecosystems scale.
Official TypeScript library for Prodia's AI inference API.
npm install prodia --save
As of October 2024, we require users to have a Pro+ or Enterprise subscription with us to use our v2 API. This is to ensure quality of service. However, we expect to revisit this by EOY and make it available more broadly.
import { createProdia } from "prodia/v2"; // v2 :)
const prodia = createProdia({
token: "...", // grab a token from https://app.prodia.com/api
});
(async () => {
// run a flux dev generation
const job = await prodia.job({
"type": "inference.flux.dev.txt2img.v1",
"config": {
"prompt": "puppies in a cloud, 4k",
"steps": 25,
},
});
const image = await job.arrayBuffer();
// display your image
})();
import { createProdia } from "prodia";
const prodia = createProdia({
apiKey: "...",
});
(async () => {
const job = await prodia.generate({
prompt: "puppies in a cloud, 4k",
});
const { imageUrl, status } = await prodia.wait(job);
// check status and view your image :)
})();
Email us at hello@prodia.com.
FAQs
Official TypeScript integration for Prodia's AI inference API.
The npm package prodia receives a total of 306 weekly downloads. As such, prodia popularity was classified as not popular.
We found that prodia 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.

Security News
Security researchers report widespread abuse of OpenClaw skills to deliver info-stealing malware, exposing a new supply chain risk as agent ecosystems scale.

Security News
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.

Research
/Security News
Malicious dYdX client packages were published to npm and PyPI after a maintainer compromise, enabling wallet credential theft and remote code execution.