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

@locusai/telegram

v0.9.14

Published

Telegram bot for Locus - remote control your AI agents from Telegram

Downloads

1,260

Readme

@locusai/telegram

Telegram bot for Locus - remote control your AI agents from Telegram.

Setup

1. Create a Telegram Bot

  1. Open Telegram and message @BotFather
  2. Send /newbot and follow the prompts
  3. Copy the bot token you receive

2. Get Your Chat ID

  1. Message your new bot in Telegram
  2. Visit https://api.telegram.org/bot<YOUR_TOKEN>/getUpdates
  3. Find your chat.id in the response

3. Configure

You can configure the bot via environment variables or the Locus settings file.

Environment variables (.env file in the package directory):

LOCUS_TELEGRAM_TOKEN="your-bot-token"
LOCUS_TELEGRAM_CHAT_ID="your-chat-id"
LOCUS_API_KEY="your-locus-api-key"
LOCUS_PROJECT_PATH="/path/to/your/project"

Settings file (.locus/settings.json in your project):

{
  "apiKey": "your-locus-api-key",
  "agentCount": 2,
  "telegram": {
    "botToken": "your-bot-token",
    "chatId": 123456789,
    "testMode": false
  }
}

4. Start the Bot

# From the package directory
bun run start

# Or in development mode (auto-reload)
bun run dev

Commands

Planning

| Command | Description | |---------|-------------| | /plan <directive> | Start a planning meeting | | /plans | List pending plans | | /approve <id> | Approve a plan | | /reject <id> <feedback> | Reject a plan with feedback | | /cancel <id> | Cancel a plan |

Tasks

| Command | Description | |---------|-------------| | /tasks | List active tasks | | /rejecttask <id> <feedback> | Reject an IN_REVIEW task |

Execution

| Command | Description | |---------|-------------| | /run | Start agents on sprint tasks | | /stop | Stop all running processes | | /exec <prompt> | One-shot AI execution |

Status

| Command | Description | |---------|-------------| | /status | Show running processes | | /agents | List agent worktrees |

System

| Command | Description | |---------|-------------| | /start | Welcome message | | /help | Show available commands |

Configuration Options

| Option | Env Variable | Settings Key | Description | |--------|-------------|--------------|-------------| | Bot Token | LOCUS_TELEGRAM_TOKEN | telegram.botToken | Telegram bot token from BotFather | | Chat ID | LOCUS_TELEGRAM_CHAT_ID | telegram.chatId | Authorized Telegram chat ID | | Project Path | LOCUS_PROJECT_PATH | — | Path to the Locus project directory | | API Key | LOCUS_API_KEY | apiKey | Locus API key | | API Base URL | — | apiUrl | Custom API URL | | Provider | — | provider | AI provider (claude or codex) | | Model | — | model | AI model override | | Agent Count | LOCUS_AGENT_COUNT | agentCount | Number of agents to spawn with /run (1-5) | | Test Mode | LOCUS_TEST_MODE | telegram.testMode | Use local CLI source instead of published binary |

Security

The bot only responds to the configured chat ID. All messages from other chats are silently ignored.

Development

# Start with auto-reload
bun run dev

# Build
bun run build

# Lint
bun run lint

# Type check
bun run typecheck

License

MIT