runtime-debug

vercel/next.js · updated Apr 8, 2026

$npx skills add https://github.com/vercel/next.js --skill runtime-debug
0 commentsdiscussion
summary

Use this skill when reproducing runtime-bundle, module-resolution, or user-bundle inclusion regressions.

skill.md

Runtime Debug

Use this skill when reproducing runtime-bundle, module-resolution, or user-bundle inclusion regressions.

Local Repro Discipline

  • Mirror CI env vars when reproducing CI failures.
  • Key variables: IS_WEBPACK_TEST=1 forces webpack (turbopack is default), NEXT_SKIP_ISOLATE=1 skips packing next.js.
  • For module-resolution validation, always rerun without NEXT_SKIP_ISOLATE=1.

Stack Trace Visibility

Set __NEXT_SHOW_IGNORE_LISTED=true to disable the ignore-list filtering in dev server error output. By default, Next.js collapses internal frames to at ignore-listed frames, which hides useful context when debugging framework internals. Defined in packages/next/src/server/patch-error-inspect.ts.

User-Bundle Regression Guardrail

When user next build starts bundling internal Node-only helpers unexpectedly:

  1. Inspect route trace artifacts (.next/server/.../page.js.nft.json).
  2. Inspect traced server chunks for forbidden internals (e.g. next/dist/server/stream-utils/node-stream-helpers.js, node:stream/promises).
  3. Add a test-start-webpack assertion that reads the route trace and traced server chunks, and fails on forbidden internals. This validates user-project bundling (not publish-time runtime bundling).

Bundle Tracing / Inclusion Proof

To prove what user bundling includes, emit webpack stats from the app's next.config.js:

// next.config.js
module.exports = {
  webpack(config) {
    config.profile = true
    return config
  },
}

Then use stats.toJson({ modules: true, chunks: true, reasons: true }) and diff webpack-stats-server.json between modes. This gives concrete inclusion reasons (e.g. which module required node:stream/promises) and is more reliable than analyzer HTML alone.

Related Skills

  • $flags - flag wiring (config/schema/define-env/runtime env)
  • $dce-edge - DCE-safe require patterns and edge constraints
  • $react-vendoring - entry-base boundaries and vendored React

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.
general reviews

Ratings

4.770 reviews
  • Hassan Park· Dec 24, 2024

    Registry listing for runtime-debug matched our evaluation — installs cleanly and behaves as described in the markdown.

  • Emma Kim· Dec 20, 2024

    runtime-debug reduced setup friction for our internal harness; good balance of opinion and flexibility.

  • Dev Khan· Dec 20, 2024

    runtime-debug fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • Zara Reddy· Dec 8, 2024

    We added runtime-debug from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.

  • Arya Park· Dec 4, 2024

    runtime-debug fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • Sophia Bhatia· Nov 27, 2024

    runtime-debug reduced setup friction for our internal harness; good balance of opinion and flexibility.

  • Emma Park· Nov 23, 2024

    Registry listing for runtime-debug matched our evaluation — installs cleanly and behaves as described in the markdown.

  • Sophia Dixit· Nov 15, 2024

    runtime-debug fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • Arya White· Nov 11, 2024

    We added runtime-debug from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.

  • Arya Anderson· Nov 11, 2024

    Registry listing for runtime-debug matched our evaluation — installs cleanly and behaves as described in the markdown.

showing 1-10 of 70

1 / 7