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

howl-pa

v1.1.1

Published

Howl PA — personal Mission Control. Telegram-first assistant that maintains an Obsidian vault, ingests Gmail/Calendar/Google Tasks, and spawns Codex or Claude subagents.

Readme

Howl PA

Personal Mission Control for one person. One assistant across three surfaces:

  • Phone — Telegram bot for capture + native Google notifications
  • Laptop — Dashboard (local or tunneled), Claude Code /howl slash command, and Claude Code sessions for real work
  • Anywhere — Obsidian vault as the second brain

Telegram captures everything, classifies it, writes to the right Obsidian path, and commits. The dashboard is the full control plane: routines, missions, capture, audit transcripts, Claude + Codex usage. The /howl Claude Code command hits the same API from inside any editor session. Subagent work routes to Codex by default (non-frontend) and Claude for design, with Ollama as a local council member.

Install in one command

curl -fsSL https://raw.githubusercontent.com/sannidhyas/howl-pa/main/install.sh | bash

Or the four-step manual path:

npm i -g howl-pa
howl-pa setup
howl-pa setup:google
howl-pa start

Status

v1.1.0-rc.3: project renamed from ClaudeClaw to howl-pa; legacy ~/.claudeclaw auto-migrates on first boot.

v1.0.0. Runs daily against a real workload. Ships as an npm package with a bundled Claude Code slash command + MCP plugin.

Security & credentials

Howl PA is a single-tenant tool. Every deployment is one user, their own credentials, their own data. Nothing is shared between users, no credentials are bundled in the package, and no data ever leaves the user's machine unless they explicitly tunnel the dashboard.

What you own

| Credential | Where you get it | Where it lives | |---|---|---| | Telegram bot token | You create your own bot via @BotFather | <config-dir>/.envTELEGRAM_BOT_TOKEN | | Your Telegram chat ID | @userinfobot | <config-dir>/.envALLOWED_CHAT_ID | | Claude Code OAuth token | Run claude setup-token on your machine | <config-dir>/.envCLAUDE_CODE_OAUTH_TOKEN | | Google OAuth client (Gmail + Calendar + Tasks) | You create your own OAuth 2.0 client (type: Desktop app) in Google Cloud Console | <config-dir>/.envGOOGLE_CLIENT_ID + GOOGLE_CLIENT_SECRET | | Google refresh token (exchanged at setup:google) | The loopback redirect flow writes this locally | <config-dir>/google-token.json (mode 600) | | Dashboard password (optional) | You choose, during howl-pa setup or howl-pa set-password | <config-dir>/.envDASHBOARD_PASSWORD_HASH (SHA-256 of salt:password) | | Dashboard bearer token | Generated at setup, used by the API + /howl Claude Code command | <config-dir>/.envDASHBOARD_TOKEN |

<config-dir> resolves to $HOWL_CONFIG, $CLAUDECLAW_CONFIG (deprecated alias), $XDG_CONFIG_HOME/howl-pa, ~/.claudeclaw (legacy — auto-migrated on first boot), or ~/.config/howl-pa, in that order.

What is NOT in the repo

  • No Telegram tokens
  • No Google OAuth client ID or secret
  • No Anthropic API keys
  • No .env with real values (.env.example ships only defaults: paths, ports, timeouts)
  • No google-token.json
  • No database, vault contents, or user data

Cloning this repo gives you the code — nothing else. npm install howl-pa gives you the compiled binary — still nothing else. You must bring your own credentials to every new machine.

Google OAuth: who owns what

Howl PA does not ship a shared Google OAuth client. Google's Terms of Service forbid redistributing GOCSPX-* secrets, and every new user creates their own Desktop-app OAuth client in ~10 seconds:

  1. Google Cloud Console → APIs & Services → Credentials
  2. Create OAuth 2.0 Client ID → Application type: Desktop app
  3. Enable the APIs you need: Gmail API, Calendar API, Tasks API
  4. Run howl-pa setup:google — it prompts for the client ID + secret and then opens the consent page in your browser

The refresh token Howl receives is stored in <config-dir>/google-token.json with mode 600. It never leaves your machine.

Moving to a new machine

# on the old machine — archive just the credentials (not the data)
howl-pa backup           # writes ~/howl-pa-backup-YYYY-MM-DD.tgz

# copy the tarball securely (scp / rsync / yubikey — your call)

# on the new machine
npm i -g howl-pa
howl-pa backup --restore ~/howl-pa-backup-YYYY-MM-DD.tgz
howl-pa start

Starting over

howl-pa reset            # auto-backs-up, then wipes .env + google-token.json + db + systemd unit
howl-pa setup            # start fresh

Quickstart

# 1. Install from npm
npm i -g howl-pa

# fallback for air-gapped / registry-unreachable environments:
# npm i -g https://github.com/sannidhyas/howl-pa/releases/latest/download/howl-pa.tgz

# 2. First-run wizard (PIN, kill phrase, Telegram bot token, chat allowlist,
#    dashboard password)
howl-pa setup

# 3. Google OAuth for Gmail + Calendar + Tasks
howl-pa setup:google

# 4. Start the bot + scheduler + dashboard
howl-pa start

# 5. Or run as a background service (systemd --user)
howl-pa daemon install

Then DM your bot on Telegram. See docs/install.md for the full flow, including Claude Code plugin install.

Docs

Highlights

  • Four-layer memory — FTS5 + vector (Ollama nomic-embed-text) + claude-mem + vault graph, blended in src/memory.ts
  • 19-role subagent router — codex-corps taxonomy (backend, debugger, refactor, tests, security, data, infra, research, docs, arch, perf, migrate, integrate, reviewer, prompt, route, oneshot, frontend-logic, frontend-visual, do); per-role telemetry in the dashboard
  • Council mode — Claude + Codex + Ollama on the same prompt, merged or judged
  • ZotLit-aware thesis mirror — summarises your Zotero literature back into existing 04_Notes/41_Literature/<citekey>.md via a > [!howl-summary] callout
  • Idea pipeline — captured ideas land in 08_Pipeline/ideas/<date>-<slug>/; /open <slug> promotes the next free 6N_ project slot
  • Morning ritual → Google Tasks + Calendar — three needle-movers captured become real tasks and optional time-blocks you get notified about from the native apps
  • PIN + idle auto-lock + kill phrase + exfiltration guard — the bot reads your inbox, so it earns this
  • Dashboard on http://127.0.0.1:3141 with 7 tabs: Overview, Scheduler, Missions, Memories, Subagents, Routing, Audit, Live
  • Multi-bot fanout — any TELEGRAM_BOT_TOKEN_<AGENT> env var spawns a matching specialist bot

Paid dependencies

None required. Howl PA assumes a Claude subscription and a ChatGPT subscription with codex login already done. Everything else (Ollama, SQLite, Baileys-free email/calendar/tasks, Obsidian) is local or free.

License

MIT — see LICENSE.