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

lalph

v0.3.52

Published

``` .--. |^()^| lalph '--' ```

Readme

  .--.
 |^()^|  lalph
  '--'

A LLM agent orchestrator driven by your chosen source of issues.

Features

  • Pull work from an issue source (GitHub Issues, Linear, etc.) and keep task state in sync
  • Projects to group execution settings (enabled state, concurrency, target branch, git flow, review agent)
  • Agent presets to control which CLI agent and optional clanka model run tasks, with optional label-based routing
  • Plan mode to turn a high-level plan into a spec and generate PRD tasks
  • Git worktrees to support multiple concurrent iterations
  • Optional PR flow with auto-merge and support for issue dependencies

Installation

npm install -g lalph

or run with npx:

npx -y lalph@latest

CLI usage

  • Run the main loop across enabled projects: lalph
  • Run a bounded set of iterations per enabled project: lalph --iterations 1
  • Configure projects and per-project concurrency: lalph projects add
  • Inspect and configure agent presets: lalph agents ls
  • Start plan mode: lalph plan
  • Create an issue from your editor: lalph issue
  • Choose your issue source integration (applies to all projects): lalph source

It is recommended to add .lalph/ to your .gitignore to avoid committing your credentials.

Agent presets

Agent presets define which CLI agent runs tasks, the optional clanka model to use, and any extra arguments. Lalph always needs a default preset and will prompt you to create one on first run if it's missing.

Some issue sources support routing: you can associate a preset with a label, and issues with that label will run with that preset; anything else uses the default.

lalph agents ls
lalph agents add

lalph agents ls shows each preset's CLI agent, clanka model selection, extra args, command prefix, and any issue-source routing metadata.

Projects

Projects bundle execution settings for the current repo: whether it is enabled for runs, how many tasks can run concurrently, which branch to target, what git flow to use, and whether review is enabled.

lalph runs across all enabled projects in parallel; for single-project commands, you'll be prompted to choose an active project when needed.

lalph projects add
lalph projects toggle

Plan mode

Plan mode opens an editor so you can write a high-level plan. You can also pass --file / -f with a markdown file path to skip the editor. On save (or file read), lalph generates a specification under --specs and then creates PRD tasks from it.

Use --dangerous to skip permission prompts during spec generation, and --new to create a project before starting plan mode. If you have multiple agent presets, plan commands prompt you to choose which preset to run before launching the CLI agent.

lalph plan
lalph plan --file ./my-plan.md
lalph plan tasks .specs/my-spec.md

Creating issues

lalph issue opens a new-issue template in your editor. When you save and close the file, the issue is created in the current issue source.

Anything below the front matter is used as the issue description.

Front matter fields:

  • title: short issue title
  • priority: number (0 = none, 1 = urgent, 2 = high, 3 = normal, 4 = low)
  • estimate: number of points, or null
  • blockedBy: array of issue identifiers
  • autoMerge: whether to mark this issue for auto-merge when applicable
lalph issue
lalph i

Development

  • Install dependencies: pnpm install
  • Build the CLI: pnpm build
  • Run validations: pnpm check