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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@seibert/n8n-debugger

v1.0.5

Published

AI-native debugging toolkit for n8n workflows - built for autonomous agents and developers. Not affiliated with n8n.io

Readme

n8n Debugger

AI-native debugging toolkit for n8n workflows. Works for both self-hosted and cloud n8n instances.

Note: This is a third-party debugging tool, not affiliated with n8n.io. For official n8n CLI commands, see n8n CLI documentation.

Installation

npm install -g @seibert/n8n-debugger

Setup

# Create a project directory
mkdir my-n8n-project && cd my-n8n-project

# Initialize (creates .env template and copies agent guidelines)
n8n-debug init

# Edit .env with your credentials, then test
n8n-debug list

The tool creates workflows/ and executions/ directories in your current working directory.

AI Agent Mode

Designed for autonomous AI debugging. When you describe a workflow problem to an AI assistant, it can:

  1. Search for workflows by name
  2. Check health and assess error patterns
  3. Analyze recent errors with structured data
  4. Pull and edit workflow JSON to fix issues
  5. Validate and push changes back to n8n
  6. Manage workflows (activate/deactivate, compare versions)

Commands

Usage:
  n8n-debug init                                    Initialize directory with guidelines and .env template
  n8n-debug list                                    List all workflows
  n8n-debug search <term>                           Search workflows by name
  n8n-debug errors <workflow-id> [limit]            Show recent errors for a workflow
  n8n-debug health <workflow-id>                    Check workflow health and execution stats
  n8n-debug validate <file.json>                    Validate workflow JSON before pushing
  n8n-debug activate <id> [<id> ...]                Activate one or more workflows
  n8n-debug deactivate <id> [<id> ...]              Deactivate one or more workflows
  n8n-debug diff <id1> <id2>                        Compare two workflows and show differences
  n8n-debug compare-executions <wf-id> <ok> <fail>  Compare successful vs failed executions
  n8n-debug pull [workflow-id|all]                  Pull workflow(s) to local JSON files
  n8n-debug pull-executions <id> [limit]            Pull execution data for a workflow
  n8n-debug push <file.json>                        Push local workflow changes to n8n
  n8n-debug clean [all|workflows|executions]        Remove downloaded files
  n8n-debug help                                    Show help

Flags:
  --json                                            Output in JSON format (for agent use)

Examples:
  n8n-debug search "Todoist"
  n8n-debug errors mp3KdoJFgCDT5ktt --json
  n8n-debug validate workflows/mp3KdoJFgCDT5ktt_Workflow.json
  n8n-debug activate mp3KdoJFgCDT5ktt
  n8n-debug deactivate mp3KdoJFgCDT5ktt abc123def
  n8n-debug compare-executions mp3KdoJFgCDT5ktt 437776 440301

Workflow Development

n8n-debug search "My Workflow"     # Find the workflow
n8n-debug errors <workflow-id>      # See what's failing
n8n-debug pull <workflow-id>        # Get the workflow
# ... edit the JSON ...
n8n-debug validate <file>           # Check it's valid
n8n-debug push <file>              # Deploy the fix

Note: Only core workflow fields can be updated via push:

  • name - Workflow name
  • nodes - Workflow nodes and their configuration
  • connections - Node connections
  • settings - Workflow settings
  • staticData - Static workflow data

Read-only fields (like active, tags, timestamps) are filtered out and must be changed in the n8n UI.

Security Notes

workflows/ and especially executions/ can include production data, credentials and PII from n8n runs. Treat those folders as sensitive artifacts and avoid syncing or uploading them to shared repos or cloud storage unless they are scrubbed.