
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.
@picahq/toolkit
Advanced tools
Pica's ToolKit provides enterprise-grade integration capabilities for AI agents built with the Vercel AI SDK. Through Pica's integration layer, agents can seamlessly interact with third-party services and APIs while maintaining enterprise security, compliance, and reliability standards.
npm install @picahq/toolkit
PICA_SECRET_KEY=<your-api-key>The Pica ToolKit seamlessly integrates with Vercel AI SDK, enabling powerful AI capabilities in your applications. Below is a simple example showing how to implement it in a Vercel Agent with read-only permissions on a Gmail connection.
import { Pica } from '@picahq/ai';
import { openai } from '@ai-sdk/openai';
import {
streamText,
UIMessage,
convertToModelMessages,
stepCountIs
} from 'ai';
export async function POST(req: Request) {
const { messages }: { messages: UIMessage[] } = await req.json();
const pica = new Pica(process.env.PICA_SECRET_KEY!, {
connectors: ["test::gmail::default::6faf1d3707f846ef89295c836df71c94"],
permissions: "read"
});
const systemPrompt = pica.systemPrompt;
const result = streamText({
model: openai("gpt-4.1"),
messages: convertToModelMessages(messages),
tools: {
...pica.tools() // Load the Pica ToolKit
},
system: systemPrompt,
stopWhen: stepCountIs(25)
});
return result.toUIMessageStreamResponse();
}
⭐️ Experience the Pica ToolKit's capabilities firsthand through our interactive demo chat application here
After installing the SDK and integrating your platforms through the Pica dashboard, you can effortlessly create sophisticated AI agents to orchestrate and automate your business workflows.
Here are some powerful examples use cases:
This project is licensed under the GPL-3.0 license. See the LICENSE file for details.
FAQs
Pica tools for the Vercel AI SDK
The npm package @picahq/toolkit receives a total of 745 weekly downloads. As such, @picahq/toolkit popularity was classified as not popular.
We found that @picahq/toolkit demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 5 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.