the universal sandbox runtime for agents and humans. pocketenv.io
sandbox openclaw agent claude-code vercel-sandbox deno-sandbox cloudflare-sandbox atproto sprites daytona
7
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 11 lines 221 B view raw
1import jwt from "@tsndr/cloudflare-worker-jwt"; 2import { env } from "./env"; 3 4export default function generateJwt(did: string): Promise<string> { 5 return jwt.sign( 6 { 7 sub: did, 8 }, 9 env.JWT_SECRET, 10 ); 11}