AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Rspack Tracing

skill-rstackjs-agent-skills-rspack-tracing · by rstackjs

Comprehensive guide and toolkit for diagnosing Rspack build issues. Quickly identify where crashes/errors occur, or perform detailed performance profiling to resolve bottlenecks. Use when the user encounters build failures, slow builds, or wants to optimize Rspack performance.

No reviews yet
0 installs
29 views
0.0% view→install

Install

$ agentstack add skill-rstackjs-agent-skills-rspack-tracing

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-rstackjs-agent-skills-rspack-tracing)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Rspack Tracing? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Rspack Tracing & Performance Profiling

When to Use This Skill

Use this skill when you need to:

  1. Diagnose why an Rspack build is slow.
  2. Understand which plugins or loaders are taking the most time.
  3. Analyze a user-provided Rspack trace file.
  4. Guide a user to capture a performance profile.

Workflow

1. Capture a Trace

First, ask the user to run their build with tracing enabled.

# Set environment variables for logging to a file
RSPACK_PROFILE=TRACE RSPACK_TRACE_LAYER=logger RSPACK_TRACE_OUTPUT=./trace.json pnpm build

This will generate a trace file in a timestamped directory like .rspack-profile-{timestamp}-{pid}/trace.json.

See [references/tracing-guide.md](references/tracing-guide.md) for more details on configuration.

2. Quick Diagnosis for Crashes/Errors

If the user wants to identify which stage a crash or error occurred in, use tail to quickly view the last events without running the full analysis:

# Navigate to the generated profile directory
cd .rspack-profile-*/

# View the last 20 events to see where the build failed
tail -n 20 trace.json

The last events will show the span names and targets where the build stopped, helping to quickly pinpoint the problematic stage, plugin, or loader.

3. Full Performance Analysis

For detailed performance profiling (not just crash diagnosis), ask the user to run the bundled analysis script on the generated trace file.

# Navigate to the generated profile directory
cd .rspack-profile-*/

# Run the analysis script
node ${CLAUDE_PLUGIN_ROOT}/skills/tracing/scripts/analyze_trace.js trace.json

4. Interpret Results

Use the output from the script to identify bottlenecks. Consult [references/bottlenecks.md](references/bottlenecks.md) to map span names to actionable fixes.

5. Locate Slow Plugins

Based on the "Top Slowest Hooks" from the analysis script:

  1. Identify the Hook: Note the hook name (e.g., hook:CompilationOptimizeChunks).
  2. Inspect Configuration: Read rspack.config.js or rsbuild.config.ts.
  3. Map Hook to Plugin: Look for plugins and their sources that tap into that specific hook.
  4. Output: Output the paths, lines and columns of the suspected plugin source code.

Common Scenarios & Quick Fixes

  • [Bottleneck Reference](references/bottlenecks.md): Mapping spans to concepts.
  • [Tracing Guide](references/tracing-guide.md): Detailed usage of RSPACK_PROFILE.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.