
Security News
GPT-6 Astra Attempts Supply Chain Attacks Against Open Source Maintainers in Testing
GPT-6 Astra hits 100% on ExploitBench and finds zero-days autonomously, while independent tests reveal scope violations and monitoring gaps.
@agentkeys-io/sdk
Advanced tools
TypeScript SDK for AgentKeys — proxy API calls through secure credential vault
TypeScript SDK for AgentKeys — proxy API calls through a secure credential vault. Your agent never sees the real API keys.
npm install @agentkeys-io/sdk
import { AgentKeys } from "@agentkeys-io/sdk";
const ak = new AgentKeys({
token: "ak_ws_your_key...",
proxyUrl: "https://proxy.agentkeys.io",
});
// Proxy a request through the "openai" credential
const response = await ak.proxy("openai", {
url: "https://api.openai.com/v1/chat/completions",
method: "POST",
body: {
model: "gpt-4o",
messages: [{ role: "user", content: "Hello!" }],
},
});
console.log(await response.json());
const ak = new AgentKeys({ token: "pxr_openai_abc123..." });
const response = await ak.proxy("ignored", {
url: "https://api.openai.com/v1/chat/completions",
method: "POST",
body: { model: "gpt-4o", messages: [{ role: "user", content: "Hello!" }] },
});
const resend = ak.for("resend");
const stripe = ak.for("stripe");
await resend.post("https://api.resend.com/emails", {
from: "hi@example.com",
to: "user@example.com",
subject: "Hello",
text: "Sent via AgentKeys",
});
const balance = await stripe.get("https://api.stripe.com/v1/balance");
FAQs
TypeScript SDK for AgentKeys — proxy API calls through secure credential vault
The npm package @agentkeys-io/sdk receives a total of 6 weekly downloads. As such, @agentkeys-io/sdk popularity was classified as not popular.
We found that @agentkeys-io/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.

Security News
GPT-6 Astra hits 100% on ExploitBench and finds zero-days autonomously, while independent tests reveal scope violations and monitoring gaps.

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.