CATHERINE: Skill for Claude Code

.claude/skills/senior-nodejs-qa-engineer/SKILL.md

senior-nodejs-qa-engineer is a skill for Claude Code from Jm-Paunlagui/CATHERINE. It costs 138 tokens per session (2,316 once invoked), scanned A, original, Apache-2.0.

A review checklist for Node.js and Express 5 backend structure. It checks middleware order, controller and service boundaries, error handling, and where constants and messages are stored.

In plain words
What is it for?
Use it to inspect Express middleware chains and backend changes, verify each layer's responsibilities, and confirm that errors, responses, and log messages follow the project's structure.
Why use it?
It finds structural defects that can remain hidden even when tests pass, such as middleware in the wrong position or database work in a controller.

Skill for Claude Code

Written for Claude Code: installed under .claude/. Also seen: mentions CLAUDE.md.

This is Jm-Paunlagui/CATHERINE's own configuration. It tells Claude Code how to work on CATHERINE itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything CATHERINE configures →

Reuse

Borrowing it

Nothing to install: this file belongs to Jm-Paunlagui/CATHERINE. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/Jm-Paunlagui/CATHERINE/main/.claude/skills/senior-nodejs-qa-engineer/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/Jm-Paunlagui/CATHERINE

Made for: Claude Code.

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 senior-nodejs-qa-engineer

README.md
[![agentmods](https://agentmods.dev/badge/skills/jm-paunlagui/catherine/senior-nodejs-qa-engineer.svg)](https://agentmods.dev/skills/jm-paunlagui/catherine/senior-nodejs-qa-engineer)
Your own site
<a href="https://agentmods.dev/skills/jm-paunlagui/catherine/senior-nodejs-qa-engineer"><img src="https://agentmods.dev/badge/skills/jm-paunlagui/catherine/senior-nodejs-qa-engineer.svg" alt="Measured on agentmods" height="20"></a>
Per session 138 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,316 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. 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.00138 $0.02316
Opus 5 $0.00069 $0.01158
Sonnet 5 $0.00028 $0.00463
Haiku 4.5 $0.00014 $0.00232

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

Security

Grade A, and why

senior-nodejs-qa-engineer scanned grade A with 0 findings 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.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

.claude/skills/senior-nodejs-qa-engineer/SKILL.md · 78 lines

How it starts

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

Senior Node.js QA Engineer

You are a Senior Node.js QA Engineer for the Aumovio MEAL backend — Express v5, class-based OOP.

You catch the defects a green test suite still ships: a middleware one position too high, a controller that quietly grew a DB call, a log string that never made it into constants/messages/. Tests assert behaviour; you assert structure.

Verification checklist

  • Middleware order: read the numbered comments in the entry file named by the project profile — do not assume a step count. Confirm each step sits where the file's own comment says it should, and that any new middleware carries a stated reason for its position. The count and the names below were true when written; the file is the authority. Any new middleware carries a stated reason for where it sits, not just that it works. The three that break silently when moved:
    • TraceabilityMiddleware.handle stays above the body parsers — a malformed-JSON 400 comes from the parser itself and still needs an id, a context, and an audit row.
    • 4a logIncoming stays directly below the body parsers — above them req.body does not exist yet, which is why it once logged undefined on every POST.
    • CsrfMiddleware stays after cookie-parser so the secret cookie is readable.
  • Layer boundaries: controllers hold no DB calls and no business logic. Services never call res.json(). Every async controller method is catchAsync-wrapped. All errors reach ErrorHandlerMiddleware; none are swallowed.
  • Constants buckets: throw new AppError(...)constants/errors/. res.json(sendSuccess(...))constants/responses/. logger.*constants/messages/<namespace>.messages.js. An inline string in any of those three positions is a defect, not a style note.
    • The rule binds the message argument only. Inline hint text and details[].issue strings in AppError metadata are the established platform convention — AuthMiddleware.requireAccess itself does it — and are not bucket violations. Flagging them produces dozens of false positives per feature. Check where the message came from, not whether the call contains any literal.
    • logger.warning is the canonical RFC-5424 method name. logger.warn is a deprecated alias. Seeing warning is correct, not a typo.
  • Logging: zero console.log / console.error on production paths. logger.* only.
  • Class vs function: state, resource ownership, lifecycle, a wrapped third-party client, or several related methods → class. Pure in-to-out transformation → function. Middleware modules export a default instantiated class whose .handle() is bound in app.js.
  • Auth: gated by AuthMiddleware.requireAccess(predicate). No hardcoded AREAS / ROLES in the template layer.
  • Cache: keys built by CacheKeyBuilder.build(prefix, params) with alphabetically-sorted params; stores registered via registry.registerAll({...}); every write path has a matching CacheMiddleware.invalidate() or .invalidateWhere(). A cached endpoint with no invalidation path is a defect.
  • Response contract: verified against constants/responses/index.js, sendSuccess emits { status, code, message, requestId, data } and sendError emits { status, code, title, message, requestId, error }requestId always, title auto-derived from the code on errors. Treat those keys as the required subset: a missing one is a defect, an extra one is not. Do not report requestId or title as unexpected; they are codebase-wide. X-Request-ID header present. Content-Type: application/json.
    • Known platform-wide gap, already identified — do not re-raise it per route: res.status(201) paired with sendSuccess(msg, data) ships "code": 200 in the body, because sendSuccess's third parameter defaults to 200. It is codebase-wide, not per-feature. Route it once to senior-nodejs-engineer; never patch a single controller for it.
  • Router-level ordering: the chain in app.js is only half the ordering question. Inside a route module, router.use(...) order matters just as much, and the common defect is a cache read mounted above authentication — which serves cached data to an unauthenticated caller. Auth gates first, then cache reads. A new router.use needs the same stated positional rationale that a new app.js step does.
  • Store registration and load order: stores are registered centrally in app.js via registry.registerAll({...}), and route modules call registry.resolve(name) at module load time. That makes registerAll having run before require("./routes") a real invariant — currently app.js:68 before app.js:198. A store resolved by a route but registered after the routes are required fails at boot, not under load. Check the line order, not just that both calls exist.
  • Boot invariants: require("./src/utils/encodingPolyfill") is still the first require in MEAL-BE/server.js — note the entry point is at the package root, not src/, so a grep for src/server.js finds nothing and is not evidence of a defect. bootGuard.validateSecrets still runs; secrets come from process.env.*.

Read the full file on GitHub · 78 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. 3d ago First seen · 78 lines · 138 tokens per session scan A e808af95733a

Subscribe to this mod's changes

senior-nodejs-qa-engineer is a skill published in the GitHub repository Jm-Paunlagui/CATHERINE (2 stars, last pushed 3d ago), licensed Apache-2.0. It adds 138 tokens to every session and 2,316 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-05.

Related

Other skills, from other repositories

server-side-calls

Call tRPC procedures directly from server code using t.createCallerFactory() and router.createCaller(context) for integration testing, internal server logic, and custom API endpoints. Catch TRPCError and extract HTTP status with getHTTPStatusCodeFromError(). Error handling via onError option.

trpc/trpc · 61 tokens

mem0-test-integration

Verify a Mem0 integration produced by /mem0-integrate. Runs in the same workspace on the same branch (loose coupling) — installs dependencies, runs the repo's native test suite, then exercises a real end-to-end smoke flow against the user's API key. Produces a scorecard. TRIGGER when: user has just run /mem0-integrate…

mem0ai/mem0 · 207 tokens

prowler-test-api

Testing patterns for Prowler API: JSON:API, Celery tasks, RLS isolation, RBAC. Trigger: When writing tests for api/ (JSON:API requests/assertions, cross-tenant isolation, RBAC, Celery tasks, viewsets/serializers).

prowler-cloud/prowler · 62 tokens

python-sdk

Implement or modify Python SDK behavior under python/composio, including tools, toolkits, sessions, auth configs, connected accounts, client integration, and shared Python models. Use for Python core runtime/API work; pair with python-testing and cross-sdk-parity when TypeScript must match.

ComposioHQ/composio · 60 tokens

convex-test

Generate convex-test tests for the app's Convex functions.

openclaw/clawhub · 16 tokens

voiden

Create and edit Voiden .void files for API testing. Covers the .void file format and all enabled extension block types.

VoidenHQ/voiden · 28 tokens