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

@looply-cli/looply

v1.0.1

Published

<p align="center"> <img src="./assets/looply-banner.svg" alt="Looply" width="760" /> </p>

Readme


📌 Current status: see PROJECT_STATUS.md for the up-to-date product snapshot, in-progress work, and next steps.

Why Looply

AI coding agents are powerful but inconsistent. Without structure, every session starts from scratch — different tone, different conventions, different quality bar.

Looply solves this by shipping a curated, versioned set of packs — Markdown artifacts that encode your team's workflows, standards, agents, and operational context. Agents read them before producing output, so every session is calibrated the same way.

How It Works

  1. Install a pack into your project: looply install
  2. Publish the pack to your AI hosts (Codex, Claude Code)
  3. Work through structured workflows (idea-to-prdprd-to-storiesstory-to-production)
  4. Intervene when needed (replay, run-task, run-agent, reconcile)
  5. Repeat — packs are versioned, shared, and improved over time

Quick Start

npm install -g @looply-cli/looply
cd your-project
looply install

Or try without installing:

npx @looply-cli/looply --help

Features

| Area | Description | |---|---| | Packs | engineering-base, product-base, software-delivery-suite — modular, composable via includes | | Multi-host | Publishes the same artifact set to Codex, Claude Code, and the local desktop companion | | Workflows | idea-to-prd, prd-to-stories, story-to-production, cloud-workload-design, platform-foundation-evolution — handoff between agents | | Interventions | replay, run-task, run-agent, reconcile — deviate from a workflow without losing state | | Project rules | Six categories (coding-standards, testing-requirements, security-policies, etc.) — standard defaults or custom | | ICL guidance | In-context example layer that calibrates agent output style and quality | | Autocomplete | Bash, Zsh, PowerShell — generated from the real CLI tree | | Desktop companion | Local Electron app for browsing project snapshots, features, and sessions | | Docs | Built-in VitePress portal — looply docs open or automated GitHub Pages deploy |

Usage

# Interactive install with guided questionnaire
looply install

# Explicit parameters (non-interactive)
looply install \
  --host codex,claude \
  --scope project \
  --pack all \
  --locale pt-BR \
  --project-mode existing-project \
  --interaction-mode balanced

# Check project status
looply status
looply status --json

# Start a workflow
looply autonomy minha-feature

# Intervene during a workflow
looply replay minha-feature --from tech-spec
looply run-task minha-feature review-code
looply reconcile minha-feature

# Validate and diagnose
looply validate
looply doctor --host codex,claude --scope project

# Manage ICL guidance
looply icl set reduced

# Open documentation
looply docs open

Commands

| Command | Description | |---|---| | install | Install packs and publish to hosts | | uninstall | Remove looply from the project | | reinstall | Reinstall while preserving customizations | | validate | Validate artifacts and contracts | | doctor | Installation diagnostics per host/scope | | status | Consolidated project snapshot | | sync | Sync published state with source | | refresh-context | Update project context and code-context | | check-updates | Check for newer pack versions | | upgrade | Upgrade packs | | autonomy | Derive the next host-driven cycle for a feature | | replay | Resume a workflow from a previous artifact | | run-task | Record a manual task execution | | run-agent | Record a manual agent intervention | | reconcile | Reconcile a feature after interventions | | list | List available workflows, agents, or tasks | | inspect | Show details of a workflow or agent | | integrations | Expose known integration contexts | | icl | Manage ICL example guidance | | docs | Generate, build, and serve documentation | | completion | Generate and install shell autocomplete |

Workflows

| Workflow | Purpose | |---|---| | idea-to-prd | Transform an idea into a PRD with context and constraints | | prd-to-stories | Break a PRD into implementable stories | | story-to-production | Take a story from tech design through review to release | | workflow-status | Inspect state and recommend the next step | | cloud-workload-design | Cloud topology, async-first, queueing, and governance decisions | | platform-foundation-evolution | Shared foundation, guardrails, pipelines, identity, and observability |

Approach

Artifact-first. Every workflow stage produces a versioned Markdown artifact. Nothing lives only in chat history.

Task-first. Workflows are composed of discrete tasks, each owned by a named agent with explicit input/output contracts.

Host-agnostic core. The artifact engine doesn't know about any specific AI host. Publishing is a separate, host-aware layer.

Codebase-first. In existing projects, the real repository is always the primary source of truth. Looply context files are accelerators — not replacements.

Incremental sync. Updates are applied by file ownership. User customizations in .looply/custom/ are never overwritten.

Progressive disclosure. Packs include checklists, templates, and decision trees that grow with the team — without requiring everyone to know everything upfront.

Documentation

Full documentation at riguelbf.github.io/looply.

Contributing

Looply is an opinionated tool. Contributions are welcome in the form of issues and pull requests. When proposing changes, start with the rationale — what problem it solves and why the current design falls short.

License

Apache 2.0