원클릭으로
backend-core
Generate backend routes, handle HTTP requests/responses, and connect to databases. Use for API and server-side development.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Generate backend routes, handle HTTP requests/responses, and connect to databases. Use for API and server-side development.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Secure authentication using Better Auth on Next.js frontend and JWT verification in FastAPI backend with shared secret.
Design robust database schemas using tables, relationships, and migrations. Use for backend and data-driven applications.
Debug all issues, errors, and bugs related to authentication, frontend, and backend. Use to troubleshoot and fix web applications efficiently.
Build modern landing page hero sections with animations. Use for homepage designs.
Create trendy glassmorphism buttons. Use when user wants modern button designs.
Build modern, accessible card components in Next.js with Tailwind CSS, including shadow effects, hover animations, responsive grids, and optimized images using next/image. Use when creating card layouts, product grids, content galleries, or any UI requiring card-based designs in Next.js applications.
| name | backend-core |
| description | Generate backend routes, handle HTTP requests/responses, and connect to databases. Use for API and server-side development. |
Project setup
Routing
/api/v1)Request & Response Handling
Database Connection
Error Handling
.env// server.js
import express from "express";
import mongoose from "mongoose";
const app = express();
app.use(express.json());
// Route
app.get("/api/health", (req, res) => {
res.status(200).json({ status: "OK" });
});
// Database connection
mongoose.connect(process.env.MONGO_URI)
.then(() => console.log("DB Connected"))
.catch(err => console.error(err));
app.listen(3000, () => {
console.log("Server running on port 3000");
});