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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@quantiya/codevibe-gemini-plugin

v1.0.2

Published

Mobile companion for Gemini CLI - monitor and control your Gemini CLI sessions from your iPhone

Downloads

227

Readme

CodeVibe Gemini Plugin

Mobile companion for Gemini CLI - monitor and control your Gemini CLI sessions from your iPhone.

Overview

CodeVibe Gemini Plugin syncs your Gemini CLI sessions with the CodeVibe iOS app, allowing you to:

  • Approve or deny file edits from your phone - See file diffs before approving
  • View Gemini conversations on your phone in real-time
  • Send prompts to Gemini from your iPhone
  • Send image attachments from iOS (Gemini analyzes them)
  • Monitor multiple coding sessions from anywhere
  • Works alongside Claude Code sessions in the same app

Prerequisites

  • macOS (required for tmux integration)
  • Node.js 18+
  • tmux (brew install tmux)
  • Gemini CLI installed and authenticated
  • CodeVibe iOS app installed on your iPhone

Installation

npm install -g @quantiya/codevibe-gemini-plugin

From Source (Development)

git clone https://github.com/hendryyeh/quantiya-codevibe-gemini-plugin.git
cd quantiya-codevibe-gemini-plugin
npm install
npm run build

Usage

First Time Setup

# Authenticate with backend (opens browser for Sign in with Apple/Google)
codevibe-gemini login

# Check authentication status
codevibe-gemini status

Running the Plugin

# Start Gemini with mobile sync
codevibe-gemini

The plugin will automatically detect Gemini sessions and sync conversations to your iOS app.

CLI Commands

| Command | Description | |---------|-------------| | codevibe-gemini | Start Gemini with mobile sync | | codevibe-gemini login | Authenticate with backend | | codevibe-gemini logout | Clear stored credentials | | codevibe-gemini status | Show authentication status |

How It Works

This plugin uses Gemini CLI's hook system (available in stable releases since December 2025) combined with transcript file watching for complete coverage.

Hook Integration:

  1. BeforeTool - Captures tool approval requests, shows file diffs on iOS, waits for your approval
  2. AfterTool - Captures tool execution results
  3. SessionStart/SessionEnd - Manages session lifecycle

Transcript Watching:

  • Monitors ~/.gemini/tmp/*/chats/ for user prompts and assistant responses
  • Provides accurate timestamps for event ordering

Mobile Integration:

  • Receives prompts from iOS app via WebSocket subscriptions
  • Executes prompts using tmux send-keys (works even when screen is locked)

Known Limitations

  • macOS only: Requires tmux for terminal integration
  • Gemini CLI version: Hooks require December 2025+ stable release

Features

| Feature | Status | Notes | |---------|--------|-------| | Interactive prompts | ✅ Full | Approve/deny from iOS with file diff preview | | User prompts | ✅ Full | Real-time sync to iOS | | Assistant responses | ✅ Full | Real-time sync to iOS | | File diffs | ✅ Full | Preview changes before approving | | Tool results | ✅ Full | See what Gemini executed | | Image attachments | ✅ Full | Send images from iOS, uses @./path format | | Mobile prompts | ✅ Full | Send prompts from iOS, auto-submits |

Full feature parity with Claude Code plugin.

Related

License

MIT License - See LICENSE for details.

Support