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

@fde-lab/incident-engineer

v0.1.8

Published

> POC #1 of the FDE Lab project: An AI-powered incident investigation solution.

Readme

@fde-lab/incident-engineer

POC #1 of the FDE Lab project: An AI-powered incident investigation solution.

Mission

FDE Lab is a collection of production-style, customer-facing AI engineering solutions designed to demonstrate the skills of a Forward Deployed Engineer (FDE).

The core philosophy is:

One command → install → run → demo.

This specific package, Incident Engineer, represents a realistic AI incident investigation workflow.

The customer has an application experiencing an incident. The Incident Engineer investigates the supplied information, correlates logs, metrics, and deployment history, and produces an evidence-backed incident report.

Try it

You can run the Incident Engineer directly via NPX without needing to clone the repository or manually install dependencies.

Standard Scenario (Known Cause)

npx @fde-lab/incident-engineer

The agent will ingest the simulated customer data, evaluate it against candidate root causes, and provide an evidence-backed incident report detailing the exhausting connection pool caused by deployment #184.

Inconclusive Scenario (Safety Verification)

To demonstrate that the agent is bound by strict safety policies and will not "hallucinate" an answer when data is missing, you can run the inconclusive scenario:

npx @fde-lab/incident-engineer --scenario inconclusive

The agent will report that the root cause is Inconclusive with Low confidence, adhering to the FDE principle that uncertainty is mandatory when evidence is lacking.

AI-Native Mode

This tool is AI-Native. Agents can interface with it programmatically using:

  • --manifest: Returns a JSON capability manifest.
  • --json: Runs the workflow and returns a standard JSON result envelope.

Architecture

This POC is strictly finite. It is not a monitoring platform or background worker. It evaluates the environment exactly once and cleanly exits when the report is rendered.

It is built utilizing the core FDE Lab architecture:

  • Thin Node.js CLI bootstrap for zero-friction environment setup.
  • Isolated Python Agent runtime.
  • Deterministic, read-only tools ensuring no unauthorized mutations.

Learn More

Check out the FDE Lab GitHub Repository for more information and to view the other FDE Lab solutions.