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 9 lines 280 B view raw
1export default function redact(value: string) { 2 if (value.length <= 14) { 3 return value; 4 } 5 const visibleStart = value.slice(0, 11); 6 const visibleEnd = value.slice(-3); 7 const redactedMiddle = "*".repeat(24); 8 return `${visibleStart}${redactedMiddle}${visibleEnd}`; 9}