Token导航 LogoToken导航TokenDH.com
开发可写文件github未标认证来源可访问许可证需确认审计通过

gemini-batchGemini batch 命令行

Agent Skill

gemini-batch 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

285

周安装

12

GitHub Stars

1

下载量

1
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:gemini-batch(Gemini batch 命令行)
来源仓库:https://github.com/akrindev/google-studio-skills
仓库路径:skills/gemini-batch
安装命令:
npx skills add https://github.com/akrindev/google-studio-skills --skill gemini-batch
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/akrindev/google-studio-skills --skill gemini-batch

简介

用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在需要围绕仓库状态、代码变更或协作事项进行整理时使用。
  • 可结合来源仓库和原始 README 进一步核验具体用法。
  • 安装方式:通过 npx skills add 命令从指定仓库添加技能。
  • 建议确认权限范围、维护状态,以及是否会触发联网或文件读写操作。

SKILL.md

Gemini Batch Processing

Process large volumes of requests efficiently using Gemini Batch API through executable scripts for cost savings and high throughput.

When to Use This Skill

Use this skill when you need to:

  • Process hundreds/thousands of requests
  • Generate content in bulk (blogs, emails, descriptions)
  • Reduce costs for high-volume tasks
  • Run async jobs without blocking
  • Process large datasets with AI
  • Generate multiple documents at once
  • Create scalable content pipelines
  • Process requests that don't need real-time responses

Available Scripts

scripts/create_batch.js

Purpose: Create a batch job from a JSONL file

When to use:

  • Starting any batch processing task
  • Uploading multiple requests for processing
  • Creating async jobs for large workloads

Key parameters:

ParameterDescriptionExample
input_fileJSONL file path (required)requests.jsonl
--model, -mModel to usegemini-3-flash-preview
--name, -nDisplay name for job"my-batch-job"

Output: Job name/ID to track with check_status.js

scripts/check_status.js

Purpose: Monitor batch job progress and completion

When to use:

  • Checking if a batch job is complete
  • Polling job status until finished
  • Monitoring async job execution

Key parameters:

ParameterDescriptionExample
job_nameBatch job name/ID (required)batches/abc123
--wait, -wPoll until completionFlag

Output: Job status and final state

scripts/get_results.js

Purpose: Retrieve completed batch job results

When to use:

  • Downloading completed batch results
  • Parsing batch job output
  • Extracting generated content

Key parameters:

ParameterDescriptionExample
job_nameBatch job name/ID (required)batches/abc123
--output, -oOutput file pathresults.jsonl

Output: Results content or file

Workflows

Workflow 1: Basic Batch Processing

# 1. Create JSONL file
echo '{"key": "req1", "request": {"contents": [{"parts": [{"text": "Explain photosynthesis"}]}]}}' > requests.jsonl
echo '{"key": "req2", "request": {"contents": [{"parts": [{"text": "What is gravity?"}]}}]}' >> requests.jsonl

# 2. Create batch job
node scripts/create_batch.js requests.jsonl --name "science-questions"

# 3. Check status
node scripts/check_status.js <job-name> --wait

# 4. Get results
node scripts/get_results.js <job-name> --output results.jsonl
  • Best for: Basic bulk processing, cost efficiency
  • Typical time: Minutes to hours depending on job size

Workflow 2: Bulk Content Generation

# 1. Generate JSONL with content requests
python3 << 'EOF'
import json

topics = ["sustainable energy", "AI in healthcare", "space exploration"]
with open("content-requests.jsonl", "w") as f:
    for i, topic in enumerate(topics):
        req = {
            "key": f"blog-{i}",
            "request": {
                "contents": [{
                    "parts": [{
                        "text": f"Write a 500-word blog post about {topic}"
                    }]
                }]
            }
        }
        f.write(json.dumps(req) + "\n")
EOF

# 2. Process batch
node scripts/create_batch.js content-requests.jsonl --name "blog-posts" --model gemini-3-flash-preview
node scripts/check_status.js <job-name> --wait
node scripts/get_results.js <job-name> --output blog-posts.jsonl
  • Best for: Blog generation, article creation, bulk writing
  • Combines with: gemini-text for content needs

Workflow 3: Dataset Processing

# 1. Load dataset and create batch requests
python3 << 'EOF'
import json

# Your dataset
data = [
    {"product": "laptop", "features": ["fast", "lightweight"]},
    {"product": "headphones", "features": ["wireless", "noise-cancelling"]},
]

with open("product-descriptions.jsonl", "w") as f:
    for item in data:
        features = ", ".join(item["features"])
        prompt = f"Write a product description for {item['product']} with these features: {features}"
        req = {
            "key": item["product"],
            "request": {
                "contents": [{"parts": [{"text": prompt}]}]
            }
        }
        f.write(json.dumps(req) + "\n")
EOF

# 2. Process
node scripts/create_batch.js product-descriptions.jsonl
node scripts/check_status.js <job-name> --wait
node scripts/get_results.js <job-name> --output results.jsonl
  • Best for: Product descriptions, dataset enrichment, bulk analysis

Workflow 4: Email Campaign Generation

# 1. Create personalized email requests
python3 << 'EOF'
import json

customers = [
    {"name": "Alice", "product": "premium plan"},
    {"name": "Bob", "product": "basic plan"},
]

with open("emails.jsonl", "w") as f:
    for cust in customers:
        prompt = f"Write a personalized email to {cust['name']} about upgrading to our {cust['product']}"
        req = {
            "key": f"email-{cust['name'].lower()}",
            "request": {
                "contents": [{"parts": [{"text": prompt}]}]
            }
        }
        f.write(json.dumps(req) + "\n")
EOF

# 2. Process batch
node scripts/create_batch.js emails.jsonl --name "email-campaign"
node scripts/check_status.js <job-name> --wait
node scripts/get_results.js <job-name> --output email-results.jsonl
  • Best for: Marketing campaigns, personalized outreach
  • Combines with: gemini-text for email content

Workflow 5: Async Job Monitoring

# 1. Create job
node scripts/create_batch.js large-batch.jsonl --name "big-job"

# 2. Check status periodically (non-blocking)
while true; do
    node scripts/check_status.js <job-name>
    sleep 60  # Check every minute
done

# 3. Get results when done
node scripts/get_results.js <job-name> --output final-results.jsonl
  • Best for: Long-running jobs, background processing
  • Use when: You don't need immediate results

Workflow 6: Cost-Optimized Bulk Processing

# 1. Use flash model for cost efficiency
node scripts/create_batch.js requests.jsonl --model gemini-3-flash-preview --name "cost-optimized"

# 2. Monitor and retrieve
node scripts/check_status.js <job-name> --wait
node scripts/get_results.js <job-name>
  • Best for: High-volume, cost-sensitive applications
  • Savings: Batch API typically 50%+ cheaper than real-time

Workflow 7: Multi-Stage Pipeline

# Stage 1: Generate content
node scripts/create_batch.js content-requests.jsonl --name "stage1-content"
node scripts/check_status.js <job1> --wait

# Stage 2: Summarize content
node scripts/create_batch.js summaries.jsonl --name "stage2-summaries"
node scripts/check_status.js <job2> --wait

# Stage 3: Convert to audio (gemini-tts)
# Process results from stage 2
  • Best for: Complex workflows, multi-step processing
  • Combines with: Other Gemini skills for complete pipelines

Parameters Reference

JSONL Format

Each line is a separate JSON object:

{
  "key": "unique-identifier",
  "request": {
    "contents": [
      {
        "parts": [
          {
            "text": "Your prompt here"
          }
        ]
      }
    ]
  }
}

Model Selection

ModelBest ForCostSpeed
gemini-3-flash-previewGeneral bulk processingLowestFast
gemini-3-pro-previewComplex reasoning tasksMediumMedium
gemini-2.5-flashStable, reliableLowFast
gemini-2.5-proCode/math/STEMMediumSlow

Job States

StateDescription
JOB_STATE_PENDINGJob queued, waiting to start
JOB_STATE_RUNNINGJob actively processing
JOB_STATE_SUCCEEDEDJob completed successfully
JOB_STATE_FAILEDJob failed (check error message)
JOB_STATE_CANCELLEDJob was cancelled
JOB_STATE_EXPIREDJob timed out

Size Limits

MethodMax SizeBest For
File uploadUnlimitedLarge batches (recommended)
Inline requests<20MBSmall batches

Output Interpretation

Results JSONL

Each line contains:

{
  "key": "your-identifier",
  "response": {
    "text": "Generated content here..."
  }
}

Error Handling

  • Failed requests appear in results with error information
  • Check for error field in response
  • Partial failures don't stop entire job

Result Access

  • Use --output to save to file
  • Script prints preview of results
  • Parse JSONL line by line for processing

Common Issues

"google-genai not installed"

npm install @google/genai@latest dotenv@latest

"JSONL file not found"

  • Verify file path is correct
  • Check file extension is .jsonl (not .json)
  • Use absolute paths if relative paths fail

"Invalid JSONL format"

  • Each line must be valid JSON
  • No trailing commas between objects
  • Check for syntax errors in JSON
  • Use JSON validator if unsure

"Job failed"

  • Check error message in status
  • Verify request format is correct
  • Check model availability
  • Review API quota limits

"No results found"

  • Ensure job state is JOB_STATE_SUCCEEDED
  • Wait for job completion before retrieving
  • Check job status first with check_status.js

"Processing stuck in RUNNING state"

  • Large jobs can take hours
  • Use --wait flag for automated polling
  • Check job size and model choice
  • Contact support if stuck >24 hours

Best Practices

JSONL Creation

  • Use unique keys for each request
  • Validate JSON before uploading
  • Test with small batch first (5-10 requests)
  • Include error handling in your scripts

Job Management

  • Use descriptive display names (--name)
  • Save job names for tracking
  • Monitor status before retrieving results
  • Keep backup of original JSONL file

Performance Optimization

  • Use flash models for cost efficiency
  • Batch as many requests as possible
  • File upload preferred over inline
  • Process during off-peak hours if timing sensitive

Error Handling

  • Check for failed requests in results
  • Retry failed requests individually
  • Log job names for audit trails
  • Validate output format before use

Cost Management

  • Batch API is 50%+ cheaper than real-time
  • Use flash models when possible
  • Monitor token usage
  • Process in chunks if quota limited

Related Skills

  • gemini-text: Generate individual text requests
  • gemini-image: Batch image generation
  • gemini-tts: Batch audio generation
  • gemini-embeddings: Batch embedding creation

Quick Reference

# Basic workflow
node scripts/create_batch.js requests.jsonl
node scripts/check_status.js <job-name> --wait
node scripts/get_results.js <job-name> --output results.jsonl

# With model and name
node scripts/create_batch.js requests.jsonl --model gemini-3-flash-preview --name "my-job"

# Create JSONL programmatically
echo '{"key":"1","request":{"contents":[{"parts":[{"text":"Prompt"}]}]}}' > batch.jsonl

Reference

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

39.31%
按下载量换算0

Claude

29.26%
按下载量换算0

Cursor

17.74%
按下载量换算0

Gemini CLI

10.48%
按下载量换算0

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

可写文件

该 Skill 可能写入或修改本地文件,使用前需要确认目标目录和修改范围。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills