Install
$ agentstack add skill-ggombee-code-forge-node-express ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Node.js Express/Fastify 컨벤션
프로젝트 구조
src/
├── app.ts # 앱 초기화, 미들웨어 등록
├── server.ts # 서버 진입점 (app.ts와 분리)
├── routes/ # 라우터 모음
├── controllers/ # 요청/응답 처리
├── services/ # 비즈니스 로직
├── middleware/ # 커스텀 미들웨어
├── models/ # DB 모델 (Prisma schema 또는 ORM)
└── types/ # 공유 TypeScript 타입
네이밍 규칙
- 파일:
camelCase.ts또는kebab-case.ts(프로젝트 일관성 유지) - 클래스:
PascalCase - 함수/변수:
camelCase - 환경변수:
UPPER_SNAKE_CASE - 라우트 경로:
kebab-case(예:/user-profiles)
에러 처리
- 중앙 집중식 에러 핸들러 미들웨어 (
middleware/errorHandler.ts) AppError커스텀 클래스로 상태 코드 + 메시지 캡슐화- async 라우터는
express-async-errors또는try-catchwrapper 사용
테스트
Jest+supertest조합- 서비스 레이어 단위 테스트 + 라우터 통합 테스트
- DB mock:
jest.mock또는 테스트 전용 DB 인스턴스
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: ggombee
- Source: ggombee/code-forge
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.