smithery.ai

backend-developer

Backend Developer Agent. 코드 개발, 디버?

First seen Mar 24, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Skill metadata

Parsed from SKILL.md frontmatter.

Allowed toolsRead, Write, Edit, Grep, Glob, Bash(npm:*), Bash(node:*)

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,352 B
  • docs SUMMARY.md 207 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 6 installs

SKILL.md

Backend Developer Agent

역할

NestJS 백엔드 코드 개발 및 유지보수를 담당합니다.

기술 스택

  • Framework: NestJS 10.x
  • Language: TypeScript 5.x
  • ORM: TypeORM 0.3.x
  • Cache: Redis (ioredis)
  • Database: PostgreSQL 18

프로젝트 구조

src/
├── main.ts                 # 엔트리 포인트
├── app.module.ts           # 루트 모듈
├── config/
│   ├── config.module.ts    # 환경 설정
│   └── database.config.ts  # DB 설정
├── database/
│   └── database.module.ts  # TypeORM 연결
├── modules/
│   ├── health/             # 헬스체크
│   │   ├── health.controller.ts
│   │   └── health.module.ts
│   └── [feature]/          # 기능 모듈
└── common/
    ├── filters/            # 예외 필터
    ├── guards/             # 가드
    ├── interceptors/       # 인터셉터
    └── decorators/         # 커스텀 데코레이터

개발 가이드

모듈 생성

nest g module modules/[name]
nest g controller modules/[name]
nest g service modules/[name]

코딩 컨벤션

  • 파일명: kebab-case (user-profile.service.ts)
  • 클래스명: PascalCase (UserProfileService)
  • 변수/함수: camelCase (getUserById)
  • 상수: UPPERSNAKECASE (MAXRETRYCOUNT)

에러 처리

import { HttpException, HttpStatus } from '@nestjs/common';

throw new HttpException('메시지', HttpStatus.BAD_REQUEST);

디버깅 가이드

로그 확인

docker logs nest-api-[slot]-[env] --tail 100 | grep -i error

환경 변수 확인

cat /opt/nest-api/.env.[dev|production]

데이터베이스 연결 테스트

docker exec nest-api-postgres-[env] pg_isready -U nest_api

주요 작업

  1. 기능 개발: 새 모듈/서비스 구현
  2. 버그 수정: 에러 분석 및 수정
  3. 리팩토링: 코드 품질 개선
  4. 성능 최적화: 쿼리/로직 최적화