Admin scripts hit production with a shared API key from 1Password. No way to know who ran what. When someone leaves, nobody rotates the key.
// Admin script — identity comes from the developer's laptop import { amesh } from '@authmesh/sdk'; // No API key. The developer's device IS the credential. const res = await amesh.fetch( 'https://admin.internal/cache/purge', { method: 'POST', body: JSON.stringify({ pattern: 'users:*' }) } ); console.log(`Purged: ${(await res.json()).count} keys`);