npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

core-agentkit-vercel-ai-sdk

v0.1.1

Published

Vercel AI SDK integration for Core AgentKit

Readme

Core AgentKit Vercel AI SDK Extension

Vercel AI SDK integration for Core AgentKit, enabling seamless use of Core blockchain actions within Vercel AI SDK workflows.

Installation

npm install core-agentkit-vercel-ai-sdk

Usage

import {
  AgentKit,
  CoreWalletProvider,
  coreActionProvider,
} from "core-agentkit";
import { getVercelAITools } from "core-agentkit-vercel-ai-sdk";
import { openai } from "@ai-sdk/openai";
import { generateText } from "ai";

// Create wallet provider
const walletProvider = new CoreWalletProvider(
  process.env.PRIVATE_KEY!,
  "core-testnet"
);

// Create AgentKit instance
const agentKit = AgentKit.from(walletProvider, [coreActionProvider()]);

// Get Vercel AI SDK tools
const tools = getVercelAITools(agentKit);

// Use with Vercel AI SDK
const result = await generateText({
  model: openai("gpt-4"),
  prompt:
    "Check my CORE balance and transfer 1 CORE to 0x742d35Cc6634C0532925a3b8D9C0a0e7c5f2e2B3",
  tools,
  maxToolRoundtrips: 5,
});

console.log(result.text);

Available Tools

When you convert Core AgentKit actions to Vercel AI SDK tools, you get access to:

  • get_balance: Get CORE balance for an address
  • transfer: Transfer CORE tokens to another address
  • get_token_balance: Get ERC-20 token balance for an address
  • transfer_token: Transfer ERC-20 tokens to another address
  • stake: Stake CORE tokens with a validator
  • unstake: Unstake CORE tokens from a validator

API Reference

getVercelAITools(agentKit: AgentKit): Record<string, any>

Converts all actions from a Core AgentKit instance into Vercel AI SDK tools.

createVercelAITool(action: Action): any

Converts a single Core AgentKit action into a Vercel AI SDK tool.

License

MIT