kirha logo

Kirha Skill

Kirha gives your agent wings. One Skill, one auth, the right context for every query from the largest network of S-tier data providers.

GitHubkirha-ai/kirha-skill

3

How it works

The Skill wraps the Kirha CLI with intelligent agent logic.

  1. Discovery: runs kirha discovery verticals list to learn available data sources at runtime
  2. Selection: picks the best vertical for your query automatically
  3. Refinement: rewrites your question into a precise, data-specific query
  4. Search: executes kirha search or kirha task with the right flags
  5. Synthesis: parses the JSON response and formats a human-readable answer

No hardcoded data sources. Coverage grows as new providers join the platform.

Setup

Install the Kirha CLI

curl -fsSL https://cli.kirha.com/install.sh | sh

See the CLI docs for alternative install methods and full reference.

Authenticate

Get an API key from app.kirha.com, then:

kirha auth login --api-key <YOUR_API_KEY>

Install

kirha skills install --yes

Auto-detects your agent. Target a specific one with:

kirha skills install --agent claude-code --yes
npx skills add kirha/kirha-skill

Install for all projects:

git clone https://github.com/kirha-ai/kirha-skill.git ~/.claude/skills/kirha-skill

Install for the current project only:

git clone https://github.com/kirha-ai/kirha-skill.git .claude/skills/kirha-skill

Usage

Invoke the skill explicitly in your agent:

/kirha What's the current price of Bitcoin?

The agent may also trigger the skill automatically when it detects a question that would benefit from authoritative data.

Examples

/kirha List the top 10 wallets holding USDC on Base
/kirha Find the 5 latest SEC filings for Nvidia
/kirha What are the latest CVEs affecting OpenSSL?

When to use the skill vs other tools

ScenarioBest tool
Real-time pricing, on-chain data, official recordsKirha Skill
Fact-checking, verified claims, source attributionKirha Skill
General web browsing, opinions, forumsKirha Skill fallback to Web Search
Reading local files, running codeBuilt-in agent tools

Data providers are preferred over web search when accuracy, freshness, or source traceability matters.

Supported agents

  • Claude Code
  • Cursor
  • Cline
  • Codex
  • OpenCode
  • Droid
  • Gemini CLI
  • Windsurf
  • and many more

Run kirha skills install to see the full interactive list.

Deep research

For complex queries that require cross-referencing multiple sources, the Skill automatically falls back to kirha task run, which performs deep research over 2–3 minutes.

You can also request deep research explicitly:

/kirha Compare the AI strategies of Google, Microsoft, and Meta — use deep research

On this page