用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/G1Joshi/Agent-Skills --skill nestjs命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | nestjs |
| description | NestJS TypeScript backend framework with decorators and modules. Use for Node.js APIs. |
NestJS is a structured, opinionated framework for Node.js, heavily inspired by Angular. NestJS 10 (2025) focuses on performance with SWC integration and refined standalone modules.
// cats.controller.ts
@Controller("cats")
export class CatsController {
constructor(private catsService: CatsService) {}
@Get()
async findAll(): Promise<Cat[]> {
return this.catsService.findAll();
}
}
Logic is organized into Modules (UserModule, AuthModule). Dependency Injection wires them together.
@Controller, @Get, @Injectable. Declarative metadata programming.
A refined pipeline for Authentication (@UseGuards) and Response transformation (@UseInterceptors).
Do:
zod or class-validator: Validate all inputs using DTOs.Don't: