スキル一覧に戻る
junoh-moon

gemini

by junoh-moon

Agent skills for Claude Code and other AI coding assistants

0🍴 0📅 2026年1月22日
GitHubで見るManusで実行

SKILL.md


name: gemini description: Interact with Google's Gemini model via CLI. Use when needing a second opinion from another LLM, cross-validation, or leveraging Gemini's Google Search grounding. Supports multi-turn conversations with session management.

Gemini CLI

Commands

New conversation (ask)

gemini "your prompt here" --output-format json 2>/dev/null

Response includes session_id for follow-up:

{
  "session_id": "uuid-here",
  "response": "...",
  "stats": {...}
}

Continue conversation (reply)

gemini --resume <session_id> -p "follow-up prompt" --output-format json 2>/dev/null

Context from previous turns is preserved.

Examples

# Ask Gemini for code review
gemini "Review this function for potential bugs: $(cat src/utils.ts)" --output-format json 2>/dev/null | jq '{session_id, response}'

# Follow up on the same session
gemini --resume abc123-def456 -p "How would you refactor it?" --output-format json 2>/dev/null | jq '{session_id, response}'

# Leverage Google Search grounding
gemini "What are the latest changes in TypeScript 5.8?" --output-format json 2>/dev/null | jq '{session_id, response}'

Notes

  • Parse session_id from JSON response to enable reply
  • Gemini automatically uses google_web_search when needed
  • Image analysis: include file path in prompt, Gemini reads via read_file

スコア

総合スコア

45/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
言語

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

0/5
タグ

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

0/5

レビュー

💬

レビュー機能は近日公開予定です