en un clic
backend
Build reliable, scalable, and secure server-side systems.
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Menu
Build reliable, scalable, and secure server-side systems.
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Basé sur la classification professionnelle SOC
Plan, reason, and verify across multiple levels using multi-step reasoning, tree-of-thought, and structured agent workflows.
Detect and repair security vulnerabilities or operational errors in the agent's own code and environment without manual intervention.
Generate and apply complete design systems from text descriptions or visual examples using AI and modern tooling.
Adapt user interfaces automatically based on device, viewport, user preferences, and contextual signals.
Build and query knowledge graphs automatically to capture relationships between entities, concepts, and project artifacts.
Run agent tasks in isolated, sandboxed environments to prevent malicious or untrusted code from affecting the host system.
| name | backend |
| description | Build reliable, scalable, and secure server-side systems. |
Category: Backend Priority: High
Build reliable, scalable, and secure server-side systems.
Ensure data integrity, system availability, and API correctness.
Use this skill when:
export async function createOrder(req: Request, res: Response) {
const { userId, items } = CreateOrderSchema.parse(req.body);
const correlationId = req.headers["x-correlation-id"] || uuid();
logger.info({ correlationId, userId, itemCount: items.length }, "Creating order");
try {
const order = await db.transaction(async (trx) => {
const order = await OrderRepository.create({ userId }, trx);
await OrderItemRepository.createBulk(order.id, items, trx);
return order;
});
res.status(201).json(order);
} catch (error) {
logger.error({ correlationId, error }, "Order creation failed");
res.status(500).json({ error: "Order creation failed", correlationId });
}
}
function createOrder(req, res) {
const order = db.query(`INSERT INTO orders (user_id) VALUES (${req.body.userId})`);
res.send(order);
}