npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

gemini-file-search-cli

v1.1.0

Published

CLI tool for managing Google Gemini File Search stores - upload files, query with RAG, and manage document metadata

Downloads

283

Readme

gemini-file-search-cli

A CLI tool for managing Google Gemini File Search stores. Upload files, query with RAG (Retrieval Augmented Generation), and manage document metadata.

Features

  • Store Management: Create, list, and delete File Search stores
  • File Upload: Upload files and directories with automatic MIME type detection
  • Mbox Support: Special handling for mbox email archives with metadata extraction
  • Glob Patterns: Upload specific files from directories using glob patterns
  • RAG Queries: Query your documents using natural language with Gemini models
  • Metadata Filtering: Filter queries by custom metadata (year, author, etc.)

Installation

From npm

bun install -g gemini-file-search-cli
# or
npm install -g gemini-file-search-cli

From source

git clone https://github.com/ozanturksever/gemini-file-search-cli.git
cd gemini-file-search-cli
bun install
bun link

Requirements

  • Bun runtime (v1.0.0+)
  • Google Gemini API key

Setup

Set your Gemini API key as an environment variable:

export GEMINI_API_KEY=your_api_key_here

You can get an API key from Google AI Studio.

Usage

Store Management

# List all stores
gemini-file-search stores list

# Create a new store
gemini-file-search stores create my-docs

# Delete a store
gemini-file-search stores delete my-docs

Uploading Files

# Upload a single file
gemini-file-search upload ./document.pdf --store my-docs

# Upload a directory (recursive)
gemini-file-search upload ./docs --store my-docs

# Upload with glob pattern
gemini-file-search upload ./src --store my-code --glob "**/*.ts"

# Upload mbox email archive (extracts individual emails)
gemini-file-search upload ./archive.mbox --store my-emails

Managing Files

# List files in a store
gemini-file-search files list my-docs

# Delete files by metadata filter
gemini-file-search files delete my-docs --filter source_filename=old.pdf

Querying

# Basic query
gemini-file-search query my-docs "What are the main topics discussed?"

# Query with specific model
gemini-file-search query my-docs "Summarize the key points" --model gemini-2.5-pro

# Query with metadata filter
gemini-file-search query my-emails "emails about meetings" --filter year=2024

Supported File Types

The tool supports a wide range of file types including:

  • Documents: PDF, Word, Excel, PowerPoint
  • Code: TypeScript, JavaScript, Python, Java, and many more
  • Text: Markdown, plain text, HTML, XML, JSON
  • Email: mbox archives (with special processing)

See the Gemini File Search documentation for the full list.

Metadata

When uploading files, the tool automatically adds metadata:

  • directory: The source directory path

For mbox files, additional metadata is extracted:

  • from_email: Sender email address
  • to_email: Recipient email addresses
  • participants: All email participants (to, cc, bcc)
  • year: Year the email was sent
  • month: Month the email was sent
  • source_filename: Original mbox filename

Models

Supported models for querying:

  • gemini-3-pro-preview (default)
  • gemini-2.5-flash
  • gemini-2.5-flash-lite
  • gemini-2.5-pro

License

MIT