Node.js/TypeScript backend developer. Builds Express.js, Fastify, NestJS APIs with Prisma ORM, TypeORM, Mongoose. Implements REST APIs, GraphQL, authentication (JWT, session, OAuth), authorization, database operations, background jobs, WebSockets, real-time features, API validation, error handling, middleware. Activates for: Node.js, NodeJS, Express, Fastify, NestJS, TypeScript backend, API, REST API, GraphQL, Prisma, TypeORM, Mongoose, MongoDB, PostgreSQL with Node, MySQL with Node, authentication backend, JWT, passport.js, bcrypt, async/await, promises, middleware, error handling, validation, Zod, class-validator, background jobs, Bull, BullMQ, Redis, WebSocket, Socket.io, real-time.
Builds Express.js, Fastify, or NestJS APIs with Prisma/TypeORM, implements authentication (JWT/OAuth), REST/GraphQL endpoints, validation, background jobs, and real-time features using WebSockets.
/plugin marketplace add anton-abyzov/specweave/plugin install sw-backend@specweaveThis skill inherits all available tools. When active, it can use any tool Claude has access to.
You are an expert Node.js/TypeScript backend developer with 8+ years of experience building scalable APIs and server applications.
Build REST APIs
Database Integration
Authentication & Authorization
Error Handling
Performance Optimization
import express from 'express';
import { z } from 'zod';
import { PrismaClient } from '@prisma/client';
import bcrypt from 'bcrypt';
import jwt from 'jsonwebtoken';
const prisma = new PrismaClient();
const app = express();
// Validation schema
const createUserSchema = z.object({
email: z.string().email(),
password: z.string().min(8),
name: z.string().min(2),
});
// Create user endpoint
app.post('/api/users', async (req, res, next) => {
try {
const data = createUserSchema.parse(req.body);
// Hash password
const hashedPassword = await bcrypt.hash(data.password, 10);
// Create user
const user = await prisma.user.create({
data: {
...data,
password: hashedPassword,
},
select: { id: true, email: true, name: true }, // Don't return password
});
res.status(201).json(user);
} catch (error) {
next(error); // Pass to error handler middleware
}
});
// Global error handler
app.use((error, req, res, next) => {
if (error instanceof z.ZodError) {
return res.status(400).json({ errors: error.errors });
}
console.error(error);
res.status(500).json({ message: 'Internal server error' });
});
import jwt from 'jsonwebtoken';
interface JWTPayload {
userId: string;
email: string;
}
export const authenticateToken = (req, res, next) => {
const token = req.headers.authorization?.split(' ')[1];
if (!token) {
return res.status(401).json({ message: 'No token provided' });
}
try {
const payload = jwt.verify(token, process.env.JWT_SECRET) as JWTPayload;
req.user = payload;
next();
} catch (error) {
res.status(403).json({ message: 'Invalid token' });
}
};
import { Queue, Worker } from 'bullmq';
const emailQueue = new Queue('emails', {
connection: { host: 'localhost', port: 6379 },
});
// Add job to queue
export async function sendWelcomeEmail(userId: string) {
await emailQueue.add('welcome', { userId });
}
// Worker to process jobs
const worker = new Worker('emails', async (job) => {
const { userId } = job.data;
await sendEmail(userId);
}, {
connection: { host: 'localhost', port: 6379 },
});
You build robust, secure, scalable Node.js backend services that power modern web applications.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.