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

conan-skill-gmail

v1.0.0

Published

Gmail skill for Conan AI — read, send, reply, forward, delete, search emails via Google OAuth

Readme

conan-skill-gmail

Gmail skill for Conan AI — read, send, reply, forward, delete, and search emails.

npm License: MIT

You: read my latest emails
Conan: Latest 5 INBOX emails:

• [id:18e4a1c3f2b] From: [email protected]
  Subject: Q1 Report Review
  Date: Sat, 14 Mar 2026 09:00:00 +0200
  Preview: Please review the attached Q1 report before Monday's meeting...

You: reply to that email — tell him I'll review it by Sunday
Conan: ✅ Reply sent successfully to [email protected].

You: search for emails from OpenAI
Conan: Search results for "from:openai.com" (newest first): ...

Install

conan skill install conan-skill-gmail

Setup

1. Create Google OAuth credentials

  1. Go to Google Cloud Console
  2. Create a project → Enable Gmail API
  3. Go to APIs & Services → Credentials → Create Credentials → OAuth 2.0 Client ID
  4. Application type: Desktop app
  5. Add redirect URI: http://localhost:9854/callback
  6. Copy the Client ID and Client Secret

2. Configure Conan

conan config set googleClientId YOUR_CLIENT_ID
conan config set googleClientSecret YOUR_CLIENT_SECRET

3. Connect your Gmail account

conan-gmail-auth

This opens your browser for Google sign-in. After approving, your Gmail is connected and tokens are saved locally in ~/.conan/config.json.


Actions

| Action | What it does | |---|---| | read | Fetch recent emails from inbox/sent/spam | | send | Compose and send a new email | | reply | Reply to an email — stays in the same thread | | forward | Forward an email to a new recipient | | delete | Move email to Trash (recoverable for 30 days) | | search | Search with Gmail query syntax |

Usage

Just ask naturally — Conan picks the right action:

"read my latest 10 emails"
"any emails from [email protected]?"
"send an email to [email protected] about the meeting tomorrow"
"reply to the last email from my boss"
"forward the invoice email to [email protected]"
"delete that spam email"
"search for emails with subject invoice from last month"

Search syntax

Conan supports Gmail's full query syntax:

from:[email protected]
subject:invoice
after:2026/01/01
before:2026/03/01
has:attachment
label:important

Privacy

  • Tokens stored locally in ~/.conan/config.json
  • Email content sent only to your configured LLM (OpenAI / Anthropic / OpenRouter)
  • Nothing stored on any external server

License

MIT · Amr Lotfy