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

gemini-claude-toolkit

v1.0.27

Published

A toolkit for Gemini-Claude collaboration, providing an MCP server and initialization command.

Readme

Gemini Claude Toolkit

The @kryonas/gemini-claude-toolkit is a command-line tool that enables a powerful, collaborative development workflow between the Gemini CLI and Claude. It allows Gemini to act as a high-level project architect, delegating coding tasks to Claude for implementation.

This toolkit is designed to be used with npx, which allows you to run it without a global installation.

Overview

The workflow is designed to be seamless:

  1. You issue a command to the Gemini CLI in your project.
  2. Gemini, guided by a gemini.md file, formulates a high-level plan.
  3. Gemini delegates the coding task to a local MCP server provided by this toolkit.
  4. The server uses the @anthropic-ai/claude-code CLI to have Claude generate the code.
  5. The final code is returned to you in the Gemini CLI.

Getting Started

Follow these steps to set up and use the Gemini Claude Toolkit.

Prerequisites

Before you begin, make sure you have the following:

  • Node.js: Download and install Node.js (version 18 or higher), which includes npx.
  • Claude Code CLI: The official command-line tool for interacting with Claude.
    npm install -g @anthropic-ai/claude-code
  • Anthropic API Key: You'll need an API key from Anthropic. You can get one from the Anthropic Console.

Step 1: Set Your Anthropic API Key

Make your Anthropic API key available as an environment variable.

export ANTHROPIC_API_KEY="your-anthropic-api-key"

To make this setting permanent, add the line to your shell's configuration file (e.g., ~/.zshrc or ~/.bashrc).

Step 2: Initialize Your Project

In the root directory of your project, run the following command:

npx @kryonas/gemini-claude-toolkit init

This command creates a gemini.md file in your project. This file contains instructions that guide Gemini to act as a project architect, delegating coding tasks to Claude.

Step 3: Configure the Gemini CLI

You need to tell the Gemini CLI to use the MCP server from this toolkit. Add the following configuration to your Gemini CLI's settings.json file (usually located at ~/.gemini/settings.json):

{
  "mcpServers": [
    {
      "name": "gemini-claude-server",
      "spec": {
        "type": "stdio",
        "command": ["npx", "@kryonas/gemini-claude-toolkit", "server"]
      }
    }
  ]
}