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

@ironcode-ai/telegram

v1.20.7

Published

Telegram bot integration for ironcode. Send messages from Telegram to run an AI coding agent on your machine — tool calls, file edits, and responses stream back in real-time.

Readme

@ironcode-ai/telegram

Telegram bot integration for ironcode. Send messages from Telegram to run an AI coding agent on your machine — tool calls, file edits, and responses stream back in real-time.

Requirements

Installation

1. Install ironcode-ai CLI

bun install -g ironcode-ai

2. Authenticate a provider

ironcode auth login            # GitHub Copilot (recommended)
ironcode auth login anthropic  # Anthropic
ironcode auth login openai     # OpenAI

List available models:

ironcode models

3. Create a Telegram Bot

  1. Open Telegram → search for @BotFather
  2. Send /newbot → follow prompts → copy the Bot Token

4. Install ironcode-telegram

bun install -g @ironcode-ai/telegram

5. Configure

ironcode-telegram setup
# Bot Token (from @BotFather): ****
# Model [github-copilot/claude-sonnet-4.6]:
# ✅ Config saved to ~/.config/ironcode/telegram.json

Config is stored at ~/.config/ironcode/telegram.json:

{
  "token": "your-bot-token",
  "model": "github-copilot/claude-sonnet-4.6"
}

6. Run

# cd into the repo you want the agent to work on
cd /path/to/your/project

ironcode-telegram

The agent runs with the current directory as its working directory, so it can read and edit files in your project.

Bot Commands

| Command | Description | | ----------- | --------------------------------------------------------- | | /sessions | List recent sessions — tap to switch | | /new | Start a new session | | /info | Show current session details (title, ID, file changes) | | /init | Analyze the project and create an AGENTS.md config file | | /diff | Show all file changes made in the current session | | /start | Show help |

How It Works

You send a message
  → Bot shows 🤔 Thinking... while the agent starts up
  → Bot creates/resumes an ironcode session on your machine
  → Agent reads/writes files, runs bash, calls LLM
  → Each completed tool call is sent as a separate message
  → Text response is streamed live by editing the placeholder
  → Final response replaces the placeholder when done

Each chat (DM, group, or group thread) gets its own independent session. Use /sessions to switch between them.

Upload Support

The bot supports multiple file types for code analysis and generation:

📸 Images (Photos)

  • Screenshots — UI bugs, design mockups, error messages
  • Diagrams — Architecture diagrams, flowcharts, wireframes
  • Code screenshots — OCR extraction and conversion
  • Send as single image or multiple images as album

📄 Documents

  • Code files.js, .ts, .py, .java, etc.
  • Text files.txt, .md, .json, .xml
  • PDFs — Technical docs, API specs
  • Archives.zip files (extracted and analyzed)
  • Max file size: 20MB per file

🎤 Voice Messages

  • Transcribed using Groq Whisper API
  • Requires Groq API key in config
  • Perfect for hands-free coding instructions

Usage:

  1. Send a photo/file/voice message (optionally with caption)
  2. Bot downloads and processes it
  3. AI agent analyzes and responds based on content

Examples:

  • Send screenshot of error → "Fix this bug"
  • Upload .py file → "Add type hints and docstrings"
  • Send multiple images → "Compare these UI designs"
  • Voice message → "Refactor the user auth module"

Session Management

  • Automatic: Each chat automatically gets its own session on first message.
  • Switch: /sessions shows the 10 most recent sessions with an inline keyboard. Tap any to resume it.
  • New: /new clears the current slot — your next message starts a fresh session.
  • Persistent: Sessions and their file change history are preserved across bot restarts.