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

@kairohq/ai

v0.0.1

Published

AI provider and answer helpers for Kairo.

Downloads

90

Readme

@kairohq/ai

Provider-abstracted summarization and embedding helpers for Kairo.

Workspace AI settings live in .kairo/config.json under ai. kairo init writes Anthropic API-key config by default, --ai-provider none disables AI, and KAIRO_AI_PROVIDER / KAIRO_AI_MODEL / KAIRO_AI_EMBEDDING_MODEL / KAIRO_AI_API_KEY_ENV / KAIRO_AI_BASE_URL can override runtime selection.

{
  "ai": {
    "provider": "anthropic",
    "model": "claude-sonnet-4-5",
    "apiKeyEnv": "ANTHROPIC_API_KEY",
    "baseUrl": "https://api.anthropic.com",
    "authMode": "api-key"
  }
}

Provider setup order

Most common choices are listed first; the rest are alphabetical.

| Provider | Env var | Base URL | Notes | | --- | --- | --- | --- | | OpenAI | OPENAI_API_KEY | https://api.openai.com/v1 | API key via bearer auth. | | Anthropic | ANTHROPIC_API_KEY | https://api.anthropic.com | API key via x-api-key; authMode: "headless" reserves Workload Identity Federation config. | | Gemini | GEMINI_API_KEY | https://generativelanguage.googleapis.com | API key for Gemini API; Vertex ADC is future config work. | | OpenRouter | OPENROUTER_API_KEY | https://openrouter.ai/api/v1 | OpenAI-compatible chat and embedding surface; authMode: "headless" reserves OAuth config. | | Ollama | none | http://localhost:11434 | Local-first default candidate; no API key for local daemon. | | Amazon Bedrock | BEDROCK_API_KEY | region-specific https://bedrock-mantle.<region>.api.aws/v1 | OpenAI-compatible API-key path; authMode: "headless" reserves IAM/temporary credential config. | | Azure OpenAI | AZURE_OPENAI_API_KEY | resource-specific | Planned. authMode: "headless" reserves Microsoft Entra ID config. | | Cerebras | CEREBRAS_API_KEY | https://api.cerebras.ai/v1 | OpenAI-compatible chat surface. | | Cohere | COHERE_API_KEY | https://api.cohere.com | Planned native provider. | | Custom OpenAI-compatible | user-defined | user-defined | Set provider: "custom" and provide baseUrl. | | DeepSeek | DEEPSEEK_API_KEY | https://api.deepseek.com | OpenAI-compatible chat surface. | | Fireworks AI | FIREWORKS_API_KEY | https://api.fireworks.ai/inference/v1 | OpenAI-compatible chat surface. | | Groq | GROQ_API_KEY | https://api.groq.com/openai/v1 | OpenAI-compatible chat surface. | | Kilo Gateway | KILO_API_KEY | https://api.kilo.ai/api/gateway | Gateway for Kimi, MiniMax, DeepSeek, Grok, Qwen, Claude, GPT, Gemini, and more. | | LM Studio | LM_STUDIO_API_KEY | http://localhost:1234/v1 | Local OpenAI-compatible server; API key is optional. | | MiniMax | MINIMAX_API_KEY | https://api.minimax.io/v1 | OpenAI-compatible MiniMax models. | | Mistral | MISTRAL_API_KEY | https://api.mistral.ai/v1 | OpenAI-compatible chat and embedding surface. | | Moonshot Kimi | MOONSHOT_API_KEY | https://api.moonshot.ai/v1 | OpenAI-compatible Kimi/Kimi K2 models. | | Perplexity | PERPLEXITY_API_KEY | https://api.perplexity.ai | OpenAI-compatible chat surface with search-oriented models. | | Together AI | TOGETHER_API_KEY | https://api.together.xyz/v1 | OpenAI-compatible hosted open models. | | Vertex AI | ADC | region/project-specific | Planned headless auth via Google Application Default Credentials. | | xAI Grok | XAI_API_KEY | https://api.x.ai/v1 | OpenAI-compatible Grok models. |