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

@qelos/aidev

v1.10.1

Published

AI-powered task executor — polls ClickUp (and more) to implement tasks with Claude, Cursor, Devin, or Antigravity

Readme

@qelos/aidev

npm version License: MIT Node.js Docs

aidev turns your tasks into merged code — automatically.

It polls your task manager (ClickUp, Jira, Linear, Monday.com, Notion, Trello, or local markdown files), checks whether tasks are clear, runs your configured AI agent (aider, Claude, Cursor, Devin, and more) to implement them, pushes a branch, and moves the task to review.

Task  →  AI implements  →  git push  →  "in review"  →  agent review  →  AI resolves code review comments

Quick start

npm install -g @qelos/aidev
cd my-project
aidev init
aidev run

Documentation

Full documentation is published at qelos-io.github.io/aidev.

| Topic | Link | |---|---| | Getting started | guide/getting-started | | Commands | guide/commands | | Configuration | guide/configuration | | Providers | guide/providers | | AI agents | guide/agents | | MCP servers | guide/mcp | | Contributing | contributing |

To work on the docs locally:

cd documentation
npm install
npm run dev

Child process config inheritance

When aidev run is launched with custom configuration (a custom -e env file path, a custom log path, or custom env vars), any aidev subcommand invoked by the spawned AI agent in the same directory automatically inherits the parent's resolved config — including those custom values. No user configuration is required; it is automatic.

This matters because AI agents frequently shell out to other aidev commands (e.g. aidev tasks push). Without inheritance those child commands would load config from the default on-disk location and miss the parent's custom -e path / env vars.

Requirements:

  • The parent aidev run must be a true ancestor process of the child (parent, grandparent, …).
  • The parent and child must be running in the same working directory.

Mechanism:

  1. aidev run acquires a directory lock (.aidev.lock containing its PID) and starts a local IPC config server on a per-PID socket.
  2. A child aidev subcommand reads .aidev.lock from its CWD, verifies the lock holder is alive and is an ancestor of the child process, then requests the resolved Config over the IPC socket and adopts it wholesale (applying the parent's published env vars to process.env).
  3. If there is no lock, the lock holder is dead, or the lock holder is not an ancestor, the child falls back to normal disk-based config loading.

Because aidev run holds the directory lock while running, a child aidev run invoked in the same directory will exit at the lock rather than start a second concurrent run.

Contributing

See CONTRIBUTING.md.

License

MIT