
Research
/Security News
Coruna Respawned: Compromised art-template npm Package Leads to iOS Browser Exploit Kit
Compromised npm package art-template delivered a Coruna-like iOS Safari exploit framework through a watering-hole attack.
@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.
Before installing ToolKit, you'll need:
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 of using Pica ToolKit in a Next.js (or similar Edge Function) API route handler, powering a chat UI with read-only permissions on a Gmail connection.
import { Pica } from '@picahq/toolkit';
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"],
actions: ["*"],
permissions: "read"
});
const systemPrompt = pica.systemPrompt;
const result = streamText({
model: openai("gpt-5"),
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 chat playground directly in the Pica dashboard
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:
For more detailed documentation, please visit our documentation site.
This project is licensed under the GPL-3.0 license. See the LICENSE file for details.
FAQs
Pica tools for the Vercel AI SDK
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
Compromised npm package art-template delivered a Coruna-like iOS Safari exploit framework through a watering-hole attack.

Company News
As AI accelerates how code is written and shipped, Socket is scaling to protect the software supply chain from the growing wave of attacks targeting open source dependencies.

Company News
Socket is scaling to defend open source against supply chain attacks as AI accelerates software development.