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

@l1r1h28/project-lifecycle

v1.0.0

Published

Steering-first, cross-language development lifecycle skill for AI coding agents and developers.

Downloads

132

Readme

Project Lifecycle Skill

npm version License: MIT

A steering-first, universal, cross-language, cross-ecosystem agent skill for modern software lifecycle maintenance. Compatible with Google Antigravity, Claude Code, Cursor, Windsurf, and any Agent Skills standard runtime.

Quick Install

1. Via npx (Project or Global)

# Install to current project (.agents/skills/project-lifecycle)
npx @l1r1h28/project-lifecycle install

# Or install globally (~/.gemini/config/skills/project-lifecycle)
npx @l1r1h28/project-lifecycle install --global

2. Via skills.sh

npx skills add L1r1h28/Sweep-agentcli-ide-cleaner

Directory Overview

.agents/skills/project-lifecycle/
├── SKILL.md
├── README.md
├── references/
│   ├── workflow-design-yaml.md      # How to architect & write GitHub Actions YAML files
│   ├── release-operations-guide.md  # How to operate git push, trigger releases, monitor & verify
│   ├── roadmap-maintenance.md
│   ├── changelog-readme.md
│   ├── ci-testing-next-steps.md
│   ├── structure-hygiene.md
│   ├── decisions-template.md
│   ├── semver-rules.md
│   └── commit-classification.md
└── scripts/
    ├── README.md
    ├── python/                      # Python 3 (Pure standard library, zero dependencies)
    │   ├── project_inventory.py
    │   ├── extract_release_notes.py
    │   ├── release_preflight.py
    │   └── ci_watch_github.py
    ├── node/                        # Node.js (Node 18+ ESM native fetch, zero dependencies)
    │   ├── project-inventory.mjs
    │   ├── extract-release-notes.mjs
    │   ├── release-preflight.mjs
    │   └── ci-watch-github.mjs
    └── powershell/                  # PowerShell (Windows / pwsh on Linux/Mac, zero dependencies)
        ├── Project-Inventory.ps1
        ├── Extract-ReleaseNotes.ps1
        ├── Release-Preflight.ps1
        └── Ci-Watch-Github.ps1

Summary of Reference Guides

  1. workflow-design-yaml.md: Guidelines on writing and structuring .github/workflows/*.yml files (3-tier architecture: Fast CI, Binary Smoke Test, Two-Stage Release, matrix builds, artifact cleanup, token guard pattern).
  2. release-operations-guide.md: Operational instructions for developers and agents executing releases (pre-release preflight verification, git commit/push, workflow_dispatch triggering, monitoring, post-release checks, failure rollback playbook).
  3. roadmap-maintenance.md: Realistic status-based roadmap management, commit tracking, and task grouping.
  4. changelog-readme.md: User-facing CHANGELOG format, multi-language README synchronization, and release download links.
  5. ci-testing-next-steps.md: Cooperative GitHub Actions execution, log/artifact fetching, minimal bug fixing, and next-step planning.
  6. structure-hygiene.md: Clean folder layout, script documentation rules, and gitignore safety.
  7. decisions-template.md: Architecture Decision Record (ADR) template to capture structural decisions and prevent code anti-patterns.
  8. semver-rules.md: Strict Semantic Versioning decisions (MAJOR, MINOR, PATCH).
  9. commit-classification.md: Conventional Commits standard and atomic commit recommendations.

Multi-Language Utility Scripts

Located under scripts/ (see scripts/README.md):

  • Python (scripts/python/): Universal zero-dependency Python 3 scripts suitable for all project types (Rust, Go, Python, C#, Java, Docker).
  • Node.js (scripts/node/): Native ESM scripts suitable for JS/TS/Node ecosystems.
  • PowerShell (scripts/powershell/): Native .ps1 scripts for Windows and PowerShell Core CI runners.