
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.
content-agent
Advanced tools
Vercel AI SDK provider for Sanity Content Agent API.
npm install content-agent ai
Create a provider instance with your organization ID and token, then use .agent(threadId) to get a model for a conversation thread:
import { createContentAgent } from "content-agent";
import { generateText } from "ai";
const contentAgent = createContentAgent({
organizationId: "your-org-id",
token: "your-sanity-token",
});
const model = contentAgent.agent("my-thread");
const result = await generateText({
model,
prompt: "What blog posts do I have?",
});
console.log(result.text);
Use streamText from the AI SDK for streaming responses:
import { streamText } from "ai";
const { textStream } = await streamText({
model: contentAgent.agent("my-thread"),
prompt: "Summarize my latest content",
});
for await (const text of textStream) {
process.stdout.write(text);
}
Pass settings to .agent() to configure capabilities and target a specific application:
const model = contentAgent.agent("my-thread", {
application: {
key: "projectId.datasetName",
},
config: {
capabilities: {
read: true,
write: false,
},
},
});
MIT
FAQs
Vercel AI SDK provider for Sanity Content Agent API
The npm package content-agent receives a total of 72 weekly downloads. As such, content-agent popularity was classified as not popular.
We found that content-agent demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 113 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.