skills/smithery.ai/agentic-jumpstart-backend

agentic-jumpstart-backend

Installation
SKILL.md

Backend Development Patterns

Server Functions

Standard Pattern

Server functions require: middleware, input validator, and should call use cases (not data-access directly).

import { createServerFn } from "@tanstack/react-start";
import { authenticatedMiddleware } from "~/lib/auth";
import { z } from "zod";
import { updateUserUseCase } from "~/use-cases/users";
Installs
1
First Seen
Apr 14, 2026
agentic-jumpstart-backend from smithery.ai