@veroq/ai 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +107 -0
- package/dist/index.d.ts +961 -0
- package/dist/index.js +911 -0
- package/dist/index.js.map +1 -0
- package/package.json +54 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/tools/veroq-search.ts","../src/tools/veroq-feed.ts","../src/tools/veroq-brief.ts","../src/tools/veroq-extract.ts","../src/tools/veroq-entities.ts","../src/tools/veroq-trending.ts","../src/tools/veroq-compare.ts","../src/tools/veroq-research.ts","../src/tools/veroq-verify.ts","../src/tools/veroq-timeline.ts","../src/tools/veroq-forecast.ts","../src/tools/veroq-contradictions.ts","../src/tools/veroq-events.ts","../src/tools/veroq-web-search.ts","../src/tools/veroq-crawl.ts","../src/tools/veroq-ticker-resolve.ts","../src/tools/veroq-ticker.ts","../src/tools/veroq-ticker-history.ts","../src/tools/veroq-ticker-score.ts","../src/tools/veroq-sectors.ts","../src/tools/veroq-portfolio-feed.ts","../src/tools/veroq-events-calendar.ts","../src/tools/veroq-candles.ts","../src/tools/_fetch.ts","../src/tools/veroq-technicals.ts","../src/tools/veroq-market-movers.ts","../src/tools/veroq-economy.ts","../src/tools/veroq-forex.ts","../src/tools/veroq-commodities.ts","../src/tools/veroq-crypto.ts","../src/tools/veroq-crypto-defi.ts","../src/tools/veroq-backtest.ts","../src/tools/veroq-correlation.ts","../src/tools/veroq-screener.ts","../src/tools/veroq-news-impact.ts","../src/tools/veroq-competitors.ts","../src/tools/veroq-social-sentiment.ts","../src/tools/veroq-social-trending.ts","../src/tools/veroq-ipo-calendar.ts","../src/tools/veroq-ticker-news.ts","../src/tools/veroq-ticker-analysis.ts","../src/tools/veroq-search-suggest.ts","../src/tools/veroq-defi-protocol.ts","../src/tools/veroq-economy-indicator.ts","../src/tools/veroq-generate-report.ts","../src/tools/veroq-get-report.ts","../src/tools/veroq-ask.ts","../src/tools/veroq-full.ts","../src/tools/veroq-insider.ts","../src/tools/veroq-filings.ts","../src/tools/veroq-analysts.ts","../src/tools/veroq-congress.ts","../src/tools/veroq-institutions.ts","../src/tools/veroq-run-agent.ts"],"sourcesContent":["import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { PolarisClient } from \"polaris-news-api\";\n\nexport const veroqSearch = (options: { apiKey?: string } = {}) =>\n tool({\n description:\n \"Search verified intelligence briefs with confidence scores and bias ratings across 18 verticals.\",\n parameters: z.object({\n query: z.string().describe(\"The search query\"),\n category: z\n .string()\n .optional()\n .describe(\"Category slug (e.g. ai_ml, markets, crypto)\"),\n depth: z\n .enum([\"fast\", \"standard\", \"deep\"])\n .optional()\n .describe(\"Speed tier: fast skips extras, deep adds entity cross-refs\"),\n limit: z\n .number()\n .optional()\n .describe(\"Max results to return (default 10)\"),\n }),\n execute: async ({ query, category, depth, limit }) => {\n const client = new PolarisClient({ apiKey: options.apiKey });\n return client.search(query, { category, depth, perPage: limit });\n },\n });\n","import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { PolarisClient } from \"polaris-news-api\";\n\nexport const veroqFeed = (options: { apiKey?: string } = {}) =>\n tool({\n description:\n \"Get the latest verified intelligence briefs from the VEROQ knowledge feed, optionally filtered by category.\",\n parameters: z.object({\n category: z\n .string()\n .optional()\n .describe(\"Category slug to filter by (e.g. technology, markets)\"),\n limit: z\n .number()\n .optional()\n .describe(\"Max briefs to return (default 20)\"),\n }),\n execute: async ({ category, limit }) => {\n const client = new PolarisClient({ apiKey: options.apiKey });\n return client.agentFeed({ category, limit });\n },\n });\n","import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { PolarisClient } from \"polaris-news-api\";\n\nexport const veroqBrief = (options: { apiKey?: string } = {}) =>\n tool({\n description:\n \"Get a specific verified news brief by ID with full analysis, sources, and counter-arguments.\",\n parameters: z.object({\n id: z.string().describe(\"The brief ID to retrieve\"),\n }),\n execute: async ({ id }) => {\n const client = new PolarisClient({ apiKey: options.apiKey });\n return client.brief(id);\n },\n });\n","import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { PolarisClient } from \"polaris-news-api\";\n\nexport const veroqExtract = (options: { apiKey?: string } = {}) =>\n tool({\n description:\n \"Extract clean article content from URLs. Returns structured text with metadata.\",\n parameters: z.object({\n urls: z\n .array(z.string())\n .min(1)\n .max(5)\n .describe(\"URLs to extract article content from (1-5)\"),\n }),\n execute: async ({ urls }) => {\n const client = new PolarisClient({ apiKey: options.apiKey });\n return client.extract(urls);\n },\n });\n","import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { PolarisClient } from \"polaris-news-api\";\n\nexport const veroqEntities = (options: { apiKey?: string } = {}) =>\n tool({\n description:\n \"Look up news coverage for a specific entity (company, person, technology).\",\n parameters: z.object({\n name: z\n .string()\n .describe(\n \"Entity name to look up (e.g. OpenAI, Elon Musk, quantum computing)\"\n ),\n }),\n execute: async ({ name }) => {\n const client = new PolarisClient({ apiKey: options.apiKey });\n return client.entityBriefs(name);\n },\n });\n","import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { PolarisClient } from \"polaris-news-api\";\n\nexport const veroqTrending = (options: { apiKey?: string } = {}) =>\n tool({\n description:\n \"Get trending entities across the news — the people, companies, and topics generating the most coverage right now.\",\n parameters: z.object({\n limit: z\n .number()\n .optional()\n .describe(\"Max entities to return (default 10)\"),\n }),\n execute: async ({ limit }) => {\n const client = new PolarisClient({ apiKey: options.apiKey });\n return client.trendingEntities(limit);\n },\n });\n","import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { PolarisClient } from \"polaris-news-api\";\n\nexport const veroqCompare = (options: { apiKey?: string } = {}) =>\n tool({\n description:\n \"Compare how different news outlets covered the same story. Shows framing, bias, and what each side emphasizes or omits.\",\n parameters: z.object({\n briefId: z\n .string()\n .describe(\"The brief ID to compare source coverage for\"),\n }),\n execute: async ({ briefId }) => {\n const client = new PolarisClient({ apiKey: options.apiKey });\n return client.compareSources(briefId);\n },\n });\n","import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { PolarisClient } from \"polaris-news-api\";\n\nexport const veroqResearch = (options: { apiKey?: string } = {}) =>\n tool({\n description:\n \"Deep research across verified intelligence briefs. Synthesizes a comprehensive report with key findings and information gaps. Costs 5 API credits.\",\n parameters: z.object({\n query: z.string().describe(\"Research query to investigate\"),\n category: z\n .string()\n .optional()\n .describe(\"Category slug to focus research (e.g. ai_ml, policy)\"),\n maxSources: z\n .number()\n .optional()\n .describe(\"Maximum briefs to analyze (1-50, default 20)\"),\n }),\n execute: async ({ query, category, maxSources }) => {\n const client = new PolarisClient({ apiKey: options.apiKey });\n return client.research(query, { category, maxSources });\n },\n });\n","import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { PolarisClient } from \"polaris-news-api\";\n\nexport const veroqVerify = (options: { apiKey?: string } = {}) =>\n tool({\n description:\n \"Fact-check a claim against the VEROQ brief corpus. Returns a verdict (supported/contradicted/partially_supported/unverifiable) with confidence, sources, and nuances.\",\n parameters: z.object({\n claim: z\n .string()\n .min(10)\n .max(1000)\n .describe(\"The claim to fact-check\"),\n context: z\n .string()\n .optional()\n .describe(\"Category to narrow the search (e.g. 'tech', 'policy')\"),\n }),\n execute: async ({ claim, context }) => {\n const client = new PolarisClient({ apiKey: options.apiKey });\n return client.verify(claim, { context });\n },\n });\n","import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { PolarisClient } from \"polaris-news-api\";\n\nexport const veroqTimeline = (options: { apiKey?: string } = {}) =>\n tool({\n description:\n \"Get the story evolution timeline for a living brief — shows how coverage developed over time with versioned updates, confidence changes, and new sources.\",\n parameters: z.object({\n briefId: z.string().describe(\"Brief ID\"),\n }),\n execute: async ({ briefId }) => {\n const client = new PolarisClient({ apiKey: options.apiKey });\n return client.timeline(briefId);\n },\n });\n","import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { PolarisClient } from \"polaris-news-api\";\n\nexport const veroqForecast = (options: { apiKey?: string } = {}) =>\n tool({\n description:\n \"Generate a forward-looking forecast for a topic based on current intelligence trends, momentum signals, and historical patterns.\",\n parameters: z.object({\n topic: z.string().describe(\"Topic to forecast future developments for\"),\n depth: z\n .enum([\"fast\", \"standard\", \"deep\"])\n .optional()\n .describe(\"Analysis depth\"),\n }),\n execute: async ({ topic, depth }) => {\n const client = new PolarisClient({ apiKey: options.apiKey });\n return client.forecast(topic, { depth });\n },\n });\n","import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { PolarisClient } from \"polaris-news-api\";\n\nexport const veroqContradictions = (options: { apiKey?: string } = {}) =>\n tool({\n description:\n \"Find contradictions across the intelligence brief network — stories where sources disagree on facts, framing, or conclusions.\",\n parameters: z.object({\n severity: z\n .string()\n .optional()\n .describe(\"Filter by severity level (e.g. high, medium, low)\"),\n }),\n execute: async ({ severity }) => {\n const client = new PolarisClient({ apiKey: options.apiKey });\n return client.contradictions({ severity });\n },\n });\n","import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { PolarisClient } from \"polaris-news-api\";\n\nexport const veroqEvents = (options: { apiKey?: string } = {}) =>\n tool({\n description:\n \"Get notable events detected across intelligence briefs — significant developments, announcements, and inflection points.\",\n parameters: z.object({\n type: z\n .string()\n .optional()\n .describe(\"Event type to filter by\"),\n subject: z\n .string()\n .optional()\n .describe(\"Subject or entity to filter events for\"),\n }),\n execute: async ({ type, subject }) => {\n const client = new PolarisClient({ apiKey: options.apiKey });\n return client.events({ type, subject });\n },\n });\n","import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { PolarisClient } from \"polaris-news-api\";\n\nexport const veroqWebSearch = (options: { apiKey?: string } = {}) =>\n tool({\n description:\n \"Search the web with optional VEROQ trust scoring. Returns web results with relevance and optional verification.\",\n parameters: z.object({\n query: z.string().describe(\"Web search query\"),\n limit: z\n .number()\n .optional()\n .describe(\"Max results to return (default 5)\"),\n freshness: z\n .string()\n .optional()\n .describe(\"Freshness filter (e.g. 'day', 'week', 'month')\"),\n region: z\n .string()\n .optional()\n .describe(\"Region code (e.g. 'us', 'eu')\"),\n verify: z\n .boolean()\n .optional()\n .describe(\"Enable VEROQ trust scoring on results\"),\n }),\n execute: async ({ query, limit, freshness, region, verify }) => {\n const client = new PolarisClient({ apiKey: options.apiKey });\n return client.webSearch(query, { limit, freshness, region, verify });\n },\n });\n","import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { PolarisClient } from \"polaris-news-api\";\n\nexport const veroqCrawl = (options: { apiKey?: string } = {}) =>\n tool({\n description:\n \"Extract structured content from a URL with optional link following. Returns page content, metadata, and optionally discovered links.\",\n parameters: z.object({\n url: z.string().url().describe(\"URL to crawl and extract content from\"),\n depth: z\n .number()\n .optional()\n .describe(\"Crawl depth (default 1)\"),\n max_pages: z\n .number()\n .optional()\n .describe(\"Max pages to crawl (default 5)\"),\n include_links: z\n .boolean()\n .optional()\n .describe(\"Include extracted links in response\"),\n }),\n execute: async ({ url, depth, max_pages, include_links }) => {\n const client = new PolarisClient({ apiKey: options.apiKey });\n return client.crawl(url, { depth, max_pages, include_links });\n },\n });\n","import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { PolarisClient } from \"polaris-news-api\";\n\nexport const veroqTickerResolve = (options: { apiKey?: string } = {}) =>\n tool({\n description:\n \"Resolve ticker symbols to company names and sectors. Pass one or more comma-separated symbols to validate them against the VEROQ knowledge base.\",\n parameters: z.object({\n q: z\n .string()\n .describe(\n \"Comma-separated ticker symbols to resolve (e.g. AAPL,MSFT,TSLA)\"\n ),\n }),\n execute: async ({ q }) => {\n const client = new PolarisClient({ apiKey: options.apiKey });\n const symbols = q.split(\",\").map((s) => s.trim());\n return client.tickerResolve(symbols);\n },\n });\n","import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { PolarisClient } from \"polaris-news-api\";\n\nexport const veroqTicker = (options: { apiKey?: string } = {}) =>\n tool({\n description:\n \"Look up a single ticker symbol to get its brief count, sentiment, sector, and last mention timestamp.\",\n parameters: z.object({\n symbol: z\n .string()\n .describe(\"Ticker symbol to look up (e.g. AAPL)\"),\n }),\n execute: async ({ symbol }) => {\n const client = new PolarisClient({ apiKey: options.apiKey });\n return client.ticker(symbol);\n },\n });\n","import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { PolarisClient } from \"polaris-news-api\";\n\nexport const veroqTickerHistory = (options: { apiKey?: string } = {}) =>\n tool({\n description:\n \"Get daily sentiment timeseries for a ticker symbol — tracks how news sentiment has changed over time.\",\n parameters: z.object({\n symbol: z\n .string()\n .describe(\"Ticker symbol (e.g. AAPL)\"),\n days: z\n .number()\n .optional()\n .describe(\"Number of days of history to return (default 30)\"),\n }),\n execute: async ({ symbol, days }) => {\n const client = new PolarisClient({ apiKey: options.apiKey });\n return client.tickerHistory(symbol, { days });\n },\n });\n","import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { PolarisClient } from \"polaris-news-api\";\n\nexport const veroqTickerScore = (options: { apiKey?: string } = {}) =>\n tool({\n description:\n \"Get a composite trading signal score for a ticker, combining sentiment, momentum, volume, and other intelligence signals into a single score.\",\n parameters: z.object({\n symbol: z\n .string()\n .describe(\"Ticker symbol to score (e.g. AAPL)\"),\n }),\n execute: async ({ symbol }) => {\n const client = new PolarisClient({ apiKey: options.apiKey });\n return client.tickerScore(symbol);\n },\n });\n","import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { PolarisClient } from \"polaris-news-api\";\n\nexport const veroqSectors = (options: { apiKey?: string } = {}) =>\n tool({\n description:\n \"Get all market sectors with sentiment overview — shows which sectors are trending positive or negative based on intelligence coverage.\",\n parameters: z.object({\n days: z\n .number()\n .optional()\n .describe(\"Lookback window in days (default 7)\"),\n }),\n execute: async ({ days }) => {\n const client = new PolarisClient({ apiKey: options.apiKey });\n return client.sectors({ days });\n },\n });\n","import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { PolarisClient } from \"polaris-news-api\";\n\nexport const veroqPortfolioFeed = (options: { apiKey?: string } = {}) =>\n tool({\n description:\n \"Pass portfolio holdings (tickers + weights) and get ranked intelligence briefs relevant to your positions.\",\n parameters: z.object({\n holdings: z\n .array(\n z.object({\n ticker: z.string().describe(\"Ticker symbol (e.g. AAPL)\"),\n weight: z.number().describe(\"Portfolio weight as a decimal (e.g. 0.25 for 25%)\"),\n })\n )\n .min(1)\n .describe(\"Array of portfolio holdings with ticker and weight\"),\n days: z\n .number()\n .optional()\n .describe(\"Lookback window in days (default 7)\"),\n limit: z\n .number()\n .optional()\n .describe(\"Max briefs to return (default 20)\"),\n }),\n execute: async ({ holdings, days, limit }) => {\n const client = new PolarisClient({ apiKey: options.apiKey });\n return client.portfolioFeed(holdings, { days, limit });\n },\n });\n","import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { PolarisClient } from \"polaris-news-api\";\n\nexport const veroqEventsCalendar = (options: { apiKey?: string } = {}) =>\n tool({\n description:\n \"Get structured market events (earnings, launches, regulatory deadlines, etc.) filterable by ticker and event type.\",\n parameters: z.object({\n ticker: z\n .string()\n .optional()\n .describe(\"Filter events for a specific ticker symbol\"),\n type: z\n .string()\n .optional()\n .describe(\"Filter by event type (e.g. earnings, launch, regulatory)\"),\n days: z\n .number()\n .optional()\n .describe(\"Lookback/lookahead window in days (default 30)\"),\n limit: z\n .number()\n .optional()\n .describe(\"Max events to return (default 30)\"),\n }),\n execute: async ({ ticker, type, days, limit }) => {\n const client = new PolarisClient({ apiKey: options.apiKey });\n return client.eventsCalendar({ ticker, type, days, limit });\n },\n });\n","import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { veroqGet, type ToolOptions } from \"./_fetch.js\";\n\nexport const veroqCandles = (options: ToolOptions = {}) =>\n tool({\n description:\n \"Get OHLCV candlestick data for a ticker symbol. Returns date, open, high, low, close, and volume for each period.\",\n parameters: z.object({\n symbol: z\n .string()\n .describe(\"Ticker symbol (e.g. AAPL, MSFT)\"),\n interval: z\n .enum([\"1d\", \"1wk\", \"1mo\"])\n .optional()\n .describe(\"Candle interval (default 1d)\"),\n range: z\n .enum([\"1mo\", \"3mo\", \"6mo\", \"1y\", \"2y\", \"5y\"])\n .optional()\n .describe(\"Date range (default 6mo)\"),\n }),\n execute: async ({ symbol, interval, range }) => {\n return veroqGet(options, `/api/v1/ticker/${encodeURIComponent(symbol)}/candles`, {\n interval,\n range,\n });\n },\n });\n","/**\n * Shared helper for tools that call the VEROQ API directly\n * (used when the polaris-news-api SDK client doesn't yet expose the method).\n */\n\nconst DEFAULT_BASE_URL = \"https://api.thepolarisreport.com\";\n\ndeclare const fetch: (url: string, init?: { method?: string; headers?: Record<string, string>; body?: string }) => Promise<{\n ok: boolean;\n status: number;\n json: () => Promise<unknown>;\n}>;\n\ndeclare class URLSearchParams {\n constructor(init?: Record<string, string>);\n set(name: string, value: string): void;\n toString(): string;\n}\n\nexport interface ToolOptions {\n apiKey?: string;\n baseUrl?: string;\n}\n\nexport async function veroqGet(\n options: ToolOptions,\n path: string,\n params?: Record<string, string | undefined>,\n): Promise<Record<string, unknown>> {\n const base = (options.baseUrl || DEFAULT_BASE_URL).replace(/\\/+$/, \"\");\n const qs = new URLSearchParams();\n if (params) {\n for (const [k, v] of Object.entries(params)) {\n if (v !== undefined) qs.set(k, v);\n }\n }\n const qsStr = qs.toString();\n const url = `${base}${path}${qsStr ? `?${qsStr}` : \"\"}`;\n const headers: Record<string, string> = { \"Content-Type\": \"application/json\" };\n if (options.apiKey) headers[\"Authorization\"] = `Bearer ${options.apiKey}`;\n const res = await fetch(url, { headers });\n if (!res.ok) throw new Error(`VEROQ API error ${res.status}`);\n return res.json() as Promise<Record<string, unknown>>;\n}\n\nexport async function veroqPost(\n options: ToolOptions,\n path: string,\n body: Record<string, unknown>,\n): Promise<Record<string, unknown>> {\n const base = (options.baseUrl || DEFAULT_BASE_URL).replace(/\\/+$/, \"\");\n const url = `${base}${path}`;\n const headers: Record<string, string> = { \"Content-Type\": \"application/json\" };\n if (options.apiKey) headers[\"Authorization\"] = `Bearer ${options.apiKey}`;\n const res = await fetch(url, { method: \"POST\", headers, body: JSON.stringify(body) });\n if (!res.ok) throw new Error(`VEROQ API error ${res.status}`);\n return res.json() as Promise<Record<string, unknown>>;\n}\n","import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { veroqGet, type ToolOptions } from \"./_fetch.js\";\n\nexport const veroqTechnicals = (options: ToolOptions = {}) =>\n tool({\n description:\n \"Get all technical indicators and a signal summary for a ticker. Includes SMA, EMA, RSI, MACD, Bollinger Bands, ATR, Stochastic, ADX, OBV, and VWAP with an overall buy/sell/neutral verdict.\",\n parameters: z.object({\n symbol: z\n .string()\n .describe(\"Ticker symbol (e.g. NVDA)\"),\n range: z\n .enum([\"1mo\", \"3mo\", \"6mo\", \"1y\", \"2y\", \"5y\"])\n .optional()\n .describe(\"Date range for indicator calculation (default 6mo)\"),\n }),\n execute: async ({ symbol, range }) => {\n return veroqGet(options, `/api/v1/ticker/${encodeURIComponent(symbol)}/technicals`, {\n range,\n });\n },\n });\n","import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { veroqGet, type ToolOptions } from \"./_fetch.js\";\n\nexport const veroqMarketMovers = (options: ToolOptions = {}) =>\n tool({\n description:\n \"Get top market movers — gainers, losers, and most active stocks by volume. Useful for a quick snapshot of what is moving in the market right now.\",\n parameters: z.object({}),\n execute: async () => {\n return veroqGet(options, \"/api/v1/market/movers\");\n },\n });\n","import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { veroqGet, type ToolOptions } from \"./_fetch.js\";\n\nexport const veroqEconomy = (options: ToolOptions = {}) =>\n tool({\n description:\n \"Get economic indicators from the FRED API. Without an indicator slug, returns a summary of all key indicators (GDP, CPI, unemployment, etc.). With a slug, returns that indicator's history.\",\n parameters: z.object({\n indicator: z\n .string()\n .optional()\n .describe(\"Indicator slug (e.g. gdp, cpi, unemployment, fed_funds). Omit for summary of all.\"),\n limit: z\n .number()\n .optional()\n .describe(\"Number of historical observations to return (default 30, max 100)\"),\n }),\n execute: async ({ indicator, limit }) => {\n const path = indicator\n ? `/api/v1/economy/${encodeURIComponent(indicator)}`\n : \"/api/v1/economy\";\n return veroqGet(options, path, {\n limit: limit !== undefined ? String(limit) : undefined,\n });\n },\n });\n","import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { veroqGet, type ToolOptions } from \"./_fetch.js\";\n\nexport const veroqForex = (options: ToolOptions = {}) =>\n tool({\n description:\n \"Get forex exchange rates. Without a pair, returns all major forex pairs. With a pair (e.g. EURUSD), returns that specific rate and change data.\",\n parameters: z.object({\n pair: z\n .string()\n .optional()\n .describe(\"Forex pair (e.g. EURUSD, GBPUSD, USDJPY). Omit for all pairs.\"),\n }),\n execute: async ({ pair }) => {\n const path = pair\n ? `/api/v1/forex/${encodeURIComponent(pair.toUpperCase())}`\n : \"/api/v1/forex\";\n return veroqGet(options, path);\n },\n });\n","import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { veroqGet, type ToolOptions } from \"./_fetch.js\";\n\nexport const veroqCommodities = (options: ToolOptions = {}) =>\n tool({\n description:\n \"Get commodity prices. Without a symbol, returns all tracked commodities (gold, oil, silver, etc.). With a symbol, returns that commodity's current price and change data.\",\n parameters: z.object({\n symbol: z\n .string()\n .optional()\n .describe(\"Commodity slug (e.g. gold, oil, silver, natural_gas). Omit for all.\"),\n }),\n execute: async ({ symbol }) => {\n const path = symbol\n ? `/api/v1/commodities/${encodeURIComponent(symbol.toLowerCase())}`\n : \"/api/v1/commodities\";\n return veroqGet(options, path);\n },\n });\n","import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { veroqGet, type ToolOptions } from \"./_fetch.js\";\n\nexport const veroqCrypto = (options: ToolOptions = {}) =>\n tool({\n description:\n \"Get crypto market data. Without a symbol, returns market overview (total market cap, BTC dominance, etc.). With a symbol (e.g. BTC, ETH, SOL), returns that token's price, volume, and metadata.\",\n parameters: z.object({\n symbol: z\n .string()\n .optional()\n .describe(\"Crypto symbol (e.g. BTC, ETH, SOL). Omit for market overview.\"),\n }),\n execute: async ({ symbol }) => {\n const path = symbol\n ? `/api/v1/crypto/${encodeURIComponent(symbol.toUpperCase())}`\n : \"/api/v1/crypto\";\n return veroqGet(options, path);\n },\n });\n","import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { veroqGet, type ToolOptions } from \"./_fetch.js\";\n\nexport const veroqCryptoDefi = (options: ToolOptions = {}) =>\n tool({\n description:\n \"Get DeFi (decentralized finance) data. Without a protocol, returns TVL overview with top protocols and chain breakdown. With a protocol slug (e.g. aave, uniswap), returns that protocol's TVL history and details.\",\n parameters: z.object({\n protocol: z\n .string()\n .optional()\n .describe(\"DeFi protocol slug (e.g. aave, uniswap, lido). Omit for overview.\"),\n }),\n execute: async ({ protocol }) => {\n const path = protocol\n ? `/api/v1/crypto/defi/${encodeURIComponent(protocol.toLowerCase())}`\n : \"/api/v1/crypto/defi\";\n return veroqGet(options, path);\n },\n });\n","import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { PolarisClient } from \"polaris-news-api\";\n\nexport const veroqBacktest = (options: { apiKey?: string } = {}) =>\n tool({\n description:\n \"Backtest a news-driven trading strategy. Define entry/exit filters based on sentiment, RSI, and other signals, then see historical performance including return, drawdown, Sharpe ratio, and win rate.\",\n parameters: z.object({\n strategy: z.object({\n entry_filters: z.record(z.unknown()).describe(\"Entry signal filters (e.g. { rsi_below: 30, sentiment_above: 0.3 })\"),\n exit_filters: z.record(z.unknown()).describe(\"Exit signal filters (e.g. { rsi_above: 50 })\"),\n asset_type: z.string().optional().describe(\"Asset type filter (e.g. equity, crypto)\"),\n sector: z.string().optional().describe(\"Sector filter (e.g. Semiconductors, Technology)\"),\n }).describe(\"Strategy definition with entry/exit filters\"),\n period: z\n .string()\n .optional()\n .describe(\"Backtest period (e.g. 1y, 6mo, 3mo). Default: 1y\"),\n }),\n execute: async ({ strategy, period }) => {\n const client = new PolarisClient({ apiKey: options.apiKey });\n return client.backtest(strategy as any, { period: period ?? \"1y\" });\n },\n });\n","import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { PolarisClient } from \"polaris-news-api\";\n\nexport const veroqCorrelation = (options: { apiKey?: string } = {}) =>\n tool({\n description:\n \"Get a news-sentiment correlation matrix for multiple tickers. Shows how closely related their coverage patterns and sentiment movements are over a given period.\",\n parameters: z.object({\n tickers: z\n .array(z.string())\n .min(2)\n .describe(\"Array of ticker symbols to correlate (e.g. ['NVDA', 'AMD', 'INTC'])\"),\n days: z\n .number()\n .optional()\n .describe(\"Lookback period in days (default 30)\"),\n }),\n execute: async ({ tickers, days }) => {\n const client = new PolarisClient({ apiKey: options.apiKey });\n return client.correlation(tickers, { days: days ?? 30 });\n },\n });\n","import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { PolarisClient } from \"polaris-news-api\";\n\nexport const veroqScreener = (options: { apiKey?: string } = {}) =>\n tool({\n description:\n \"Screen stocks using natural language. Describe what you're looking for (e.g. 'oversold tech stocks with upcoming earnings') and get matching tickers with scores.\",\n parameters: z.object({\n query: z\n .string()\n .describe(\"Natural language screening query\"),\n limit: z\n .number()\n .optional()\n .describe(\"Max results to return (default 20)\"),\n }),\n execute: async ({ query, limit }) => {\n const client = new PolarisClient({ apiKey: options.apiKey });\n return client.screenerNatural(query, { limit });\n },\n });\n","import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { PolarisClient } from \"polaris-news-api\";\n\nexport const veroqNewsImpact = (options: { apiKey?: string } = {}) =>\n tool({\n description:\n \"Analyze the impact of news coverage on a ticker's price and sentiment. Shows how recent news events correlated with price movements.\",\n parameters: z.object({\n symbol: z\n .string()\n .describe(\"Ticker symbol to analyze (e.g. NVDA)\"),\n }),\n execute: async ({ symbol }) => {\n const client = new PolarisClient({ apiKey: options.apiKey });\n return client.newsImpact(symbol);\n },\n });\n","import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { PolarisClient } from \"polaris-news-api\";\n\nexport const veroqCompetitors = (options: { apiKey?: string } = {}) =>\n tool({\n description:\n \"Get the competitive landscape for a ticker. Returns competitors with comparative sentiment, coverage volume, and sector positioning.\",\n parameters: z.object({\n symbol: z\n .string()\n .describe(\"Ticker symbol to get competitors for (e.g. NVDA)\"),\n }),\n execute: async ({ symbol }) => {\n const client = new PolarisClient({ apiKey: options.apiKey });\n return client.competitors(symbol);\n },\n });\n","import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { veroqGet, type ToolOptions } from \"./_fetch.js\";\n\nexport const veroqSocialSentiment = (options: ToolOptions = {}) =>\n tool({\n description:\n \"Get social media sentiment for a ticker symbol — tracks mentions, sentiment scores, and trending status across social platforms.\",\n parameters: z.object({\n symbol: z\n .string()\n .describe(\"Ticker symbol to look up (e.g. AAPL)\"),\n }),\n execute: async ({ symbol }) => {\n const path = `/api/v1/ticker/${encodeURIComponent(symbol.toUpperCase())}/social`;\n return veroqGet(options, path);\n },\n });\n","import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { veroqGet, type ToolOptions } from \"./_fetch.js\";\n\nexport const veroqSocialTrending = (options: ToolOptions = {}) =>\n tool({\n description:\n \"Get trending tickers on social media — shows which stocks and crypto are generating the most buzz across social platforms right now.\",\n parameters: z.object({\n limit: z\n .number()\n .optional()\n .describe(\"Max results to return (default 20)\"),\n }),\n execute: async ({ limit }) => {\n return veroqGet(options, \"/api/v1/social/trending\", {\n limit: limit !== undefined ? String(limit) : undefined,\n });\n },\n });\n","import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { veroqGet, type ToolOptions } from \"./_fetch.js\";\n\nexport const veroqIpoCalendar = (options: ToolOptions = {}) =>\n tool({\n description:\n \"Get upcoming IPOs — lists companies preparing to go public with expected dates, price ranges, and exchange listings.\",\n parameters: z.object({\n limit: z\n .number()\n .optional()\n .describe(\"Max results to return (default 20)\"),\n }),\n execute: async ({ limit }) => {\n return veroqGet(options, \"/api/v1/ipo/calendar\", {\n limit: limit !== undefined ? String(limit) : undefined,\n });\n },\n });\n","import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { veroqGet, type ToolOptions } from \"./_fetch.js\";\n\nexport const veroqTickerNews = (options: ToolOptions = {}) =>\n tool({\n description:\n \"Get recent news articles for a specific ticker symbol — returns headlines, sources, timestamps, and sentiment for each article.\",\n parameters: z.object({\n symbol: z\n .string()\n .describe(\"Ticker symbol to get news for (e.g. AAPL)\"),\n limit: z\n .number()\n .optional()\n .describe(\"Max articles to return (default 20)\"),\n }),\n execute: async ({ symbol, limit }) => {\n const path = `/api/v1/ticker/${encodeURIComponent(symbol.toUpperCase())}/news`;\n return veroqGet(options, path, {\n limit: limit !== undefined ? String(limit) : undefined,\n });\n },\n });\n","import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { veroqGet, type ToolOptions } from \"./_fetch.js\";\n\nexport const veroqTickerAnalysis = (options: ToolOptions = {}) =>\n tool({\n description:\n \"Get a full analysis for a ticker symbol — includes sentiment breakdown, technical signals, news summary, and an overall outlook.\",\n parameters: z.object({\n symbol: z\n .string()\n .describe(\"Ticker symbol to analyze (e.g. NVDA)\"),\n }),\n execute: async ({ symbol }) => {\n const path = `/api/v1/ticker/${encodeURIComponent(symbol.toUpperCase())}/analysis`;\n return veroqGet(options, path);\n },\n });\n","import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { veroqGet, type ToolOptions } from \"./_fetch.js\";\n\nexport const veroqSearchSuggest = (options: ToolOptions = {}) =>\n tool({\n description:\n \"Get search autocomplete suggestions — returns matching topics, tickers, and entities as the user types a query.\",\n parameters: z.object({\n q: z\n .string()\n .describe(\"Partial search query to get suggestions for\"),\n }),\n execute: async ({ q }) => {\n return veroqGet(options, \"/api/v1/search/suggest\", { q });\n },\n });\n","import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { veroqGet, type ToolOptions } from \"./_fetch.js\";\n\nexport const veroqDefiProtocol = (options: ToolOptions = {}) =>\n tool({\n description:\n \"Get detailed data for a specific DeFi protocol — includes TVL history, chain breakdown, token info, and protocol metrics.\",\n parameters: z.object({\n protocol: z\n .string()\n .describe(\"DeFi protocol slug (e.g. aave, uniswap, lido)\"),\n }),\n execute: async ({ protocol }) => {\n const path = `/api/v1/crypto/defi/${encodeURIComponent(protocol.toLowerCase())}`;\n return veroqGet(options, path);\n },\n });\n","import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { veroqGet, type ToolOptions } from \"./_fetch.js\";\n\nexport const veroqEconomyIndicator = (options: ToolOptions = {}) =>\n tool({\n description:\n \"Get data for a specific economic indicator — returns historical observations, current value, and trend for indicators like GDP, CPI, unemployment, and fed funds rate.\",\n parameters: z.object({\n indicator: z\n .string()\n .describe(\"Economic indicator slug (e.g. gdp, cpi, unemployment, fed_funds)\"),\n limit: z\n .number()\n .optional()\n .describe(\"Number of historical observations to return (default 30, max 100)\"),\n }),\n execute: async ({ indicator, limit }) => {\n const path = `/api/v1/economy/${encodeURIComponent(indicator)}`;\n return veroqGet(options, path, {\n limit: limit !== undefined ? String(limit) : undefined,\n });\n },\n });\n","import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { PolarisClient } from \"polaris-news-api\";\n\nexport const veroqGenerateReport = (options: { apiKey?: string } = {}) =>\n tool({\n description:\n \"Generate an AI-powered research report for a given ticker symbol. Returns a comprehensive analysis including fundamentals, technicals, and news sentiment.\",\n parameters: z.object({\n ticker: z.string().describe(\"The ticker symbol to generate a report for (e.g. AAPL, BTC)\"),\n tier: z\n .string()\n .optional()\n .describe(\"Report tier — 'quick' for a fast summary or 'deep' for full analysis (default 'quick')\"),\n }),\n execute: async ({ ticker, tier }) => {\n const client = new PolarisClient({ apiKey: options.apiKey });\n return client.generateReport(ticker, tier);\n },\n });\n","import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { PolarisClient } from \"polaris-news-api\";\n\nexport const veroqGetReport = (options: { apiKey?: string } = {}) =>\n tool({\n description:\n \"Retrieve a previously generated report by its ID. Returns the full report content including all analysis sections.\",\n parameters: z.object({\n reportId: z.string().describe(\"The report ID to retrieve\"),\n }),\n execute: async ({ reportId }) => {\n const client = new PolarisClient({ apiKey: options.apiKey });\n return client.getReport(reportId);\n },\n });\n","import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { veroqPost, type ToolOptions } from \"./_fetch.js\";\n\nexport const veroqAsk = (options: ToolOptions = {}) =>\n tool({\n description:\n \"Ask any question about markets, companies, economics, or geopolitics and get an AI-generated answer grounded in verified intelligence briefs. The most versatile tool in the VEROQ toolkit.\",\n parameters: z.object({\n question: z\n .string()\n .describe(\"The question to ask (e.g. 'What is driving NVIDIA stock price this week?')\"),\n }),\n execute: async ({ question }) => {\n return veroqPost(options, \"/api/v1/ask\", { question });\n },\n });\n","import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { veroqGet, type ToolOptions } from \"./_fetch.js\";\n\nexport const veroqFull = (options: ToolOptions = {}) =>\n tool({\n description:\n \"Get a comprehensive full profile for a ticker symbol — combines price, fundamentals, technicals, sentiment, news, and analyst data in a single call.\",\n parameters: z.object({\n ticker: z\n .string()\n .describe(\"Ticker symbol to look up (e.g. AAPL, BTC, ETH)\"),\n }),\n execute: async ({ ticker }) => {\n const path = `/api/v1/ticker/${encodeURIComponent(ticker.toUpperCase())}/full`;\n return veroqGet(options, path);\n },\n });\n","import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { veroqGet, type ToolOptions } from \"./_fetch.js\";\n\nexport const veroqInsider = (options: ToolOptions = {}) =>\n tool({\n description:\n \"Get recent insider trading activity for a ticker symbol — shows buys, sells, and option exercises by company officers and directors.\",\n parameters: z.object({\n ticker: z\n .string()\n .describe(\"Ticker symbol to look up insider trades for (e.g. AAPL)\"),\n }),\n execute: async ({ ticker }) => {\n const path = `/api/v1/ticker/${encodeURIComponent(ticker.toUpperCase())}/insider`;\n return veroqGet(options, path);\n },\n });\n","import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { veroqGet, type ToolOptions } from \"./_fetch.js\";\n\nexport const veroqFilings = (options: ToolOptions = {}) =>\n tool({\n description:\n \"Get recent SEC filings for a ticker symbol — includes 10-K, 10-Q, 8-K, and other regulatory filings with links and summaries.\",\n parameters: z.object({\n ticker: z\n .string()\n .describe(\"Ticker symbol to look up filings for (e.g. TSLA)\"),\n }),\n execute: async ({ ticker }) => {\n const path = `/api/v1/ticker/${encodeURIComponent(ticker.toUpperCase())}/filings`;\n return veroqGet(options, path);\n },\n });\n","import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { veroqGet, type ToolOptions } from \"./_fetch.js\";\n\nexport const veroqAnalysts = (options: ToolOptions = {}) =>\n tool({\n description:\n \"Get Wall Street analyst ratings and price targets for a ticker symbol — includes consensus rating, target prices, and recent upgrades/downgrades.\",\n parameters: z.object({\n ticker: z\n .string()\n .describe(\"Ticker symbol to look up analyst ratings for (e.g. MSFT)\"),\n }),\n execute: async ({ ticker }) => {\n const path = `/api/v1/ticker/${encodeURIComponent(ticker.toUpperCase())}/analysts`;\n return veroqGet(options, path);\n },\n });\n","import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { veroqGet, type ToolOptions } from \"./_fetch.js\";\n\nexport const veroqCongress = (options: ToolOptions = {}) =>\n tool({\n description:\n \"Get recent stock trades disclosed by U.S. Congress members. Optionally filter by a specific ticker symbol.\",\n parameters: z.object({\n symbol: z\n .string()\n .optional()\n .describe(\"Ticker symbol to filter trades (e.g. NVDA). Omit for all recent congressional trades.\"),\n }),\n execute: async ({ symbol }) => {\n return veroqGet(options, \"/api/v1/congress/trades\", {\n symbol: symbol ? symbol.toUpperCase() : undefined,\n });\n },\n });\n","import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { veroqGet, type ToolOptions } from \"./_fetch.js\";\n\nexport const veroqInstitutions = (options: ToolOptions = {}) =>\n tool({\n description:\n \"Get institutional ownership data for a ticker symbol — shows top holders, recent position changes, and ownership concentration.\",\n parameters: z.object({\n ticker: z\n .string()\n .describe(\"Ticker symbol to look up institutional ownership for (e.g. GOOG)\"),\n }),\n execute: async ({ ticker }) => {\n const path = `/api/v1/ticker/${encodeURIComponent(ticker.toUpperCase())}/institutions`;\n return veroqGet(options, path);\n },\n });\n","import { tool } from \"ai\";\nimport { z } from \"zod\";\nimport { veroqPost, type ToolOptions } from \"./_fetch.js\";\n\nexport const veroqRunAgent = (options: ToolOptions = {}) =>\n tool({\n description:\n \"Run a VEROQ agent by its slug with custom inputs. Agents perform multi-step research, analysis, and reporting workflows.\",\n parameters: z.object({\n slug: z\n .string()\n .describe(\"The agent slug to run (e.g. 'earnings-analyzer', 'sector-report')\"),\n inputs: z\n .record(z.unknown())\n .describe(\"Key-value inputs to pass to the agent\"),\n }),\n execute: async ({ slug, inputs }) => {\n const path = `/api/v1/agents/run/${encodeURIComponent(slug)}`;\n return veroqPost(options, path, inputs);\n },\n });\n"],"mappings":"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","names":["tool","z","PolarisClient","tool","z","PolarisClient","tool","z","PolarisClient","tool","z","PolarisClient","tool","z","PolarisClient","tool","z","PolarisClient","tool","z","PolarisClient","tool","z","PolarisClient","tool","z","PolarisClient","tool","z","PolarisClient","tool","z","PolarisClient","tool","z","PolarisClient","tool","z","PolarisClient","tool","z","PolarisClient","tool","z","PolarisClient","tool","z","PolarisClient","tool","z","PolarisClient","tool","z","PolarisClient","tool","z","PolarisClient","tool","z","PolarisClient","tool","z","PolarisClient","tool","z","tool","z","tool","z","tool","z","tool","z","tool","z","tool","z","tool","z","tool","z","tool","z","tool","z","tool","z","tool","z","tool","z","tool","z","tool","z","tool","z","PolarisClient","tool","z","PolarisClient","tool","z","PolarisClient","tool","z","PolarisClient","tool","z","PolarisClient","tool","z","tool","z","tool","z","tool","z","tool","z","tool","z","tool","z","tool","z","tool","z","tool","z","tool","z","tool","z","tool","z","tool","z","tool","z","tool","z","tool","z","PolarisClient","tool","z","PolarisClient","tool","z","tool","z","tool","z","tool","z","tool","z","tool","z","tool","z","tool","z","tool","z","tool","z","tool","z","tool","z","tool","z","tool","z","tool","z","tool","z"]}
|
package/package.json
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@veroq/ai",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "VEROQ tools for the Vercel AI SDK — verified financial intelligence for AI agents",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"module": "./dist/index.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"import": "./dist/index.js",
|
|
12
|
+
"types": "./dist/index.d.ts"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist"
|
|
17
|
+
],
|
|
18
|
+
"scripts": {
|
|
19
|
+
"build": "tsup",
|
|
20
|
+
"dev": "tsup --watch"
|
|
21
|
+
},
|
|
22
|
+
"dependencies": {
|
|
23
|
+
"polaris-news-api": "^0.9.0"
|
|
24
|
+
},
|
|
25
|
+
"peerDependencies": {
|
|
26
|
+
"ai": ">=4.0.0",
|
|
27
|
+
"zod": ">=3.0.0"
|
|
28
|
+
},
|
|
29
|
+
"devDependencies": {
|
|
30
|
+
"ai": "^4.0.0",
|
|
31
|
+
"tsup": "^8.0.0",
|
|
32
|
+
"typescript": "^5.0.0",
|
|
33
|
+
"zod": "^3.23.0"
|
|
34
|
+
},
|
|
35
|
+
"keywords": [
|
|
36
|
+
"veroq",
|
|
37
|
+
"financial-intelligence",
|
|
38
|
+
"ai",
|
|
39
|
+
"vercel",
|
|
40
|
+
"ai-sdk",
|
|
41
|
+
"tools",
|
|
42
|
+
"agent",
|
|
43
|
+
"trading",
|
|
44
|
+
"market-data",
|
|
45
|
+
"news"
|
|
46
|
+
],
|
|
47
|
+
"license": "MIT",
|
|
48
|
+
"repository": {
|
|
49
|
+
"type": "git",
|
|
50
|
+
"url": "https://github.com/Polaris-API/polaris-sdks",
|
|
51
|
+
"directory": "veroq-ai"
|
|
52
|
+
},
|
|
53
|
+
"homepage": "https://veroq.ai"
|
|
54
|
+
}
|