JSPM

gemini-cli-sidx1fork

1.0.4
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 13
  • Score
    100M100P100Q23846F
  • License Apache-2.0

Fork of Google's Gemini CLI by sidx1. CLI tool for accessing Gemini AI with enhancements by sidx1.

Package Exports

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (gemini-cli-sidx1fork) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    Readme

    Gemini CLI - sidx1fork

    Gemini CLI CI

    Gemini CLI Screenshot

    This is my fork of the Gemini CLI. It's a command-line AI that hooks into your tools, understands your code, and (hopefully) makes your life easier.

    It lets you:

    • Work with codebases bigger than Gemini's 1M token context window.
    • Build apps from PDFs or sketches.
    • Automate boring stuff like pull requests.
    • Connect to MCP servers for more tools.
    • Use Google Search to ground your queries so it doesn't just make stuff up.

    Installation

    The Right Way (npm)

    If you just want to use the tool, this is all you need. Don't overcomplicate it.

    npm install -g gemini-cli-sidx1fork

    Now run it:

    sidx1chat

    Sign in with your Google account when it asks. Done.

    For Developers (Manual Build) or legacy version

    Only do this if you plan on messing with the code.

    1. Clone the repo:
      git clone https://github.com/sidx1-scratch/gemini-cli-sidx1fork.git
      cd gemini-cli-sidx1fork
    2. Install dependencies and build:
      npm install
      npm run build
    3. Link the CLI to your system:
      npm link
    4. Run it:
      sidx1chat

    Using Your Own API Key

    If you have your own Gemini API key from Google AI Studio, you can use it. This gives you more control and higher rate limits.

    On Linux/macOS:

    export GEMINI_API_KEY="YOUR_API_KEY"

    On Windows (PowerShell):

    $env:GEMINI_API_KEY="YOUR_API_KEY"

    What You Can Do

    Start a new project:

    mkdir my-new-app
    cd my-new-app
    gemini
    > Write me a Discord bot in Python that answers questions from a FAQ.md file.

    Work on an existing repo:

    git clone some-repo
    cd some-repo
    gemini
    > Summarize all the changes made yesterday.
    > Draft a fix for GitHub issue #123.
    > Convert all JPG images in this directory to PNG.

    Troubleshooting & Uninstall