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

@alook/cli

v0.0.85

Published

Alook CLI — Enable Your Person Colleague

Readme

@alook/cli

Alook CLI — register machines, run the daemon, and manage agents from the command line.

Install

npx @alook/cli <command>

Quick Start

  1. Generate a machine token from the Alook dashboard.
  2. Register this machine:
npx @alook/cli register --token al_xxxxxxxxxxxxxxxxxxxxxxxx
  1. Start the daemon:
npx @alook/cli daemon start

The daemon runs in the background, polling for tasks and dispatching them to your local AI runtimes (Claude, Codex, or OpenCode).

Commands

| Command | Description | | --- | --- | | register --token <token> | Register this machine with your Alook account | | status | Show registration status and linked workspace | | daemon start | Start the background daemon | | daemon stop | Stop the daemon | | email pull | Download agent emails | | email send --to <addr> --subject "..." --body-file <path> | Send an email | | calendar set --event_title "..." --datetime <YYYY-MM-DDTHH:MM> | Create a scheduled event | | issue create --title "..." | Create and dispatch an issue | | sync upload-artifact --conversation_id <id> --file <path> | Upload a file artifact | | config show | Show current configuration | | update | Update CLI to the latest version | | version | Print CLI version |

Run npx @alook/cli <command> --help for all subcommand options.

alook daemon start               # Start in background
alook daemon start --foreground  # Start in foreground (for debugging)
alook daemon stop                # Stop the daemon
alook daemon status              # Check if the daemon is running
alook email pull                                # Download inbox
alook email pull --status unread                # Unread only
alook email pull --folder sent                  # Sent emails
alook email set --email_id <id> --status read   # Mark as read

alook email send --to <addr> --subject "Hi" --body-file body.html
alook email send ... --in-reply-to <email_id>                   # Reply to a thread
alook email send ... --attachment report.pdf                    # Attach a file
alook email forward --email_id <id> --to <addr> --note "FYI"

alook email whitelist list              # List allowed senders
alook email whitelist add <email>       # Allow a sender
alook email whitelist delete <email>    # Remove a sender

Options: --from <addr> to send from a custom mailbox, --limit <n> / --offset <n> for pagination, --json for machine-readable output.

When an event fires, a new task is dispatched to the agent with the event title as the prompt.

alook calendar set --event_title "Daily standup" --datetime 2026-05-16T09:00
alook calendar set ... --repeat 1week --repeat_stop_date 2026-12-31

alook calendar list                              # List upcoming events
alook calendar show --event_id <id>              # Show full detail
alook calendar update --event_id <id> --datetime 2026-05-17T10:00
alook calendar delete --event_id <id>

Datetime is always local time (YYYY-MM-DDTHH:MM). Repeat intervals: 1hour, 1day, 1week, 1month, etc.

alook issue create --title "Fix login bug"
alook issue create --title "Refactor auth" --body-file spec.md

alook issue list                           # Active issues
alook issue list --completed               # Completed/closed issues
alook issue show --issue_id <id>           # Full detail + conversation
alook issue update --issue_id <id> --status done
alook issue comment --issue_id <id> --body "Looks good"

Statuses: todo, in_progress, review, done, closed, canceled, failed.

alook config show    # Show current config
alook config path    # Show config file path

Config is stored at ~/.alook/config.json and includes:

  • server_url — Alook server URL
  • profiles — per-profile settings with workspace bindings
  • watched_workspaces — workspaces the daemon monitors (each with id, name, token, agent_ids)

Global Options

--server <url>     Override server URL
--profile <name>   Use a specific config profile
--agent_id <id>    Override agent ID (default: $ALOOK_AGENT_ID env var)

Requirements

  • Node.js >= 20

License

Apache-2.0 — see LICENSE.