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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@veroq/ai

v2.0.0

Published

VEROQ tools for the Vercel AI SDK — verified financial intelligence for AI agents

Readme

@veroq/ai

New: VeroQ 2.0 adds Verified Swarm (multi-agent pipelines), Agent Runtime (finance/legal/research/compliance verticals), and secure external MCP integration. Available via the MCP server and SDKs.

VEROQ tools for the Vercel AI SDK. Drop verified financial intelligence into any AI SDK agent with one line.

Install

npm install @veroq/ai ai zod

Quick Start

The fastest way -- veroqTools() gives your agent access to all 53 tools:

import { generateText } from "ai";
import { anthropic } from "@ai-sdk/anthropic";
import { veroqTools } from "@veroq/ai";

const result = await generateText({
  model: anthropic("claude-sonnet-4-20250514"),
  tools: veroqTools(),
  prompt: "How is NVDA doing today?",
});

Or import just the tools you need:

import { veroqAsk, veroqVerify } from "@veroq/ai";

const result = await generateText({
  model: anthropic("claude-sonnet-4-20250514"),
  tools: {
    ask: veroqAsk({ apiKey: "your-api-key" }),
    verify: veroqVerify({ apiKey: "your-api-key" }),
  },
  prompt: "Fact-check: NVIDIA revenue grew 200% last quarter",
});

Set the POLARIS_API_KEY environment variable to skip passing apiKey everywhere.

Tools

Primary

| Export | Description | |--------|------------| | veroqAsk() | Ask any question about markets, companies, or economics | | veroqVerify() | Fact-check a claim against the intelligence corpus |

Search & Discovery

| Export | Description | |--------|------------| | veroqSearch() | Search verified news briefs with confidence scores | | veroqFeed() | Get latest intelligence feed | | veroqBrief() | Get a specific brief by ID | | veroqExtract() | Extract article content from URLs | | veroqEntities() | Look up entity coverage | | veroqTrending() | Get trending entities | | veroqCompare() | Compare outlet coverage of a story | | veroqResearch() | Deep multi-source research (5 credits) | | veroqTimeline() | Story evolution timeline for living briefs | | veroqForecast() | Forward-looking topic forecasts | | veroqContradictions() | Find contradictions across intelligence | | veroqEvents() | Notable events from intelligence briefs | | veroqWebSearch() | Web search with trust scoring | | veroqCrawl() | Extract structured content from URLs |

Market Data

| Export | Description | |--------|------------| | veroqTickerResolve() | Resolve ticker symbols | | veroqTicker() | Get ticker price data | | veroqTickerHistory() | Historical ticker data | | veroqTickerScore() | Composite trading signal score | | veroqFull() | Full ticker profile | | veroqSectors() | Sector overview with sentiment | | veroqPortfolioFeed() | Portfolio-aware news feed | | veroqEventsCalendar() | Events calendar | | veroqCandles() | OHLCV candlestick data | | veroqTechnicals() | Technical indicators and signals | | veroqMarketMovers() | Top gainers, losers, most active | | veroqEconomy() | Macroeconomic indicators | | veroqForex() | Foreign exchange rates | | veroqCommodities() | Commodity prices | | veroqCrypto() | Cryptocurrency data | | veroqCryptoDefi() | DeFi TVL and protocol data | | veroqBacktest() | Backtesting with equity curves | | veroqCorrelation() | Correlation matrix analysis | | veroqScreener() | Multi-criteria stock/crypto screener | | veroqNewsImpact() | News impact scoring | | veroqCompetitors() | Competitor intelligence |

Fundamentals & Social

| Export | Description | |--------|------------| | veroqInsider() | Insider trading activity | | veroqFilings() | SEC filings | | veroqAnalysts() | Analyst ratings and targets | | veroqCongress() | Congressional trading activity | | veroqInstitutions() | Institutional ownership | | veroqSocialSentiment() | Social media sentiment | | veroqSocialTrending() | Social media trending topics |

Other

| Export | Description | |--------|------------| | veroqIpoCalendar() | IPO calendar from SEC filings | | veroqTickerNews() | Ticker-specific news | | veroqTickerAnalysis() | Comprehensive ticker analysis | | veroqSearchSuggest() | Search autocomplete | | veroqDefiProtocol() | Detailed DeFi protocol data | | veroqEconomyIndicator() | Specific economic indicators | | veroqGenerateReport() | AI-powered research reports | | veroqGetReport() | Retrieve generated reports | | veroqRunAgent() | Run pre-built AI agents |

Convenience

| Export | Description | |--------|------------| | veroqTools() | Returns all tools in a single object for generateText({ tools }) |

Each function accepts an optional { apiKey } config and returns an AI SDK tool().

Get an API Key

Sign up at veroq.ai/settings.

License

MIT