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

seth-ai

v1.0.0

Published

S.E.T.H. - Self Evolving Task Handler: A self-hosted personal AI assistant with multi-channel messaging and Claude AI

Readme

S.E.T.H. (Self Evolving Task Handler)

A self-hosted personal AI assistant powered by Claude that connects to your messaging platforms and can control your local machine.

Features

  • Multi-Channel Messaging - Telegram, Discord, WhatsApp, CLI, WebSocket
  • Claude AI - Powered by Anthropic's Claude (Opus)
  • Onboarding Experience - New users get a hatching animation and guided setup to personalize SETH's behavior
  • User Preferences - Configurable purpose, communication style, personality, and custom instructions per channel
  • Desktop Control - Take screenshots, list windows, focus apps, send keystrokes, get system info (multi-monitor support)
  • Browser Automation - Launch Chrome with your profile, navigate, click, type, extract content
  • Local Machine Access - Run shell commands, read/write/edit files, browse the web
  • Persistent Memory - Remembers conversations and facts across sessions with automatic summarization
  • Skills System - Extensible with custom plugins (calculator, datetime, reminders built-in)
  • Automation - Cron-based job scheduling and webhook triggers
  • Integrations - Linear and GitHub integration for issue/project management
  • Self-Hosted - Your data stays on your machine

Quick Start

# Install globally
npm install -g seth-ai

# Run setup wizard
seth init

# Start the assistant
seth gateway

Manual Setup

# Clone the repository
git clone https://github.com/J0n4than-AI/S.E.T.H..git
cd S.E.T.H.

# Install dependencies
npm install

# Configure
cp .env.example .env
# Edit .env with your API keys

# Build and run
npm run build
npm run gateway

Configuration

| Variable | Required | Description | |----------|----------|-------------| | ANTHROPIC_API_KEY | Yes | Your Anthropic API key | | TELEGRAM_BOT_TOKEN | No | Telegram bot token from @BotFather | | DISCORD_BOT_TOKEN | No | Discord bot token | | WHATSAPP_ENABLED | No | Enable WhatsApp (shows QR code) | | WEBHOOK_ENABLED | No | Enable webhook server | | WEBHOOK_PORT | No | Webhook port (default: 3001) |

Onboarding

When a new user first interacts with SETH, they get a guided onboarding experience:

  1. Hatching animation - A fun egg-hatching sequence
  2. Introduction - SETH explains what it can do
  3. 3 setup questions - Purpose, communication style, and personality preferences
  4. Users can type "skip" on any question to use defaults
  5. Preferences are saved and injected into every future conversation

Existing users are detected automatically and silently onboarded without interruption. Preferences can be updated anytime with /setpurpose, /setstyle, /setpersonality, /setcustom, or reset with /resetpreferences.

CLI Commands

seth init          # Interactive setup wizard
seth gateway       # Start the assistant
seth chat          # Interactive CLI chat
seth status        # Show status
seth doctor        # Run health checks
seth config        # Display configuration

# Skills
seth skill list    # List installed skills
seth skill install <path>

# Automation
seth automation list
seth automation create "Job Name" "0 9 * * *" -c telegram -t CHAT_ID -m "Hello!"

Channel Commands

Telegram (/command)

Conversation:
  /start              - Initialize bot (triggers onboarding for new users)
  /new or /reset      - Clear conversation
  /help               - Show all commands

Memory:
  /remember <fact>    - Save a fact to memory
  /forget <query>     - Remove memories matching query
  /memories [query]   - View or search saved memories

Preferences:
  /preferences        - View current preferences
  /setpurpose <text>  - Set what SETH helps you with
  /setstyle <text>    - Set communication style
  /setpersonality <text> - Set personality traits
  /setcustom <text>   - Set custom instructions
  /resetpreferences   - Redo onboarding setup

Tools & Skills:
  /tools              - List available tools
  /skills             - List installed skills
  /calc <expr>        - Calculate math expression
  /time [zone]        - Get current time
  /date               - Get current date
  /remind <msg> in <time> - Set a reminder

Automation:
  /jobs               - List scheduled jobs
  /schedule <cron> <message> - Create scheduled message
  /unschedule <job_id> - Delete a scheduled job

Info:
  /status             - Show session statistics
  /model              - Current AI model

Discord (!command)

Same commands as Telegram but prefixed with ! instead of /. Responds to mentions in servers and all messages in DMs.

WhatsApp (/command)

Same commands as Telegram. Connects via QR code authentication.

CLI

Same commands as Telegram. Run with seth chat for an interactive terminal session.

Built-in Tools

S.E.T.H. can use these tools autonomously during conversations:

| Tool | Description | |------|-------------| | desktop | Take screenshots (multi-monitor), list/focus/minimize windows, open apps, send keystrokes, get system info | | browser | Launch Chrome with user profile, navigate URLs, click elements, type text, extract page content | | bash | Execute shell/PowerShell commands | | read_file | Read file contents | | write_file | Create/overwrite files | | edit_file | Modify existing files | | list_dir | List directory contents | | web_fetch | Fetch web pages | | web_search | Search the web | | linear | View and manage Linear issues | | github | View GitHub repos and issues |

Architecture

┌─────────────┐                              ┌─────────────┐
│  Telegram   │──┐                      ┌───▶│  Tools      │
│  Discord    │  │    ┌─────────────┐   │    │  (desktop,  │
│  WhatsApp   │──┼───▶│   Agent     │───┤    │  browser,   │
│  CLI        │  │    │  (Claude)   │   │    │  bash, etc) │
│  WebSocket  │──┘    └──────┬──────┘   │    └─────────────┘
└─────────────┘              │          │
                             │          │    ┌─────────────┐
                    ┌────────▼────────┐ └───▶│  Skills     │
                    │  SQLite DB      │      │  (calc,     │
                    │  - Sessions     │      │  datetime,  │
                    │  - Messages     │      │  reminders) │
                    │  - Memories     │      └─────────────┘
                    │  - Preferences  │
                    └─────────────────┘

WebSocket API

Connect to ws://localhost:18789:

// Send
{ "type": "message", "content": "Hello!" }

// Receive
{ "type": "response", "content": "Hi! How can I help?" }

License

MIT

Acknowledgments

Inspired by Clawdbot/OpenClaw