gemini
23
总安装量
21
周安装量
#15844
全站排名
安装命令
npx skills add https://github.com/junoh-moon/skills --skill gemini
Agent 安装分布
claude-code
18
codex
17
gemini-cli
16
opencode
16
antigravity
15
windsurf
14
Skill 文档
Gemini CLI
Commands
Use the wrapper script for streamlined interaction:
# New conversation
~/.agents/skills/gemini/gemini-chat.sh "your prompt here"
# Continue conversation (session_id from previous output)
~/.agents/skills/gemini/gemini-chat.sh --resume <session_id> "follow-up prompt"
The script:
- Streams output in real-time (no more waiting blindly)
- Shows retry/error info (429 ë±)
- Saves raw response to tmpfile for debugging
- Extracts session_id automatically
Examples
# Ask Gemini for code review
~/.agents/skills/gemini/gemini-chat.sh "Review this function for potential bugs: $(cat src/utils.ts)"
# Follow up (use session_id from previous output)
~/.agents/skills/gemini/gemini-chat.sh --resume abc-123 "How would you refactor it?"
# Leverage Google Search grounding
~/.agents/skills/gemini/gemini-chat.sh "What are the latest changes in TypeScript 5.8?"
Raw CLI Usage (if needed)
tmpfile=$(mktemp)
echo "Response saved to: $tmpfile"
gemini --model auto-gemini-3 --approval-mode yolo "prompt" --output-format stream-json | tee "$tmpfile"
session_id=$(jq -rs 'last | .session_id' "$tmpfile")
Model Selection
Available --model options:
| Value | Description |
|---|---|
auto-gemini-3 |
기본ê°. gemini-3-pro, gemini-3-flash ì¤ ìë ì í |
auto-gemini-2.5 |
gemini-2.5-pro, gemini-2.5-flash ì¤ ìë ì í |
gemini-2.5-flash |
ì§ì ì§ì (ê°ì¥ ìì ì ) |
gemini-2.5-pro |
ì§ì ì§ì |
Quota Exhausted (429 ìë¬) ëì²
Gemini 3 quota ì´ê³¼ ì (429, MODEL_CAPACITY_EXHAUSTED, RESOURCE_EXHAUSTED):
# auto-gemini-2.5ë¡ fallback (2.5-pro ëë 2.5-flash ìë ì í)
~/.agents/skills/gemini/gemini-chat.sh --model auto-gemini-2.5 "your prompt"
Fallback ìì:
auto-gemini-3(기본) â Gemini 3 ê³ì´ ì¬ì©auto-gemini-2.5(fallback) â Gemini 2.5-pro/flash ì¤ ìë ì í
Notes
- Gemini automatically uses
google_web_searchwhen needed - Image analysis: include file path in prompt, Gemini reads via
read_file - Raw response file remains after execution for debugging