← スキル一覧に戻る

kagi-search
by aos
dotfiles + systems using nix
⭐ 6🍴 0📅 2026年1月21日
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
- Run
kagi-search --json "query" - Parse JSON response
- Check
quick_answerfirst - often has the direct answer with citations - Use
resultsarray for detailed sources and additional context
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓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
レビュー
💬
レビュー機能は近日公開予定です