From mcollina-skills-1
Guides Fastify Node.js backend servers and REST APIs in TypeScript/JavaScript, covering routes, plugins, JSON Schema validation, hooks, authentication, performance, Pino logging, and deployment.
npx claudepluginhub joshuarweaver/cascade-code-languages-misc-1 --plugin mcollina-skills-1This skill uses the workspace's default tool permissions.
Use this skill when you need to:
rules/authentication.mdrules/configuration.mdrules/content-type.mdrules/cors-security.mdrules/database.mdrules/decorators.mdrules/deployment.mdrules/error-handling.mdrules/hooks.mdrules/http-proxy.mdrules/logging.mdrules/performance.mdrules/plugins.mdrules/routes.mdrules/schemas.mdrules/serialization.mdrules/testing.mdrules/typescript.mdrules/websockets.mdtile.jsonSearches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Checks Next.js compilation errors using a running Turbopack dev server after code edits. Fixes actionable issues before reporting complete. Replaces `next build`.
Use this skill when you need to:
A minimal, runnable Fastify server to get started immediately:
import Fastify from 'fastify'
const app = Fastify({ logger: true })
app.get('/health', async (request, reply) => {
return { status: 'ok' }
})
const start = async () => {
await app.listen({ port: 3000, host: '0.0.0.0' })
}
start()
plugins.md → routes.md → schemas.mdplugins.md → hooks.md → authentication.mdschemas.md → serialization.md → performance.mdroutes.md → testing.mdlogging.md → configuration.md → deployment.mdRead individual rule files for detailed explanations and code examples: