code-reviewer-nodejs

code-reviewer-nodejs is a skill for Claude Code, Codex from korbinjoe/TeemAI. It costs 103 tokens per session (1,593 once invoked), scanned A, original, MIT.

A code-review guide for Node.js backends, the server-side programs that run JavaScript outside a web browser.

In plain words
What is it for?
Use it to review backend JavaScript or TypeScript files such as routes, middleware, services, and command-line tools.
Why use it?
It helps find problems with asynchronous code, streams, middleware, resource use, errors, and security.

Skill for Claude CodeCodex

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.

agentmods
npx agentmods add skills/korbinjoe/teemai/code-reviewer-nodejs
Any agent
npx skills add korbinjoe/TeemAI --skill code-reviewer-nodejs
Clone the repo
git clone --depth 1 https://github.com/korbinjoe/TeemAI

Made for: Claude Code, Codex.

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 code-reviewer-nodejs

README.md
[![agentmods](https://agentmods.dev/badge/skills/korbinjoe/teemai/code-reviewer-nodejs.svg)](https://agentmods.dev/skills/korbinjoe/teemai/code-reviewer-nodejs)
Your own site
<a href="https://agentmods.dev/skills/korbinjoe/teemai/code-reviewer-nodejs"><img src="https://agentmods.dev/badge/skills/korbinjoe/teemai/code-reviewer-nodejs.svg" alt="Measured on agentmods" height="20"></a>
Per session 103 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,593 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. Scan, not verified.
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 $0.00103 $0.01593
Opus 5 $0.00051 $0.00796
Sonnet 5 $0.00021 $0.00319
Haiku 4.5 $0.00010 $0.00159

Measured 3d ago against content hash d52a8acf169f, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

code-reviewer-nodejs 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 3d 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.

Runs shell commandslowCapability

Expected in a hook, worth knowing in a rule or an instructions file.

- Whether child process (`child_process`) stdin/stdout/stderr are properly handled
ai-assets/skills/code-reviewer-nodejs/SKILL.md · 166 lines

How it starts

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

Positioning

Focused on Node.js runtime and backend development patterns review. Checks async correctness, resource management, and middleware design.

Difference from code-reviewer-typescript: TS skill focuses on compile-time type system; this skill focuses on runtime behavior. Difference from code-reviewer-react: React skill focuses on frontend components; this skill focuses on backend services.

Execution timing: When reviewing Node.js backend code (routes, middleware, service layer, CLI tools, etc.) Scan scope: Specified files, or file list obtained via git diff


Review Process

Step 1: Determine Review Scope

  1. Files or directories explicitly specified by user
  2. User mentions PR or branch → run git diff --name-only <base>..HEAD
  3. None of the above → ask user which files to review

Only review backend-related .ts / .js / .mjs / .cjs files. Skip test files, type declarations, config files, and frontend component files.

Step 2: Per-file Review

Read the complete file content first, understand context, then check each item.

Step 3: Summary Report

Generate a structured report using the output template at the bottom.


Review Checklist

1. Async Patterns

Node.js's async model is its core characteristic — incorrect async handling is the primary source of backend bugs.

Check items:

  • Whether async/await has complete try-catch error handling
  • Whether unawaited Promises exist (fire-and-forget must explicitly state intent)
  • Whether Promise concurrency is appropriate — Promise.all vs Promise.allSettled choice
  • Whether callback hell exists (callbacks nested more than 3 levels deep) → refactor to async/await
  • Whether errors in Promise.all would cause other task results to be lost → consider allSettled
  • Concurrency control — whether concurrency limits are needed (e.g., batch API calls)

2. Event Loop

Blocking the event loop is a fatal issue for Node.js services.

Check items:

  • Whether synchronous blocking operations (fs.readFileSync, crypto.pbkdf2Sync, etc.) exist in request handling paths
  • Whether CPU-intensive tasks consider Worker Threads or process pools
  • Whether process.nextTick vs setImmediate usage is correct
  • Whether large loops or recursion could block the event loop
  • Whether timers (setInterval/setTimeout) have cleanup mechanisms
  • Whether event listener leaks exist (EventEmitter maxListeners warning)

Read the full file on GitHub · 166 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 3d ago First seen · 166 lines · 103 tokens per session scan A d52a8acf169f

Subscribe to this mod's changes

code-reviewer-nodejs is a skill published in the GitHub repository korbinjoe/TeemAI (2 stars, last pushed 2mo ago), licensed MIT. It adds 103 tokens to every session and 1,593 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 1 finding (runs shell commands). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

agent-spec-tool-first

CRITICAL: Use for agent-spec CLI tool workflow. Triggers on: agent-spec, contract, lifecycle, guard, verify, explain, stamp, checkpoint, plan, requirements, work-units, knowledge requirements, KLL, docs vs knowledge, spec verification, task contract, spec quality, lint spec, run log, "how to verify", "how to use…

ZhangHanDong/agent-spec · 165 tokens

importing-a-codebase

Use when the repo holds real source code but no specs: the existing-codebase branch of setting-up-a-project, normally reached via that dispatcher, directly only when the situation is unmistakable. Not for empty workspaces (starting-a-new-project) or feature work in a specced project (brainstorming).

JetBrains/thinkrail · 69 tokens

starting-a-new-project

Use when the workspace is empty — no code yet — and the user brings a raw idea: the brand-new branch of setting-up-a-project, normally reached via that dispatcher, directly only when the situation is unmistakable. Not for features in an existing project — use brainstorming instead.

JetBrains/thinkrail · 61 tokens

agent-spec-authoring

CRITICAL: Use for writing and editing agent-spec .spec/.spec.md files. Triggers on: write spec, create spec, edit spec, new spec, spec authoring, task contract, .spec file, .spec.md file, BDD scenario, acceptance criteria, completion criteria, test selector, boundary, constraint, intent, decision, out of scope, "how…

ZhangHanDong/agent-spec · 172 tokens

agent-spec-estimate

CRITICAL: Use for estimating work effort from agent-spec Task Contracts. Triggers on: estimate, estimation, how long, work effort, round count, time estimate, scope, sizing, cost, budget, planning, sprint, capacity, "how many rounds", "how long will this take", "estimate this spec", 估算, 工作量, 多久, 时间估算, 预估, 工时, 规模…

ZhangHanDong/agent-spec · 116 tokens

agent-spec-intent-compiler

Use when converting PRD or issue prose into KLL requirements, running the intent compiler plan, or reverse-interviewing a human to resolve requirement ambiguity before task spec generation.

ZhangHanDong/agent-spec · 42 tokens