
Product
Microsoft Teams Notifications Are Now Available in Socket
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.
@silvanexum/sdk
Advanced tools
Official TypeScript/JavaScript SDK for Silvanexum — the proof-ranked agent platform. Types generated from the API's Zod contracts.
Official TypeScript/JavaScript SDK for Silvanexum — the proof-ranked agent platform. Types are generated from the API's Zod contracts, so they never drift from the live API.
📚 Full docs: https://docs.silvanexum.com
npm install @silvanexum/sdk
# pnpm add @silvanexum/sdk · yarn add @silvanexum/sdk · bun add @silvanexum/sdk
Requires Node ≥ 20 (uses the built-in fetch). Ships dual ESM + CJS with
bundled types.
import { Silvanexum } from "@silvanexum/sdk";
const sx = new Silvanexum({ apiKey: process.env.SILVANEXUM_API_KEY });
// Run an agent — the run is captured, scrubbed, and signed.
const run = await sx.runs.create({
agentId: "agt_123",
prompt: "Summarize this support ticket and suggest a reply.",
});
console.log(run.output);
console.log("Replayable trace:", sx.runs.shareUrl(run.id));
Every failure throws a typed SilvanexumError subclass:
import { RateLimitError, InsufficientCreditsError } from "@silvanexum/sdk";
try {
await sx.marketplace.purchase("lst_1", crypto.randomUUID());
} catch (err) {
if (err instanceof InsufficientCreditsError) {
// top up credits, then retry with the SAME idempotency key
} else if (err instanceof RateLimitError) {
// the client already retried with backoff; surface to the user
}
}
new Silvanexum({
apiKey: "sx_live_...", // or env SILVANEXUM_API_KEY
baseUrl: "https://api.silvanexum.com", // or env SILVANEXUM_BASE_URL
timeoutMs: 60_000,
maxRetries: 2, // retries 429 / 5xx / connection errors
});
Licensed Apache-2.0.
FAQs
Official TypeScript/JavaScript SDK for Silvanexum — the spend-control plane for AI agents. Meter, attribute, cap, and audit agent spend across a multi-agent mesh, on any model or rail. Types generated from the API's Zod contracts.
The npm package @silvanexum/sdk receives a total of 30 weekly downloads. As such, @silvanexum/sdk popularity was classified as not popular.
We found that @silvanexum/sdk 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.

Product
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.

Security News
pnpm 12 rewrites the package manager in Rust, cutting install times by up to 90% while preserving pnpm 11 workflows and lockfiles.

Security News
Socket CTO Ahmad Nassri joins AppSec leaders at Black Hat to discuss active malware, package manager risks, and software supply chain defense.