nodejs-backend-typescript

Warn

Audited by Runlayer on Feb 21, 2026

Risk Level: MEDIUM
Scan Summary
Max Score
78%
Files
2
Flagged
2
Chunks
4
Flagged Files (2)
SKILL.mdHIGH
78.3%

Malicious tool definition detected

Tool: SKILL.md [1/3] Description: --- name: nodejs-backend-typescript description: "Node.js backend development with TypeScript, Express/Fastify servers, routing, middleware, and database integration" progressive_disclosure: entry_point: summary: "Node.js backend development with TypeScript, Express/Fastify servers, routing, middleware, and database integration" when_to_use: "When working with nodejs-backend-typescript or related functionality." quick_start: "1.

Tool: SKILL.md [2/3] Description: = result.data; // Type-safe user object }); ``` ### TypeBox with Fastify ```typescript import { Type, Static } from '@sinclair/typebox'; const UserSchema = Type.Object({ email: Type.String({ format: 'email' }), password: Type.String({ minLength: 8 }), profile: Type.Object({ firstName: Type.String(), lastName: Type.String(), age: Type.Integer({ minimum: 0 }), }), tags: Type.Optional(Type.Array(Type.String())), }); type User = Static<typeof UserSchema>; fastify.po

RUN npm run build FROM node:20-alpine WORKDIR /app COPY package*.json ./ RUN npm ci --omit=dev COPY --from=builder /app/dist ./dist ENV NODE_ENV=production EXPOSE 3000 CMD ["node", "dist/server.js"] ``` **docker-compose.yml**: ```yaml version: '3.8' services: app: build: .

metadata.jsonHIGH
78.3%

Malicious tool definition detected

Tool: metadata.json Description: { "name": "nodejs-backend", "version": "1.0.0", "category": "toolchain", "toolchain": "typescript", "framework": "nodejs", "tags": [ "backend", "nodejs", "express", "fastify", "rest-api", "typescript", "jwt",

Audit Metadata
Max File Score
78%
Classification
UNKNOWN_SERVER
Files Scanned
2
Files Flagged
2
Chunks Analyzed
4
Analyzed
Feb 21, 2026, 08:59 PM
Security Audit — runlayer — nodejs-backend-typescript