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

vertical-ai-dev

v1.0.1

Published

CLI developer helper: read documents, run Ralph-based develop from task docs, install cursor-agent

Downloads

212

Readme

vertical-ai-dev

CLI developer helper: read documents, run Ralph-based develop from task docs, install cursor-agent. Built with TypeScript (Node.js).

Install in any project

Install as a dev dependency so you can use dev-helper in that project:

# From a local path (e.g. after cloning this repo)
npm install /path/to/vertical-ai-dev

# Or link from the vertical-ai-dev repo (global usage)
cd /path/to/vertical-ai-dev && npm run build && npm link
# Then in any project: dev-helper develop docs/spec.md

If you publish to npm, users can run:

npm install -D vertical-ai-dev
npx dev-helper develop docs/spec.md

Ralph scripts are resolved from the package installation directory, so the CLI works the same when installed in any project.

Development (this repo)

npm install
npm run build

Usage

Read one or more documents

# One file
dev-helper read path/to/doc.md

# Multiple files (positional)
dev-helper read doc1.md doc2.txt README.md

# Multiple files (comma-separated option)
dev-helper read --files doc1.md,doc2.txt,README.md

# Quiet: only file contents, no "read {{file_name}}" headers
dev-helper read --quiet doc1.md doc2.md

Paths are resolved relative to the current working directory.

Develop (documents → RALPH_TASK → Ralph)

Parses one or more documents into the RALPH_TASK format, then runs Ralph setup. Document content is placed in the Task Details section; a short description at the top is generated by cursor-agent. The generated task file is then passed to ralph-setup.sh.

# One document → generate RALPH_TASK.md → run Ralph
dev-helper develop docs/spec.md

# Multiple documents (each processed one at a time: parse → Ralph → next)
dev-helper develop doc1.md doc2.md

# Custom task file path (default: RALPH_TASK.md)
dev-helper develop spec.md -o docs/my-task.md

Or via npm:

npm run develop -- docs/spec.md

Run from the project root. Requires cursor-agent in PATH for description generation; if it fails, a fallback description is used.

Install dependencies (cursor-agent)

Ensures cursor-agent is installed; if not, runs the official Cursor install script (curl https://cursor.com/install -fsS | bash).

dev-helper install-dependencies

Or via npm:

npm run install-dependencies

Development

  • npm run dev -- read <paths...> – run CLI with tsx (no build)
  • npm run build – compile TypeScript to dist/
  • npm start -- read <paths...> – run compiled CLI from dist/

Example

dev-helper read README.md package.json

Output:

--- read /path/to/your/project/README.md ---

(... contents ...)

--- read /path/to/your/project/package.json ---

(... contents ...)