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

hyphora

v0.1.0

Published

Lightweight daemon that turns AI coding agents into 24/7 proactive assistants, controlled via Telegram

Readme

Hyphora

Turn AI coding agents into 24/7 proactive assistants — controlled via Telegram.

CI npm License: MIT

Send coding tasks from your phone, get results back — even while you sleep.

Quick Start

npm install -g hyphora
hyphora init    # generates soul.yaml + .env
hyphora         # start

Then send /start to your bot on Telegram. You become the owner automatically.

From source:

git clone https://github.com/Yab8702/hyphora && cd hyphora
pnpm install
npx tsx src/index.ts init
npx tsx src/index.ts

Features

  • Telegram bot — typing indicators, live progress, file uploads
  • Claude Code — Agent SDK (streaming) or CLI fallback
  • Auto-registration — first /start = owner, no manual config
  • Proactive scheduling — cron tasks run autonomously, results sent to Telegram
  • Persistent memory — markdown files survive restarts
  • God Mode/god to toggle full permissions
  • Webhooks — GitHub PRs, CI failures, generic HTTP triggers
  • Multi-channel — Twitter/X and Discord adapters (optional)

Commands

| Command | Description | |---------|-------------| | /start | Register as owner | | /ask <prompt> | Run a task | | /god | Toggle full permissions | | /name <name> | Rename agent (persists) | | /status | Queue and task status | | /memory | View/add persistent memory | | /history | Recent tasks with costs | | /cancel | Cancel running task |

Or just send any message — no prefix needed.

Scheduling

Run tasks automatically without sending messages:

# soul.yaml
telegram:
  notifyChatId: 123456789

schedules:
  - name: "nightly-tests"
    cron: "0 2 * * *"
    prompt: "Run the test suite and report failures"
    enabled: true
┌─ min  ┌─ hour  ┌─ day  ┌─ month  ┌─ weekday
*  *  *  *  *

| Cron | Meaning | |------|---------| | 0 2 * * * | Daily at 2am | | 0 9 * * 1-5 | Weekdays at 9am | | */30 * * * * | Every 30 min |

Configuration

hyphora init generates soul.yaml. Key options:

agent:
  mode: cli          # 'sdk' for streaming (needs API key), 'cli' for Claude Code
  cwd: "/your/project"
  maxBudgetUsd: 1.00

telegram:
  allowedChatIds: [] # empty = auto-registration

heartbeat:
  enabled: true
  intervalMinutes: 60

See soul.yaml.example for full reference.

Optional channels

Twitter: npm i twitter-api-v2 + set TWITTER_API_KEY, TWITTER_API_SECRET, TWITTER_ACCESS_TOKEN, TWITTER_ACCESS_SECRET

Discord: npm i discord.js + set DISCORD_BOT_TOKEN

Webhooks: Enable in soul.yaml with GitHub secret or bearer token.

Development

pnpm dev        # watch mode
pnpm test       # 226 tests
pnpm typecheck  # tsc --noEmit
pnpm lint       # eslint
pnpm build      # compile

Architecture

Telegram / Twitter / Discord
         │
    ChannelAdapter → ChannelDispatcher → CommandHandler
         │
    LaneQueue (serial)
         │
    AgentRunner (SDK streaming | CLI batch)
         │
    Claude Code → Result → Channel

WebhookServer (Fastify) → LaneQueue
CronManager → LaneQueue

License

MIT