gemini

Runs one-shot Q&A and summarization prompts via a Node.js Gemini CLI.

1|1|Updated Dec 21, 2025
One-click install
npx skills add https://github.com/Kjdragan/universal_agent --skill gemini-kjdragan
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: gemini
Source: https://github.com/Kjdragan/universal_agent/tree/main/.claude/skills/gemini
Command: npx skills add https://github.com/Kjdragan/universal_agent --skill gemini-kjdragan

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Gemini provides a fast, non-interactive CLI for one-shot Q&A, summaries, and generation, removing the need for multi-step prompts or interactive prompts.

Core Features & Use Cases

  • One-shot Q&A and summarization with a simple CLI.
  • Flexible model selection and JSON output for automation.
  • Use case: quickly generate a summary of an article or answer a question from a prompt without opening a UI.

Quick Start

gemini "Answer this question..." gemini --model <name> "Prompt..." gemini --output-format json "Return JSON"

Frequently Asked Questions about gemini

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I generate text summaries from the command line without an interactive prompt?

Command-line text summaries without interactive prompts are produced by passing a one-shot prompt string directly to a lightweight CLI. This removes the need for multi-step UI interactions and instantly returns a response in your terminal.

Can I use Node.js to automate Gemini Q&A and return JSON output?

Yes, you can automate Gemini Q&A in Node.js by specifying JSON as the output format in your CLI command. This enables seamless integration of one-shot prompts and generated summaries directly into existing development workflows.

What is a one-shot prompt in a CLI and when do I need it for automation?

A one-shot prompt in a CLI executes a single command to get an immediate response without follow-up interactions. You need it for automation when integrating fast Q&A or text generation directly into non-interactive development workflows.

Do I need Node.js installed to run one-shot Gemini prompts for automation?

Yes, you need Node.js installed along with the npm Gemini CLI package to run one-shot prompts in non-interactive contexts. This lightweight setup provides the required environment for terminal-based Q&A and summarization.

What's the best way to switch models for CLI-based text generation in automation?

Switching models for CLI-based text generation is done by passing a model selection flag with your one-shot prompt. This allows you to adjust the generation behavior and output quality directly within your automated development workflows.