action vercel_status { label: "Get status of Remote Caching for this principal" description: "Check the status of Remote Caching for this principal. Returns a JSON-encoded status indicating if Remote Caching is enabled, disabled, or disabled due to usage limits." provider: vercel method: GET path: "/v8/artifacts/status" encoding: json input: { type: "object" properties: { teamId: { type: "string" } } additionalProperties: false } output: { type: "object" required: ["status"] properties: { status: { type: "string" enum: ["disabled", "enabled", "over_limit", "paused"] } } } }