Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
ai-driven-school avatar

Research

  • 1 installs
  • Updated June 6, 2026
  • ai-driven-school/aiki

research is a Claude Code skill that conducts technical research using the Gemini CLI and produces comparison reports with recommendations and code examples.

About

research is a Claude Code skill (documented in Japanese) that runs a technical research question through the Gemini CLI and writes a structured report. A developer uses /research "<topic>" to evaluate technologies or compare libraries. The output includes an overview, options, a comparison table, best practices, code examples, and references saved to docs/research/{topic}.md.

  • Delegates technical research questions to the Gemini CLI
  • Produces a comparison report with options, pros/cons, and code examples
  • Writes the report to docs/research/{topic}.md

Research by the numbers

  • 1 all-time installs (skills.sh)
  • Ranked #2,479 of 3,282 Productivity & Planning skills by installs in the Skillselion catalog
  • Data as of Jul 7, 2026 (Skillselion catalog sync)
At a glance

research capabilities & compatibility

Uses the Gemini CLI, described as free to use.

Capabilities
technical research · technology comparison
Use cases
research
From the docs

What research says it does

Conduct technical research using Gemini CLI, producing comparison reports with recommendations and code examples. Use when evaluating technologies, comparing libraries, or running /research.
SKILL.md
Gemini CLIは **無料** で利用可能
SKILL.md
npx skills add https://github.com/ai-driven-school/aiki --skill research

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs1
Last updatedJune 6, 2026
Repositoryai-driven-school/aiki

What it does

Research a technical topic via Gemini CLI and produce a comparison report with recommendations and code examples.

Who is it for?

Comparing technologies or libraries and getting a written recommendation before choosing.

Skip if: Writing production code or defining feature requirements.

When should I use this skill?

When evaluating technologies, comparing libraries, or running /research.

What you get

A docs/research/{topic}.md report with a comparison table, best practices, and code examples.

  • docs/research/{topic}.md comparison report

Files

SKILL.mdMarkdownGitHub ↗

/research スキル

技術的な質問をGeminiでリサーチし、レポートを生成します。

使用方法

/research "Next.js App Routerのベストプラクティス"
/research "JWT vs Session認証の比較"
/research "Tailwind CSS v4の新機能"

実行フロー

[1] 質問の整形
    └─ リサーチ用プロンプト生成

[2] Geminiに委譲
    └─ gemini -p "..." --yolo

[3] レポート生成
    └─ docs/research/{topic}.md

Gemini委譲コマンド

gemini -p "
以下の技術トピックについて詳細にリサーチし、レポートを作成してください。

【トピック】
{質問}

【リサーチ観点】
1. 概要・背景
2. 主要な選択肢/アプローチ
3. 比較表(該当する場合)
4. ベストプラクティス
5. 実装例(コード)
6. 参考リソース

【出力要件】
- Markdown形式
- コード例は実用的なもの
- 最新の情報を反映(2024年時点)
- 日本語で出力
" --yolo

出力テンプレート

# リサーチ: {トピック}

**調査日**: {YYYY-MM-DD}
**調査者**: Gemini CLI

---

## 1. 概要

{トピックの概要説明}

### 背景

{なぜこのトピックが重要か}

---

## 2. 主要な選択肢

### 選択肢A: {名前}

**概要**: {説明}

**メリット**:
- {メリット1}
- {メリット2}

**デメリット**:
- {デメリット1}
- {デメリット2}

### 選択肢B: {名前}

...

---

## 3. 比較表

| 観点 | 選択肢A | 選択肢B | 選択肢C |
|------|---------|---------|---------|
| {観点1} | {評価} | {評価} | {評価} |
| {観点2} | {評価} | {評価} | {評価} |
| {観点3} | {評価} | {評価} | {評価} |

---

## 4. ベストプラクティス

### 推奨アプローチ

{推奨する選択肢とその理由}

### 避けるべきパターン

- {アンチパターン1}
- {アンチパターン2}

---

## 5. 実装例

### 基本的な実装

// {説明} {コード例}


### 応用例

// {説明} {コード例}


---

## 6. 参考リソース

- [{タイトル1}]({URL})
- [{タイトル2}]({URL})
- [{タイトル3}]({URL})

---

## 結論

{総括と推奨事項}

出力例

> /research "JWT vs Session認証の比較"

🔬 リサーチ中... (Gemini)

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
🚀 Gemini でリサーチ中...
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

[Gemini] 情報を収集中...
[Gemini] 比較分析中...
[Gemini] レポートを生成中...

━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
📄 docs/research/jwt-vs-session.md を作成しました
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

# リサーチ: JWT vs Session認証の比較

## 比較サマリー

| 観点 | JWT | Session |
|------|-----|---------|
| スケーラビリティ | ✅ 優秀 | ⚠️ 要Redis |
| セキュリティ | ⚠️ 要注意 | ✅ 優秀 |
| 実装複雑度 | 中 | 低 |
| モバイル対応 | ✅ 最適 | ⚠️ Cookie依存 |

## 結論

- **SPA/モバイル**: JWT推奨
- **従来型Web**: Session推奨
- **ハイブリッド**: JWTをRefresh Tokenで管理

詳細は docs/research/jwt-vs-session.md を参照

活用シーン

  • 技術選定時の比較調査
  • 新技術のキャッチアップ
  • ベストプラクティスの確認
  • 実装方法の調査

注意事項

  • Gemini CLIは 無料 で利用可能
  • 最新情報は公式ドキュメントで再確認を推奨
  • コード例は動作確認してから使用

Related skills

FAQ

What tool does the research skill use?

It delegates the research prompt to the Gemini CLI, which the skill notes is free to use.

What does the output look like?

A Markdown report with an overview, options, a comparison table, best practices, code examples, and references saved to docs/research/{topic}.md.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.