nodejs-expert

nodejs-expert is an agent for Claude Code from GoogilyBoogily/googilyboogily-claude-power-tools. It costs 42 tokens per session (2,337 once invoked), scanned A, original, MIT.

A Node.js troubleshooting assistant for problems in the JavaScript runtime used to run server-side programs and command-line tools. It covers asynchronous code, modules, streams, servers, and processes.

In plain words
What is it for?
Use it to investigate event-loop behavior, promises, memory use, module resolution, stream handling, HTTP servers, and child processes.
Why use it?
It helps diagnose runtime failures such as memory leaks, stuck asynchronous work, broken imports, and incorrectly configured HTTP servers.

Agent for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: model in frontmatter; mentions subagents.

Part of the nodejs-agents plugin — 2 agents shipped together

Good fit Use it to investigate event-loop behavior, promises, memory use, module resolution, stream handling, HTTP servers, and child processes.

Compare 6 agents from other repositories ↓
Install with agentmods
npx agentmods add agents/googilyboogily/googilyboogily-claude-power-tools/nodejs-expert
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Clone the repo
git clone --depth 1 https://github.com/GoogilyBoogily/googilyboogily-claude-power-tools

Made for: Claude Code.

Or install nodejs-agents, the plugin that ships this one along with the rest of its 2 agents.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for nodejs-expert

README.md
[![agentmods](https://agentmods.dev/badge/agents/googilyboogily/googilyboogily-claude-power-tools/nodejs-expert/github.svg)](https://agentmods.dev/agents/googilyboogily/googilyboogily-claude-power-tools/nodejs-expert)
Your own site
<a href="https://agentmods.dev/agents/googilyboogily/googilyboogily-claude-power-tools/nodejs-expert"><img src="https://agentmods.dev/badge/agents/googilyboogily/googilyboogily-claude-power-tools/nodejs-expert/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for nodejs-expert

Your own site · 80×15
<a href="https://agentmods.dev/agents/googilyboogily/googilyboogily-claude-power-tools/nodejs-expert"><img src="https://agentmods.dev/badge/agents/googilyboogily/googilyboogily-claude-power-tools/nodejs-expert.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 42 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 2,337 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00042 $0.02337
Opus 5 $0.00021 $0.01169
Sonnet 5 $0.00008 $0.00467
Haiku 4.5 $0.00004 $0.00234

Measured 9d ago against content hash 9df3f3c6a086, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

nodejs-expert scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

**Diagnostics:** `curl -v --connect-timeout 5 http://localhost:3000/health`
plugins/nodejs-agents/agents/nodejs-expert.md · 200 lines

How it starts

The opening of the file, as written. The whole thing — 200 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Node.js Expert

You are an advanced Node.js expert specializing in runtime debugging, async patterns, module systems, performance optimization, and production troubleshooting.

Step 0: Route or Stay

If the issue requires ultra-specific expertise, recommend switching and STOP:

  • Database connection pooling or query optimization -> database-expert
  • Unit/integration testing, mocking strategies -> testing-expert
  • Docker containerization, deployment -> docker-expert
  • Webpack bundling issues -> webpack-expert
  • Vite bundling issues -> vite-expert
  • TypeScript compilation or type errors -> typescript-expert
  • Next.js framework-specific issues -> nextjs-expert
  • NestJS framework-specific issues -> nestjs-expert
  • Performance profiling beyond Node.js runtime -> performance-engineer

Output: "This requires [X] expertise. Please invoke the [agent-name] subagent. Stopping here." Do not continue after routing.

STOP Conditions

  • STOP if the problem is not Node.js runtime-related (route per Step 0)
  • STOP after applying a fix and confirming it works -- do not refactor further unless asked
  • STOP if you cannot reproduce the issue after 2 diagnostic attempts -- report findings and ask the user for more context
  • STOP if the fix requires changes to infrastructure, CI/CD, or deployment -- route to devops-expert

Methodology

  1. Detect project setup (use Read/Grep/Glob first, shell as fallback):
    • Node version, package manager (check lockfiles), module type (package.json "type" field), framework
  2. Identify the problem category from the playbooks below
  3. Apply the fix
  4. Validate: node --check <file> for syntax; node --trace-warnings --unhandled-rejections=strict for runtime

Playbook 1: Async & Promises

Symptom Cause Fix
UnhandledPromiseRejectionWarning Missing .catch() or try/catch Add try { await op() } catch (e) { handle(e) }
Promise.all fails on first rejection One failure kills batch Use Promise.allSettled(), check each result.status
Function returns [object Promise] Missing await Add await at call site
Async errors silently swallowed .catch() with no action Log + rethrow or handle meaningfully

Read the full file on GitHub · 200 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 200 lines · 42 tokens per session scan A 9df3f3c6a086

Subscribe to this mod's changes

nodejs-expert is an agent published in the GitHub repository GoogilyBoogily/googilyboogily-claude-power-tools (2 stars, last pushed 4mo ago), licensed MIT. It adds 42 tokens to every session and 2,337 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other agents, from other repositories

call-tracer

Orchestrates parallel call tree tracing using subagents for each entry point category (Controllers, LiveViews, Workers, GenServers). Use proactively when debugging unexpected values, tracing request flow, or planning signature changes.

oliver-kriska/claude-elixir-phoenix · 46 tokens

Drupal Shopping Cart Engineer

Expert Drupal e-commerce engineer specializing in Drupal Commerce for product catalog management, payment gateway integration, checkout workflow design, order management, tax and promotion configuration, and high-reliability storefront delivery on Drupal 10/11.

SHAdd0WTAka/Zen-Ai-Pentest · 48 tokens

Incident Response Commander

Expert incident commander specializing in production incident management, structured response coordination, post-mortem facilitation, SLO/SLI tracking, and on-call process design for reliable engineering organizations.

SHAdd0WTAka/Zen-Ai-Pentest · 41 tokens

Email Intelligence Engineer

Expert in extracting structured, reasoning-ready data from raw email threads for AI agents and automation systems.

SHAdd0WTAka/Zen-Ai-Pentest · 22 tokens

Identity & Access Engineer

Expert identity engineer for OAuth 2.0/OIDC flows, enterprise SSO (SAML/OIDC) and SCIM provisioning, passkeys/WebAuthn, session architecture, and multi-tenant authorization with RBAC/ABAC.

SHAdd0WTAka/Zen-Ai-Pentest · 53 tokens

MCP Builder

Expert Model Context Protocol developer who designs, builds, and tests MCP servers that extend AI agent capabilities with custom tools, resources, and prompts.

SHAdd0WTAka/Zen-Ai-Pentest · 32 tokens