agentic-jumpstart-security

Installation
SKILL.md

Security Best Practices

Authentication & Authorization

Session Management with Arctic OAuth

// Always use the validateRequest utility for authentication
import { validateRequest } from "~/utils/auth";

const { user, session } = await validateRequest();
if (!user) {
  throw redirect({ to: "/unauthenticated" });
}

Middleware Protection Patterns

Always protect server functions with appropriate middleware:

Installs
2
GitHub Stars
21
First Seen
Feb 3, 2026
agentic-jumpstart-security — webdevcody/agentic-jumpstart