A small helper for service-first Vercel Sandbox network policies

I published sandbox-policy-builder, a small helper library for @vercel/sandbox. It is for the case where you are building a coding agent or AI app in Vercel Sandbox and want to express outbound auth rules in terms of services like OpenAI, Claude, GitHub, or AI Gateway, rather than managing raw domain rules directly. Example: import { Sandbox } from "@vercel/sandbox"; import { allow } from "sandbox-policy-builder"; const sandbox = await Sandbox.create({ networkPolicy: allow({ codex: { a...

Vercel Community