
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.
@intuned/client
Advanced tools
Owned TypeScript SDK for the Intuned public APIs.
npm add @intuned/client
pnpm add @intuned/client
bun add @intuned/client
yarn add @intuned/client
To get started, see the Intuned client API overview.
You will need:
The SDK uses native fetch. In Node.js, use Node 18+ or provide a custom fetch implementation.
import { IntunedClient } from "@intuned/client";
const client = new IntunedClient({
apiKey: process.env["INTUNED_API_KEY"] ?? "",
workspaceId: "123e4567-e89b-12d3-a456-426614174000",
});
const result = await client.projects.runs.start("my-project", {
api: "my-awesome-api",
parameters: { hello: "world" },
});
console.log(result);
client.webTasks.run(body) is a convenience over webTasks.start + webTasks.result: it starts a Web Task and polls result until the task reaches a terminal state (status === "completed" or status === "canceled"). Branch on status and outcome to handle the response.
const terminal = await client.webTasks.run(
{
task: "Extract pricing from the homepage",
startUrl: "https://example.com",
parameters: {},
outputSchema: { type: "object" },
},
{ pollIntervalMs: 5_000 },
);
FAQs
TypeScript SDK for the Intuned public APIs.
The npm package @intuned/client receives a total of 53 weekly downloads. As such, @intuned/client popularity was classified as not popular.
We found that @intuned/client demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 10 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.