Back to list
aos

kagi-search

by aos

dotfiles + systems using nix

6🍴 0📅 Jan 21, 2026

SKILL.md


name: kagi-search description: Web search via Kagi. Use when specifically asked to search Kagi, or when needing to find current information, documentation, facts, or web content. Returns search results and Quick Answers.

Kagi Search

Search the web using Kagi. Returns search results with titles, URLs, snippets, and optionally a Quick Answer summary with references.

Setup

Requires kagi-search CLI in PATH

Usage

# Human-readable output (colored, hyperlinked)
kagi-search "query"

# JSON output (for programmatic use)
kagi-search --json "query"

# Limit results (default: 10)
kagi-search -n 5 "query"

# Read query from stdin
echo "query" | kagi-search

# Debug mode (logs to stderr)
kagi-search -d "query"

JSON Output Format

{
  "results": [
    {
      "title": "Page Title",
      "url": "https://example.com",
      "snippet": "Description text..."
    }
  ],
  "quick_answer": {
    "markdown": "Formatted answer...",
    "raw_text": "Plain text answer...",
    "references": [
      { "title": "Source", "url": "https://..." }
    ]
  }
}

Workflow

  1. Run kagi-search --json "query"
  2. Parse JSON response
  3. Check quick_answer first - often has the direct answer with citations
  4. Use results array for detailed sources and additional context

Score

Total Score

50/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon