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.
curl -O https://raw.githubusercontent.com/Jm-Paunlagui/CATHERINE/main/.claude/skills/senior-nodejs-qa-engineer/SKILL.mdgit clone --depth 1 https://github.com/Jm-Paunlagui/CATHERINEWrote 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.
[](https://agentmods.dev/skills/jm-paunlagui/catherine/senior-nodejs-qa-engineer)<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>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.
| Model | Per session | Once 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 |
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.
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.handlestays 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 logIncomingstays directly below the body parsers — above themreq.bodydoes not exist yet, which is why it once loggedundefinedon every POST.CsrfMiddlewarestays 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 iscatchAsync-wrapped. All errors reachErrorHandlerMiddleware; 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
messageargument only. Inlinehinttext anddetails[].issuestrings inAppErrormetadata are the established platform convention —AuthMiddleware.requireAccessitself 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.warningis the canonical RFC-5424 method name.logger.warnis a deprecated alias. Seeingwarningis correct, not a typo.
- The rule binds the
- Logging: zero
console.log/console.erroron 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 inapp.js. - Auth: gated by
AuthMiddleware.requireAccess(predicate). No hardcodedAREAS/ROLESin the template layer. - Cache: keys built by
CacheKeyBuilder.build(prefix, params)with alphabetically-sorted params; stores registered viaregistry.registerAll({...}); every write path has a matchingCacheMiddleware.invalidate()or.invalidateWhere(). A cached endpoint with no invalidation path is a defect. - Response contract: verified against
constants/responses/index.js,sendSuccessemits{ status, code, message, requestId, data }andsendErroremits{ status, code, title, message, requestId, error }—requestIdalways,titleauto-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 reportrequestIdortitleas unexpected; they are codebase-wide.X-Request-IDheader present.Content-Type: application/json.- Known platform-wide gap, already identified — do not re-raise it per route:
res.status(201)paired withsendSuccess(msg, data)ships"code": 200in the body, becausesendSuccess's third parameter defaults to 200. It is codebase-wide, not per-feature. Route it once tosenior-nodejs-engineer; never patch a single controller for it.
- Known platform-wide gap, already identified — do not re-raise it per route:
- Router-level ordering: the chain in
app.jsis 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 newrouter.useneeds the same stated positional rationale that a newapp.jsstep does. - Store registration and load order: stores are registered centrally in
app.jsviaregistry.registerAll({...}), and route modules callregistry.resolve(name)at module load time. That makesregisterAllhaving run beforerequire("./routes")a real invariant — currentlyapp.js:68beforeapp.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 firstrequireinMEAL-BE/server.js— note the entry point is at the package root, notsrc/, so a grep forsrc/server.jsfinds nothing and is not evidence of a defect.bootGuard.validateSecretsstill runs; secrets come fromprocess.env.*.
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.
- 3d ago First seen · 78 lines · 138 tokens per session scan A e808af95733a
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.
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.
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…
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).
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.
convex-test
Generate convex-test tests for the app's Convex functions.
voiden
Create and edit Voiden .void files for API testing. Covers the .void file format and all enabled extension block types.