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

@loopflowhq/agent-pack

v0.10.1

Published

One-command installer/updater for LoopFlowHQ-managed agent files, plus a CLI for interacting with the LoopFlowHQ API.

Readme

@loopflowhq/agent-pack

One-command installer/updater for LoopFlowHQ-managed agent files, plus a CLI for interacting with the LoopFlowHQ API.

Setup

# Install (or update) agent playbooks into the current repo
npx @loopflowhq/agent-pack@latest install

# Authenticate
npx @loopflowhq/agent-pack@latest auth login
npx @loopflowhq/agent-pack@latest auth status

Commands

# Projects
npx @loopflowhq/agent-pack@latest projects

# Tickets — list
npx @loopflowhq/agent-pack@latest tickets
npx @loopflowhq/agent-pack@latest tickets --project LOOPF --status in_progress

# Ticket — read
npx @loopflowhq/agent-pack@latest ticket LOOPF-42
npx @loopflowhq/agent-pack@latest ticket LOOPF-42 context
npx @loopflowhq/agent-pack@latest ticket LOOPF-42 messages --limit 20
npx @loopflowhq/agent-pack@latest ticket LOOPF-42 subtasks

# Ticket — create / update
npx @loopflowhq/agent-pack@latest ticket create --project LOOPF --title "Fix login bug" --type bug
npx @loopflowhq/agent-pack@latest ticket LOOPF-42 update --status in_progress --phase implement --phase-state in_progress
npx @loopflowhq/agent-pack@latest ticket LOOPF-42 set-status review --phase implement --phase-state done
npx @loopflowhq/agent-pack@latest ticket LOOPF-42 message "Implementation complete. PR is up."

# Subtasks (structured JSON required)
npx @loopflowhq/agent-pack@latest ticket LOOPF-42 subtasks update \
  --data '[{"title":"Write tests","status":"done"},{"title":"Update docs","status":"in_progress"}]'

# Questions for human review
npx @loopflowhq/agent-pack@latest ticket LOOPF-42 questions \
  --data '[{"question":"Should this be a breaking change?","proposed_answers":["Yes","No"]}]'

# Workflow
npx @loopflowhq/agent-pack@latest next
npx @loopflowhq/agent-pack@latest next --project LOOPF
npx @loopflowhq/agent-pack@latest next child-story LOOPF-10

Global flags

All commands accept:

  • --api-key <key> (or env: LOOPFLOWHQ_API_KEY, LFHQ_API_KEY)
  • --base-url <url> (or env: LOOPFLOWHQ_BASE_URL, LFHQ_BASE_URL)
  • --json for raw JSON output

Advanced (raw API)

# Call any action directly with a JSON body
npx @loopflowhq/agent-pack@latest run next_best_action --data '{"project_id":"LOOPF"}'

# List all available actions
npx @loopflowhq/agent-pack@latest actions

What install writes

  • .cursor/commands/lfq*.md
  • AGENTS.md
  • .loopflowhq/ (agent playbooks)
  • .loopflowhq/version.json

All installed files are marked as LoopFlowHQ-managed and can be updated by rerunning the installer.