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

dangerously-skip-review

v1.0.1

Published

GitHub Actions workflows that give Claude Code more autonomy for code reviews, fixes, and issue management

Readme

dangerously-skip-review

⚠️ Warning: These workflows give Claude significant autonomy over your codebase. Use responsibly.

Dangerously Skip Review is a set of GitHub Actions workflows that enable Claude Code to autonomously review PRs, implement fixes, and manage follow-up issues.

By installing the complete workflow, once you push a PR:

  1. Claude will review the PR in detail
  2. Claude will evaluate that review to identify must-fix items and issues that can be addressed later
  3. Claude will solve the must-fix items
  4. Claude will create follow-up issues to be addressed after the PR is merged
  5. Once the PR is merged, Claude will evaluate the follow up issues, decide if they're worth implementing, and if they are, code them up and open new PRs.
  6. The cycle repeats.

Note: This is an independent enhancement on the normal Github Actions you can install in Claude Code. It is NOT affiliated with or endorsed by Anthropic (yet!)

PRs welcome for any improvements.

Reach out to Nat Eliason (https://x.com/nateliason) with questions or concerns.

Installation

npx dangerously-skip-review

This will install all workflows to your .github/workflows/ directory.

Options

# Interactively select which workflows to install
npx dangerously-skip-review --interactive
npx dangerously-skip-review -i

# Install only the minimal @claude mentions workflow
npx dangerously-skip-review --minimal

# Overwrite existing workflows without prompting
npx dangerously-skip-review --force
npx dangerously-skip-review -y

# Show help
npx dangerously-skip-review --help

Setup

Prerequisite: Install the Claude Code GitHub Actions first. This will configure the CLAUDE_CODE_OAUTH_TOKEN secret automatically.

Once Claude Code GitHub Actions are installed, these workflows will work out of the box.

Included Workflows

1. claude.yml - @claude Mentions

Responds to @claude mentions in:

  • Issue comments
  • PR comments
  • PR review comments
  • New issues

Trigger: Any comment/issue containing @claude

2. claude-code-review.yml - Auto PR Review

Automatically reviews pull requests when they're opened.

Trigger: PR opened

Customization: Uncomment the paths filter to only review specific file types, or the if condition to only review PRs from certain authors.

3. prioritize-feedback.yml - Prioritize & Fix

After a code review:

  1. Categorizes feedback into "must fix now" vs "create issue for later"
  2. Creates GitHub issues for follow-up items
  3. Automatically implements the must-fix items
  4. Commits and pushes the fixes

Trigger: Runs after Claude Code Review workflow completes

4. verify-fixes.yml - Verify Fixes

Verifies that the auto-implemented fixes were done correctly and posts a merge readiness assessment.

Trigger: Runs after Prioritize PR Feedback workflow completes

5. review-follow-up-issues.yml - Post-Merge Follow-up

After a PR is merged:

  1. Finds any follow-up issues created from the PR's code review
  2. Reviews each issue to determine if it should be implemented
  3. Either closes trivial issues or creates PRs to implement valid suggestions

Trigger: PR merged

Workflow Pipeline

PR Opened
    ↓
Claude Code Review (auto-review)
    ↓
Prioritize PR Feedback (categorize & auto-fix)
    ↓
Verify PR Fixes (verify & assess merge readiness)
    ↓
PR Merged
    ↓
Review Follow-up Issues (implement or close deferred issues)

Permissions

The workflows request various GitHub permissions. Review and adjust based on your security requirements:

| Workflow | Key Permissions | |----------|-----------------| | claude.yml | contents: read, pull-requests: read, issues: read | | claude-code-review.yml | Same as above | | prioritize-feedback.yml | contents: write, pull-requests: write, issues: write | | verify-fixes.yml | contents: read, pull-requests: write | | review-follow-up-issues.yml | contents: write, pull-requests: write, issues: write |

Customization

Each workflow file includes comments showing optional customizations:

  • Filter by file paths
  • Filter by PR author
  • Adjust Claude's prompts
  • Modify allowed tools

License

MIT