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

@memo-industries/paperclip-telegram-notifier

v0.1.4

Published

Paperclip plugin: push board notifications to Telegram on new questions, blocked tasks, and tasks moved to review.

Readme

@memo-industries/paperclip-telegram-notifier

Paperclip plugin that pushes board notifications to Telegram when something needs the board's attention:

| Event (SDK) | Condition | Message | |---|---|---| | approval.created | — | ❓ Новый вопрос борду | | issue.updated | transition → in_review | 👀 На ревью | | issue.updated | transition → blocked | ⛔ Заблокировано |

Part of the MemoDiary Paperclip development process. See docs/DESIGN.md.

Status

v1 implemented and verified. Pure logic lives in tested modules (config, format, notify-rules, telegram, deep-links). Worker is null-safe. Full test suite is green, tsc --noEmit is clean, and npm run build emits dist/worker.js + dist/manifest.js.

How it works

  • Subscribes to domain events via ctx.events.on.
  • Domain event payloads are typed unknown, so on issue.updated the worker re-reads the issue (ctx.issues.get) and detects a transition by comparing against the last status stored in ctx.state (per-issue). It only notifies when the status changes into in_review / blocked.
  • Config is operator-editable via the host-rendered form (manifest.instanceConfigSchema): bot token (secret ref), chat id, deep-link base URL, company prefix, and per-event toggles. No custom UI bundle in v1.
  • A dedicated plugin page (sidebar entry "Telegram Notifier") surfaces the last 50 delivery diagnostics ("Показать логи") and an npm version check ("Обновить"). The page reads worker-side diagnostics / update-status bridge handlers; the settings auto-form is unchanged. Actually performing an update from the page is a future step (needs a host plugin-update endpoint).
  • The bot token is stored as a Paperclip secret and resolved with ctx.secrets.resolve (capability secrets.read-ref).

Capabilities

events.subscribe, issues.read, http.outbound, secrets.read-ref, plugin.state.read, plugin.state.write, ui.page.register, ui.sidebar.register.

Develop

npm install
npm run typecheck
npm test
npm run build      # bundles dist/worker.js + dist/manifest.js + dist/ui/index.js

Deploy

Target instance is a separate server (paperclip.example.com). Supported path: publish this package to npm and install it into the Paperclip instance at runtime. Provide a Telegram bot token (via @BotFather) and chat id in the plugin settings after install.

Roadmap

  • v1: one-way notifications (this).
  • v2 (optional): onWebhook to accept Telegram replies (e.g. approve MEM-123) and apply the board decision in Paperclip.
  • Optional jobs.schedule hourly safety digest for any missed event.