[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-openai-mixpanel-auth":3,"mdc--hatvul-key":33,"related-org-openai-mixpanel-auth":2093,"related-repo-openai-mixpanel-auth":2300},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":22,"repoUrl":23,"updatedAt":24,"license":25,"forks":26,"topics":27,"repo":28,"sourceUrl":31,"mdContent":32},"mixpanel-auth","manage Mixpanel authentication and sessions","Manage Mixpanel Headless authentication: check session state, list\u002Fadd\u002Fuse accounts, run OAuth login, switch projects\u002Fworkspaces, manage targets, and check bridge credentials.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"openai","OpenAI","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fopenai.png",[12,16,19],{"name":13,"slug":14,"type":15},"Auth","auth","tag",{"name":17,"slug":18,"type":15},"Analytics","analytics",{"name":20,"slug":21,"type":15},"OAuth","oauth",3992,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins","2026-06-30T19:00:57.102",null,465,[],{"repoUrl":23,"stars":22,"forks":26,"topics":29,"description":30},[],"OpenAI Plugins","https:\u002F\u002Fgithub.com\u002Fopenai\u002Fplugins\u002Ftree\u002FHEAD\u002Fplugins\u002Fmixpanel-headless\u002Fskills\u002Fmixpanel-auth","---\nname: mixpanel-auth\ndescription: \"Manage Mixpanel Headless authentication: check session state, list\u002Fadd\u002Fuse accounts, run OAuth login, switch projects\u002Fworkspaces, manage targets, and check bridge credentials.\"\n---\n\n# Mixpanel Authentication Management\n\nYou manage Mixpanel credentials by shelling out to `auth_manager.py`. Every\nsubcommand emits exactly one JSON object to stdout — parse it and present the\nresult conversationally.\n\nBefore running bundled scripts, set `PLUGIN_ROOT` to the absolute path of the installed\n`mixpanel-headless` plugin directory.\n\n**Script path:** `python3 $PLUGIN_ROOT\u002Fskills\u002Fmixpanelyst\u002Fscripts\u002Fauth_manager.py`\n\n**Schema:** Every response has `schema_version: 1` and a discriminated `state`\nof `ok` | `needs_account` | `needs_project` | `error`. Errors emit JSON to\nstdout (exit 0) so you can `json.loads` unconditionally — no try\u002Fexcept needed.\n\n## Security Rules (NON-NEGOTIABLE)\n\n- **NEVER ask for secrets (passwords, API secrets) in conversation** — they would be visible in history\n- **NEVER pass secrets as CLI arguments** — visible in process list\n- For account creation, guide the user to run `mp account add \u003Cname> --type service_account -u \u003Cusername> -p \u003Cproject_id> -r \u003Cregion>` themselves — this prompts for the secret with hidden input\n\n## Routing\n\nParse `$ARGUMENTS` and route to the appropriate subcommand. With no\narguments, run `session`.\n\n### \"login\"\n\nFor first-time setup, the frictionless one-shot path is `mp login`. It\nruns the right auth flow for the environment, derives the account name\nfrom `\u002Fme`, and pins a default project. Tell the user to run:\n\n```bash\nmp login\n```\n\nRegion behavior is auth-type-specific:\n- `service_account` and `oauth_token` paths: probes `us → eu → in` and\n  uses the first 200.\n- `oauth_browser` path (the bare-`mp login` default): commits to `us`\n  unless the user passes `--region eu` or `--region in`.\n\nOptional flags they may want:\n- `--name NAME` — override the derived account name\n- `--region us|eu|in` — set the region explicitly (required for EU \u002F India browser users)\n- `--project ID` — skip the project picker\n- `--service-account` — force the SA path (requires `MP_USERNAME` + `MP_SECRET` in env)\n- `--token-env VAR` — force the static-bearer path (reads token from `$VAR`)\n- `--no-browser` — print the authorization URL instead of launching a browser\n\nAfter the user confirms they ran it, verify with `account test`:\n`python3 $PLUGIN_ROOT\u002Fskills\u002Fmixpanelyst\u002Fscripts\u002Fauth_manager.py account test`\n\n### No arguments or \"session\"\n\nRun: `python3 $PLUGIN_ROOT\u002Fskills\u002Fmixpanelyst\u002Fscripts\u002Fauth_manager.py session`\n\nSwitch on `state`:\n- **`ok`** — show one line: \"Active: `account.name` → project `project.id`\"\n  (add workspace `workspace.id` if non-null). Mention that\n  the account-list and project-list workflows in this skill exist if the user wants to switch.\n- **`needs_account`** — no account configured. Show the first\n  `next[0].command` as the recommended onboarding step (the frictionless\n  `mp login` orchestrator); list the alternatives in `next[1]` (explicit\n  account add) and `next[2]` (`MP_OAUTH_TOKEN` env triple — best for\n  non-interactive contexts like CI or agents).\n- **`needs_project`** — account configured but no project pinned. Tell the\n  user to run `mp project list` then `mp project use \u003Cid>`.\n- **`error`** — show `error.message`. If `error.actionable` is true, the\n  message names a concrete next command.\n\n### \"account list\"\n\nRun: `python3 $PLUGIN_ROOT\u002Fskills\u002Fmixpanelyst\u002Fscripts\u002Fauth_manager.py account list`\n\nPresent `items` as a clean table: `name`, `type`, `region`, `is_active`.\nMark the active account with a star. If `referenced_by_targets` is non-empty\nfor any account, mention it (\"`team` is referenced by targets: `ecom`\").\n\nIf `items` is empty, show the `next` onboarding hints (same as `needs_account`).\n\n### \"account add\"\n\nThis is a guided wizard. Do NOT run any script that handles secrets.\n\n1. Ask for the **account name** (e.g., \"personal\", \"team\", \"ci\")\n2. Ask for the **type** — `oauth_browser` (recommended for laptops),\n   `service_account` (long-lived), or `oauth_token` (CI\u002Fagents)\n3. Ask for the **region** (us, eu, or in — default us)\n4. For `service_account`: ask for username and project ID (numeric).\n   For `oauth_token`: ask for project ID and the env-var name holding the bearer.\n   For `oauth_browser`: project ID is OPTIONAL — `mp account login` will\n   backfill it after the PKCE flow.\n5. Then instruct the user to run the appropriate command. For service accounts:\n\n```bash\nNow run this command — it will prompt for your service account secret with hidden input:\n\nmp account add \u003CNAME> --type service_account --username \u003CUSERNAME> --project \u003CPROJECT_ID> --region \u003CREGION>\n```\n\nFor OAuth browser, prefer the one-shot `mp login` (covered by the \"login\"\nbranch above):\n\n```bash\nmp login --name \u003CNAME> --region \u003CREGION>\n```\n\nFor full control over registration before the PKCE flow, the explicit\ntwo-step is still available:\n\n```bash\nmp account add \u003CNAME> --type oauth_browser --region \u003CREGION>\nmp account login \u003CNAME>      # opens browser for PKCE flow\n```\n\nReplace placeholders with the values collected above.\n\n6. After the user confirms they ran it, verify with `account test`:\n   `python3 $PLUGIN_ROOT\u002Fskills\u002Fmixpanelyst\u002Fscripts\u002Fauth_manager.py account test \u003CNAME>`\n7. Report success or failure based on the `result.ok` field.\n\n### \"account use\" or \"account use \u003Cname>\"\n\nIf a name is provided:\n- Run: `python3 $PLUGIN_ROOT\u002Fskills\u002Fmixpanelyst\u002Fscripts\u002Fauth_manager.py account use \u003Cname>`\n\nIf no name:\n- First run `account list` to show available accounts\n- Ask which to switch to\n- Then run `account use` with the chosen name\n\nOn `state: ok`, show one line: \"Switched to `active.account` (project `active.project`)\".\nOn `state: error`, show `error.message`.\n\n### \"account login\" or \"account login \u003Cname>\"\n\nRun: `python3 $PLUGIN_ROOT\u002Fskills\u002Fmixpanelyst\u002Fscripts\u002Fauth_manager.py account login \u003Cname>`\n\nTell the user a browser window will open for Mixpanel authentication.\nWait for the JSON response.\n\nOn `state: ok`: \"OAuth login successful! `logged_in_as.user.email`, token\nvalid until `logged_in_as.expires_at`.\"\nOn `state: error`: Show `error.message` and suggest retrying.\n\n### \"account test\" or \"account test \u003Cname>\"\n\nRun: `python3 $PLUGIN_ROOT\u002Fskills\u002Fmixpanelyst\u002Fscripts\u002Fauth_manager.py account test [name]`\n\nThe subcommand never raises — `state` is always `ok`. Read `result.ok` to\ndetermine whether the credentials worked:\n- `result.ok: true` → \"Connected as `result.user.email` ·\n  `result.accessible_project_count` accessible projects.\"\n- `result.ok: false` → \"Test failed: `result.error`.\"\n\n### \"project list\"\n\nRun: `python3 $PLUGIN_ROOT\u002Fskills\u002Fmixpanelyst\u002Fscripts\u002Fauth_manager.py project list`\n\nPresent `items` as a table: organization, project name, project ID. Mark the\nactive project (`is_active: true`) with a star. Suggest the project-use workflow\nin this skill to switch.\n\n### \"project use \u003Cid>\"\n\nIf no ID: run `project list` first, then ask which to switch to.\n\nRun: `python3 $PLUGIN_ROOT\u002Fskills\u002Fmixpanelyst\u002Fscripts\u002Fauth_manager.py project use \u003CPROJECT_ID>`\n\nOn `state: ok`: \"Switched to project `active.project`.\"\nOn `state: error`: Show `error.message`.\n\n### \"workspace list\"\n\nRun: `python3 $PLUGIN_ROOT\u002Fskills\u002Fmixpanelyst\u002Fscripts\u002Fauth_manager.py workspace list`\n\nPresent `items` as a table: workspace ID, name, `is_default`. Mark the\nactive workspace with a star. Mention the parent project from\n`project.name` (`project.id`).\n\n### \"workspace use \u003Cid>\"\n\nRun: `python3 $PLUGIN_ROOT\u002Fskills\u002Fmixpanelyst\u002Fscripts\u002Fauth_manager.py workspace use \u003CWORKSPACE_ID>`\n\nOn `state: ok`: \"Pinned workspace `active.workspace`.\"\n\n### \"target list\"\n\nRun: `python3 $PLUGIN_ROOT\u002Fskills\u002Fmixpanelyst\u002Fscripts\u002Fauth_manager.py target list`\n\nTargets are saved (account, project, workspace?) triples — named cursor\npositions. Present as a table: name, account, project, workspace.\n\n### \"target add\"\n\nGuided wizard — collect target name, account name, project ID, optional\nworkspace ID. Then either invoke the auth_manager directly:\n\n```\npython3 $PLUGIN_ROOT\u002Fskills\u002Fmixpanelyst\u002Fscripts\u002Fauth_manager.py target add \u003CNAME> --account \u003CACCT> --project \u003CPROJ> [--workspace \u003CWS>]\n```\n\nOr guide the user to `mp target add \u003CNAME> --account \u003CACCT> --project \u003CPROJ> [--workspace \u003CWS>]`.\n\n### \"target use \u003Cname>\"\n\nRun: `python3 $PLUGIN_ROOT\u002Fskills\u002Fmixpanelyst\u002Fscripts\u002Fauth_manager.py target use \u003Cname>`\n\nApplies all three axes (`account` \u002F `project` \u002F `workspace`) to `[active]`\nin a single atomic config write.\n\n### \"bridge status\"\n\nRun: `python3 $PLUGIN_ROOT\u002Fskills\u002Fmixpanelyst\u002Fscripts\u002Fauth_manager.py bridge status`\n\nParse the JSON:\n- If `bridge` is null → \"No bridge file found. To create one, run\n  `mp account export-bridge --to \u003Cpath>` on your host machine.\"\n- If `bridge` is non-null → show `bridge.path`, `bridge.account.name`\n  (`bridge.account.type`), pinned `bridge.project` \u002F `bridge.workspace` if set,\n  and any custom `bridge.headers`.\n\n## Bearer-token env vars (`MP_OAUTH_TOKEN`)\n\nFor non-interactive contexts (CI, agents, ephemeral environments) where the\nPKCE browser flow isn't viable, set:\n\n```\nexport MP_OAUTH_TOKEN=\u003Cbearer-token>\nexport MP_PROJECT_ID=\u003Cproject-id>\nexport MP_REGION=\u003Cus|eu|in>\n```\n\nThe library builds an `Authorization: Bearer \u003Ctoken>` header for every\nMixpanel endpoint. The full service-account env-var set (`MP_USERNAME` +\n`MP_SECRET` + `MP_PROJECT_ID` + `MP_REGION`) takes precedence when both\nsets are complete, so this is safe to add to a shell that already exports\nthe service-account vars.\n\n## Presentation Style\n\n- Be concise — show status in 1–2 lines, not a wall of JSON\n- Use tables for lists of accounts, projects, workspaces, targets\n- Always suggest a next action when something is missing\n- On errors, show `error.message` verbatim — it names the fix\n",{"data":34,"body":35},{"name":4,"description":6},{"type":36,"children":37},"root",[38,47,62,83,100,164,171,209,215,236,243,264,293,298,369,374,467,486,492,503,515,664,670,680,747,774,780,785,881,1099,1111,1171,1176,1280,1285,1318,1329,1334,1347,1352,1386,1429,1439,1449,1454,1495,1505,1515,1541,1590,1596,1606,1625,1636,1649,1659,1688,1694,1704,1736,1746,1756,1774,1780,1790,1795,1801,1806,1816,1828,1838,1848,1884,1890,1900,1905,1984,1996,2001,2010,2051,2057,2087],{"type":39,"tag":40,"props":41,"children":43},"element","h1",{"id":42},"mixpanel-authentication-management",[44],{"type":45,"value":46},"text","Mixpanel Authentication Management",{"type":39,"tag":48,"props":49,"children":50},"p",{},[51,53,60],{"type":45,"value":52},"You manage Mixpanel credentials by shelling out to ",{"type":39,"tag":54,"props":55,"children":57},"code",{"className":56},[],[58],{"type":45,"value":59},"auth_manager.py",{"type":45,"value":61},". Every\nsubcommand emits exactly one JSON object to stdout — parse it and present the\nresult conversationally.",{"type":39,"tag":48,"props":63,"children":64},{},[65,67,73,75,81],{"type":45,"value":66},"Before running bundled scripts, set ",{"type":39,"tag":54,"props":68,"children":70},{"className":69},[],[71],{"type":45,"value":72},"PLUGIN_ROOT",{"type":45,"value":74}," to the absolute path of the installed\n",{"type":39,"tag":54,"props":76,"children":78},{"className":77},[],[79],{"type":45,"value":80},"mixpanel-headless",{"type":45,"value":82}," plugin directory.",{"type":39,"tag":48,"props":84,"children":85},{},[86,92,94],{"type":39,"tag":87,"props":88,"children":89},"strong",{},[90],{"type":45,"value":91},"Script path:",{"type":45,"value":93}," ",{"type":39,"tag":54,"props":95,"children":97},{"className":96},[],[98],{"type":45,"value":99},"python3 $PLUGIN_ROOT\u002Fskills\u002Fmixpanelyst\u002Fscripts\u002Fauth_manager.py",{"type":39,"tag":48,"props":101,"children":102},{},[103,108,110,116,118,124,126,132,134,140,141,147,148,154,156,162],{"type":39,"tag":87,"props":104,"children":105},{},[106],{"type":45,"value":107},"Schema:",{"type":45,"value":109}," Every response has ",{"type":39,"tag":54,"props":111,"children":113},{"className":112},[],[114],{"type":45,"value":115},"schema_version: 1",{"type":45,"value":117}," and a discriminated ",{"type":39,"tag":54,"props":119,"children":121},{"className":120},[],[122],{"type":45,"value":123},"state",{"type":45,"value":125},"\nof ",{"type":39,"tag":54,"props":127,"children":129},{"className":128},[],[130],{"type":45,"value":131},"ok",{"type":45,"value":133}," | ",{"type":39,"tag":54,"props":135,"children":137},{"className":136},[],[138],{"type":45,"value":139},"needs_account",{"type":45,"value":133},{"type":39,"tag":54,"props":142,"children":144},{"className":143},[],[145],{"type":45,"value":146},"needs_project",{"type":45,"value":133},{"type":39,"tag":54,"props":149,"children":151},{"className":150},[],[152],{"type":45,"value":153},"error",{"type":45,"value":155},". Errors emit JSON to\nstdout (exit 0) so you can ",{"type":39,"tag":54,"props":157,"children":159},{"className":158},[],[160],{"type":45,"value":161},"json.loads",{"type":45,"value":163}," unconditionally — no try\u002Fexcept needed.",{"type":39,"tag":165,"props":166,"children":168},"h2",{"id":167},"security-rules-non-negotiable",[169],{"type":45,"value":170},"Security Rules (NON-NEGOTIABLE)",{"type":39,"tag":172,"props":173,"children":174},"ul",{},[175,186,196],{"type":39,"tag":176,"props":177,"children":178},"li",{},[179,184],{"type":39,"tag":87,"props":180,"children":181},{},[182],{"type":45,"value":183},"NEVER ask for secrets (passwords, API secrets) in conversation",{"type":45,"value":185}," — they would be visible in history",{"type":39,"tag":176,"props":187,"children":188},{},[189,194],{"type":39,"tag":87,"props":190,"children":191},{},[192],{"type":45,"value":193},"NEVER pass secrets as CLI arguments",{"type":45,"value":195}," — visible in process list",{"type":39,"tag":176,"props":197,"children":198},{},[199,201,207],{"type":45,"value":200},"For account creation, guide the user to run ",{"type":39,"tag":54,"props":202,"children":204},{"className":203},[],[205],{"type":45,"value":206},"mp account add \u003Cname> --type service_account -u \u003Cusername> -p \u003Cproject_id> -r \u003Cregion>",{"type":45,"value":208}," themselves — this prompts for the secret with hidden input",{"type":39,"tag":165,"props":210,"children":212},{"id":211},"routing",[213],{"type":45,"value":214},"Routing",{"type":39,"tag":48,"props":216,"children":217},{},[218,220,226,228,234],{"type":45,"value":219},"Parse ",{"type":39,"tag":54,"props":221,"children":223},{"className":222},[],[224],{"type":45,"value":225},"$ARGUMENTS",{"type":45,"value":227}," and route to the appropriate subcommand. With no\narguments, run ",{"type":39,"tag":54,"props":229,"children":231},{"className":230},[],[232],{"type":45,"value":233},"session",{"type":45,"value":235},".",{"type":39,"tag":237,"props":238,"children":240},"h3",{"id":239},"login",[241],{"type":45,"value":242},"\"login\"",{"type":39,"tag":48,"props":244,"children":245},{},[246,248,254,256,262],{"type":45,"value":247},"For first-time setup, the frictionless one-shot path is ",{"type":39,"tag":54,"props":249,"children":251},{"className":250},[],[252],{"type":45,"value":253},"mp login",{"type":45,"value":255},". It\nruns the right auth flow for the environment, derives the account name\nfrom ",{"type":39,"tag":54,"props":257,"children":259},{"className":258},[],[260],{"type":45,"value":261},"\u002Fme",{"type":45,"value":263},", and pins a default project. Tell the user to run:",{"type":39,"tag":265,"props":266,"children":271},"pre",{"className":267,"code":268,"language":269,"meta":270,"style":270},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","mp login\n","bash","",[272],{"type":39,"tag":54,"props":273,"children":274},{"__ignoreMap":270},[275],{"type":39,"tag":276,"props":277,"children":280},"span",{"class":278,"line":279},"line",1,[281,287],{"type":39,"tag":276,"props":282,"children":284},{"style":283},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[285],{"type":45,"value":286},"mp",{"type":39,"tag":276,"props":288,"children":290},{"style":289},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[291],{"type":45,"value":292}," login\n",{"type":39,"tag":48,"props":294,"children":295},{},[296],{"type":45,"value":297},"Region behavior is auth-type-specific:",{"type":39,"tag":172,"props":299,"children":300},{},[301,328],{"type":39,"tag":176,"props":302,"children":303},{},[304,310,312,318,320,326],{"type":39,"tag":54,"props":305,"children":307},{"className":306},[],[308],{"type":45,"value":309},"service_account",{"type":45,"value":311}," and ",{"type":39,"tag":54,"props":313,"children":315},{"className":314},[],[316],{"type":45,"value":317},"oauth_token",{"type":45,"value":319}," paths: probes ",{"type":39,"tag":54,"props":321,"children":323},{"className":322},[],[324],{"type":45,"value":325},"us → eu → in",{"type":45,"value":327}," and\nuses the first 200.",{"type":39,"tag":176,"props":329,"children":330},{},[331,337,339,344,346,352,354,360,362,368],{"type":39,"tag":54,"props":332,"children":334},{"className":333},[],[335],{"type":45,"value":336},"oauth_browser",{"type":45,"value":338}," path (the bare-",{"type":39,"tag":54,"props":340,"children":342},{"className":341},[],[343],{"type":45,"value":253},{"type":45,"value":345}," default): commits to ",{"type":39,"tag":54,"props":347,"children":349},{"className":348},[],[350],{"type":45,"value":351},"us",{"type":45,"value":353},"\nunless the user passes ",{"type":39,"tag":54,"props":355,"children":357},{"className":356},[],[358],{"type":45,"value":359},"--region eu",{"type":45,"value":361}," or ",{"type":39,"tag":54,"props":363,"children":365},{"className":364},[],[366],{"type":45,"value":367},"--region in",{"type":45,"value":235},{"type":39,"tag":48,"props":370,"children":371},{},[372],{"type":45,"value":373},"Optional flags they may want:",{"type":39,"tag":172,"props":375,"children":376},{},[377,388,399,410,437,456],{"type":39,"tag":176,"props":378,"children":379},{},[380,386],{"type":39,"tag":54,"props":381,"children":383},{"className":382},[],[384],{"type":45,"value":385},"--name NAME",{"type":45,"value":387}," — override the derived account name",{"type":39,"tag":176,"props":389,"children":390},{},[391,397],{"type":39,"tag":54,"props":392,"children":394},{"className":393},[],[395],{"type":45,"value":396},"--region us|eu|in",{"type":45,"value":398}," — set the region explicitly (required for EU \u002F India browser users)",{"type":39,"tag":176,"props":400,"children":401},{},[402,408],{"type":39,"tag":54,"props":403,"children":405},{"className":404},[],[406],{"type":45,"value":407},"--project ID",{"type":45,"value":409}," — skip the project picker",{"type":39,"tag":176,"props":411,"children":412},{},[413,419,421,427,429,435],{"type":39,"tag":54,"props":414,"children":416},{"className":415},[],[417],{"type":45,"value":418},"--service-account",{"type":45,"value":420}," — force the SA path (requires ",{"type":39,"tag":54,"props":422,"children":424},{"className":423},[],[425],{"type":45,"value":426},"MP_USERNAME",{"type":45,"value":428}," + ",{"type":39,"tag":54,"props":430,"children":432},{"className":431},[],[433],{"type":45,"value":434},"MP_SECRET",{"type":45,"value":436}," in env)",{"type":39,"tag":176,"props":438,"children":439},{},[440,446,448,454],{"type":39,"tag":54,"props":441,"children":443},{"className":442},[],[444],{"type":45,"value":445},"--token-env VAR",{"type":45,"value":447}," — force the static-bearer path (reads token from ",{"type":39,"tag":54,"props":449,"children":451},{"className":450},[],[452],{"type":45,"value":453},"$VAR",{"type":45,"value":455},")",{"type":39,"tag":176,"props":457,"children":458},{},[459,465],{"type":39,"tag":54,"props":460,"children":462},{"className":461},[],[463],{"type":45,"value":464},"--no-browser",{"type":45,"value":466}," — print the authorization URL instead of launching a browser",{"type":39,"tag":48,"props":468,"children":469},{},[470,472,478,480],{"type":45,"value":471},"After the user confirms they ran it, verify with ",{"type":39,"tag":54,"props":473,"children":475},{"className":474},[],[476],{"type":45,"value":477},"account test",{"type":45,"value":479},":\n",{"type":39,"tag":54,"props":481,"children":483},{"className":482},[],[484],{"type":45,"value":485},"python3 $PLUGIN_ROOT\u002Fskills\u002Fmixpanelyst\u002Fscripts\u002Fauth_manager.py account test",{"type":39,"tag":237,"props":487,"children":489},{"id":488},"no-arguments-or-session",[490],{"type":45,"value":491},"No arguments or \"session\"",{"type":39,"tag":48,"props":493,"children":494},{},[495,497],{"type":45,"value":496},"Run: ",{"type":39,"tag":54,"props":498,"children":500},{"className":499},[],[501],{"type":45,"value":502},"python3 $PLUGIN_ROOT\u002Fskills\u002Fmixpanelyst\u002Fscripts\u002Fauth_manager.py session",{"type":39,"tag":48,"props":504,"children":505},{},[506,508,513],{"type":45,"value":507},"Switch on ",{"type":39,"tag":54,"props":509,"children":511},{"className":510},[],[512],{"type":45,"value":123},{"type":45,"value":514},":",{"type":39,"tag":172,"props":516,"children":517},{},[518,555,607,635],{"type":39,"tag":176,"props":519,"children":520},{},[521,529,531,537,539,545,547,553],{"type":39,"tag":87,"props":522,"children":523},{},[524],{"type":39,"tag":54,"props":525,"children":527},{"className":526},[],[528],{"type":45,"value":131},{"type":45,"value":530}," — show one line: \"Active: ",{"type":39,"tag":54,"props":532,"children":534},{"className":533},[],[535],{"type":45,"value":536},"account.name",{"type":45,"value":538}," → project ",{"type":39,"tag":54,"props":540,"children":542},{"className":541},[],[543],{"type":45,"value":544},"project.id",{"type":45,"value":546},"\"\n(add workspace ",{"type":39,"tag":54,"props":548,"children":550},{"className":549},[],[551],{"type":45,"value":552},"workspace.id",{"type":45,"value":554}," if non-null). Mention that\nthe account-list and project-list workflows in this skill exist if the user wants to switch.",{"type":39,"tag":176,"props":556,"children":557},{},[558,566,568,574,576,581,583,589,591,597,599,605],{"type":39,"tag":87,"props":559,"children":560},{},[561],{"type":39,"tag":54,"props":562,"children":564},{"className":563},[],[565],{"type":45,"value":139},{"type":45,"value":567}," — no account configured. Show the first\n",{"type":39,"tag":54,"props":569,"children":571},{"className":570},[],[572],{"type":45,"value":573},"next[0].command",{"type":45,"value":575}," as the recommended onboarding step (the frictionless\n",{"type":39,"tag":54,"props":577,"children":579},{"className":578},[],[580],{"type":45,"value":253},{"type":45,"value":582}," orchestrator); list the alternatives in ",{"type":39,"tag":54,"props":584,"children":586},{"className":585},[],[587],{"type":45,"value":588},"next[1]",{"type":45,"value":590}," (explicit\naccount add) and ",{"type":39,"tag":54,"props":592,"children":594},{"className":593},[],[595],{"type":45,"value":596},"next[2]",{"type":45,"value":598}," (",{"type":39,"tag":54,"props":600,"children":602},{"className":601},[],[603],{"type":45,"value":604},"MP_OAUTH_TOKEN",{"type":45,"value":606}," env triple — best for\nnon-interactive contexts like CI or agents).",{"type":39,"tag":176,"props":608,"children":609},{},[610,618,620,626,628,634],{"type":39,"tag":87,"props":611,"children":612},{},[613],{"type":39,"tag":54,"props":614,"children":616},{"className":615},[],[617],{"type":45,"value":146},{"type":45,"value":619}," — account configured but no project pinned. Tell the\nuser to run ",{"type":39,"tag":54,"props":621,"children":623},{"className":622},[],[624],{"type":45,"value":625},"mp project list",{"type":45,"value":627}," then ",{"type":39,"tag":54,"props":629,"children":631},{"className":630},[],[632],{"type":45,"value":633},"mp project use \u003Cid>",{"type":45,"value":235},{"type":39,"tag":176,"props":636,"children":637},{},[638,646,648,654,656,662],{"type":39,"tag":87,"props":639,"children":640},{},[641],{"type":39,"tag":54,"props":642,"children":644},{"className":643},[],[645],{"type":45,"value":153},{"type":45,"value":647}," — show ",{"type":39,"tag":54,"props":649,"children":651},{"className":650},[],[652],{"type":45,"value":653},"error.message",{"type":45,"value":655},". If ",{"type":39,"tag":54,"props":657,"children":659},{"className":658},[],[660],{"type":45,"value":661},"error.actionable",{"type":45,"value":663}," is true, the\nmessage names a concrete next command.",{"type":39,"tag":237,"props":665,"children":667},{"id":666},"account-list",[668],{"type":45,"value":669},"\"account list\"",{"type":39,"tag":48,"props":671,"children":672},{},[673,674],{"type":45,"value":496},{"type":39,"tag":54,"props":675,"children":677},{"className":676},[],[678],{"type":45,"value":679},"python3 $PLUGIN_ROOT\u002Fskills\u002Fmixpanelyst\u002Fscripts\u002Fauth_manager.py account list",{"type":39,"tag":48,"props":681,"children":682},{},[683,685,691,693,699,701,707,708,714,715,721,723,729,731,737,739,745],{"type":45,"value":684},"Present ",{"type":39,"tag":54,"props":686,"children":688},{"className":687},[],[689],{"type":45,"value":690},"items",{"type":45,"value":692}," as a clean table: ",{"type":39,"tag":54,"props":694,"children":696},{"className":695},[],[697],{"type":45,"value":698},"name",{"type":45,"value":700},", ",{"type":39,"tag":54,"props":702,"children":704},{"className":703},[],[705],{"type":45,"value":706},"type",{"type":45,"value":700},{"type":39,"tag":54,"props":709,"children":711},{"className":710},[],[712],{"type":45,"value":713},"region",{"type":45,"value":700},{"type":39,"tag":54,"props":716,"children":718},{"className":717},[],[719],{"type":45,"value":720},"is_active",{"type":45,"value":722},".\nMark the active account with a star. If ",{"type":39,"tag":54,"props":724,"children":726},{"className":725},[],[727],{"type":45,"value":728},"referenced_by_targets",{"type":45,"value":730}," is non-empty\nfor any account, mention it (\"",{"type":39,"tag":54,"props":732,"children":734},{"className":733},[],[735],{"type":45,"value":736},"team",{"type":45,"value":738}," is referenced by targets: ",{"type":39,"tag":54,"props":740,"children":742},{"className":741},[],[743],{"type":45,"value":744},"ecom",{"type":45,"value":746},"\").",{"type":39,"tag":48,"props":748,"children":749},{},[750,752,757,759,765,767,772],{"type":45,"value":751},"If ",{"type":39,"tag":54,"props":753,"children":755},{"className":754},[],[756],{"type":45,"value":690},{"type":45,"value":758}," is empty, show the ",{"type":39,"tag":54,"props":760,"children":762},{"className":761},[],[763],{"type":45,"value":764},"next",{"type":45,"value":766}," onboarding hints (same as ",{"type":39,"tag":54,"props":768,"children":770},{"className":769},[],[771],{"type":45,"value":139},{"type":45,"value":773},").",{"type":39,"tag":237,"props":775,"children":777},{"id":776},"account-add",[778],{"type":45,"value":779},"\"account add\"",{"type":39,"tag":48,"props":781,"children":782},{},[783],{"type":45,"value":784},"This is a guided wizard. Do NOT run any script that handles secrets.",{"type":39,"tag":786,"props":787,"children":788},"ol",{},[789,801,832,842,876],{"type":39,"tag":176,"props":790,"children":791},{},[792,794,799],{"type":45,"value":793},"Ask for the ",{"type":39,"tag":87,"props":795,"children":796},{},[797],{"type":45,"value":798},"account name",{"type":45,"value":800}," (e.g., \"personal\", \"team\", \"ci\")",{"type":39,"tag":176,"props":802,"children":803},{},[804,805,809,811,816,818,823,825,830],{"type":45,"value":793},{"type":39,"tag":87,"props":806,"children":807},{},[808],{"type":45,"value":706},{"type":45,"value":810}," — ",{"type":39,"tag":54,"props":812,"children":814},{"className":813},[],[815],{"type":45,"value":336},{"type":45,"value":817}," (recommended for laptops),\n",{"type":39,"tag":54,"props":819,"children":821},{"className":820},[],[822],{"type":45,"value":309},{"type":45,"value":824}," (long-lived), or ",{"type":39,"tag":54,"props":826,"children":828},{"className":827},[],[829],{"type":45,"value":317},{"type":45,"value":831}," (CI\u002Fagents)",{"type":39,"tag":176,"props":833,"children":834},{},[835,836,840],{"type":45,"value":793},{"type":39,"tag":87,"props":837,"children":838},{},[839],{"type":45,"value":713},{"type":45,"value":841}," (us, eu, or in — default us)",{"type":39,"tag":176,"props":843,"children":844},{},[845,847,852,854,859,861,866,868,874],{"type":45,"value":846},"For ",{"type":39,"tag":54,"props":848,"children":850},{"className":849},[],[851],{"type":45,"value":309},{"type":45,"value":853},": ask for username and project ID (numeric).\nFor ",{"type":39,"tag":54,"props":855,"children":857},{"className":856},[],[858],{"type":45,"value":317},{"type":45,"value":860},": ask for project ID and the env-var name holding the bearer.\nFor ",{"type":39,"tag":54,"props":862,"children":864},{"className":863},[],[865],{"type":45,"value":336},{"type":45,"value":867},": project ID is OPTIONAL — ",{"type":39,"tag":54,"props":869,"children":871},{"className":870},[],[872],{"type":45,"value":873},"mp account login",{"type":45,"value":875}," will\nbackfill it after the PKCE flow.",{"type":39,"tag":176,"props":877,"children":878},{},[879],{"type":45,"value":880},"Then instruct the user to run the appropriate command. For service accounts:",{"type":39,"tag":265,"props":882,"children":884},{"className":267,"code":883,"language":269,"meta":270,"style":270},"Now run this command — it will prompt for your service account secret with hidden input:\n\nmp account add \u003CNAME> --type service_account --username \u003CUSERNAME> --project \u003CPROJECT_ID> --region \u003CREGION>\n",[885],{"type":39,"tag":54,"props":886,"children":887},{"__ignoreMap":270},[888,971,981],{"type":39,"tag":276,"props":889,"children":890},{"class":278,"line":279},[891,896,901,906,911,916,921,926,931,936,941,946,951,956,961,966],{"type":39,"tag":276,"props":892,"children":893},{"style":283},[894],{"type":45,"value":895},"Now",{"type":39,"tag":276,"props":897,"children":898},{"style":289},[899],{"type":45,"value":900}," run",{"type":39,"tag":276,"props":902,"children":903},{"style":289},[904],{"type":45,"value":905}," this",{"type":39,"tag":276,"props":907,"children":908},{"style":289},[909],{"type":45,"value":910}," command",{"type":39,"tag":276,"props":912,"children":913},{"style":289},[914],{"type":45,"value":915}," —",{"type":39,"tag":276,"props":917,"children":918},{"style":289},[919],{"type":45,"value":920}," it",{"type":39,"tag":276,"props":922,"children":923},{"style":289},[924],{"type":45,"value":925}," will",{"type":39,"tag":276,"props":927,"children":928},{"style":289},[929],{"type":45,"value":930}," prompt",{"type":39,"tag":276,"props":932,"children":933},{"style":289},[934],{"type":45,"value":935}," for",{"type":39,"tag":276,"props":937,"children":938},{"style":289},[939],{"type":45,"value":940}," your",{"type":39,"tag":276,"props":942,"children":943},{"style":289},[944],{"type":45,"value":945}," service",{"type":39,"tag":276,"props":947,"children":948},{"style":289},[949],{"type":45,"value":950}," account",{"type":39,"tag":276,"props":952,"children":953},{"style":289},[954],{"type":45,"value":955}," secret",{"type":39,"tag":276,"props":957,"children":958},{"style":289},[959],{"type":45,"value":960}," with",{"type":39,"tag":276,"props":962,"children":963},{"style":289},[964],{"type":45,"value":965}," hidden",{"type":39,"tag":276,"props":967,"children":968},{"style":289},[969],{"type":45,"value":970}," input:\n",{"type":39,"tag":276,"props":972,"children":974},{"class":278,"line":973},2,[975],{"type":39,"tag":276,"props":976,"children":978},{"emptyLinePlaceholder":977},true,[979],{"type":45,"value":980},"\n",{"type":39,"tag":276,"props":982,"children":984},{"class":278,"line":983},3,[985,989,993,998,1004,1009,1015,1020,1025,1030,1035,1039,1044,1048,1052,1057,1061,1066,1071,1075,1080,1084,1089,1094],{"type":39,"tag":276,"props":986,"children":987},{"style":283},[988],{"type":45,"value":286},{"type":39,"tag":276,"props":990,"children":991},{"style":289},[992],{"type":45,"value":950},{"type":39,"tag":276,"props":994,"children":995},{"style":289},[996],{"type":45,"value":997}," add",{"type":39,"tag":276,"props":999,"children":1001},{"style":1000},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[1002],{"type":45,"value":1003}," \u003C",{"type":39,"tag":276,"props":1005,"children":1006},{"style":289},[1007],{"type":45,"value":1008},"NAM",{"type":39,"tag":276,"props":1010,"children":1012},{"style":1011},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[1013],{"type":45,"value":1014},"E",{"type":39,"tag":276,"props":1016,"children":1017},{"style":1000},[1018],{"type":45,"value":1019},">",{"type":39,"tag":276,"props":1021,"children":1022},{"style":289},[1023],{"type":45,"value":1024}," --type",{"type":39,"tag":276,"props":1026,"children":1027},{"style":289},[1028],{"type":45,"value":1029}," service_account",{"type":39,"tag":276,"props":1031,"children":1032},{"style":289},[1033],{"type":45,"value":1034}," --username",{"type":39,"tag":276,"props":1036,"children":1037},{"style":1000},[1038],{"type":45,"value":1003},{"type":39,"tag":276,"props":1040,"children":1041},{"style":289},[1042],{"type":45,"value":1043},"USERNAM",{"type":39,"tag":276,"props":1045,"children":1046},{"style":1011},[1047],{"type":45,"value":1014},{"type":39,"tag":276,"props":1049,"children":1050},{"style":1000},[1051],{"type":45,"value":1019},{"type":39,"tag":276,"props":1053,"children":1054},{"style":289},[1055],{"type":45,"value":1056}," --project",{"type":39,"tag":276,"props":1058,"children":1059},{"style":1000},[1060],{"type":45,"value":1003},{"type":39,"tag":276,"props":1062,"children":1063},{"style":289},[1064],{"type":45,"value":1065},"PROJECT_I",{"type":39,"tag":276,"props":1067,"children":1068},{"style":1011},[1069],{"type":45,"value":1070},"D",{"type":39,"tag":276,"props":1072,"children":1073},{"style":1000},[1074],{"type":45,"value":1019},{"type":39,"tag":276,"props":1076,"children":1077},{"style":289},[1078],{"type":45,"value":1079}," --region",{"type":39,"tag":276,"props":1081,"children":1082},{"style":1000},[1083],{"type":45,"value":1003},{"type":39,"tag":276,"props":1085,"children":1086},{"style":289},[1087],{"type":45,"value":1088},"REGIO",{"type":39,"tag":276,"props":1090,"children":1091},{"style":1011},[1092],{"type":45,"value":1093},"N",{"type":39,"tag":276,"props":1095,"children":1096},{"style":1000},[1097],{"type":45,"value":1098},">\n",{"type":39,"tag":48,"props":1100,"children":1101},{},[1102,1104,1109],{"type":45,"value":1103},"For OAuth browser, prefer the one-shot ",{"type":39,"tag":54,"props":1105,"children":1107},{"className":1106},[],[1108],{"type":45,"value":253},{"type":45,"value":1110}," (covered by the \"login\"\nbranch above):",{"type":39,"tag":265,"props":1112,"children":1114},{"className":267,"code":1113,"language":269,"meta":270,"style":270},"mp login --name \u003CNAME> --region \u003CREGION>\n",[1115],{"type":39,"tag":54,"props":1116,"children":1117},{"__ignoreMap":270},[1118],{"type":39,"tag":276,"props":1119,"children":1120},{"class":278,"line":279},[1121,1125,1130,1135,1139,1143,1147,1151,1155,1159,1163,1167],{"type":39,"tag":276,"props":1122,"children":1123},{"style":283},[1124],{"type":45,"value":286},{"type":39,"tag":276,"props":1126,"children":1127},{"style":289},[1128],{"type":45,"value":1129}," login",{"type":39,"tag":276,"props":1131,"children":1132},{"style":289},[1133],{"type":45,"value":1134}," --name",{"type":39,"tag":276,"props":1136,"children":1137},{"style":1000},[1138],{"type":45,"value":1003},{"type":39,"tag":276,"props":1140,"children":1141},{"style":289},[1142],{"type":45,"value":1008},{"type":39,"tag":276,"props":1144,"children":1145},{"style":1011},[1146],{"type":45,"value":1014},{"type":39,"tag":276,"props":1148,"children":1149},{"style":1000},[1150],{"type":45,"value":1019},{"type":39,"tag":276,"props":1152,"children":1153},{"style":289},[1154],{"type":45,"value":1079},{"type":39,"tag":276,"props":1156,"children":1157},{"style":1000},[1158],{"type":45,"value":1003},{"type":39,"tag":276,"props":1160,"children":1161},{"style":289},[1162],{"type":45,"value":1088},{"type":39,"tag":276,"props":1164,"children":1165},{"style":1011},[1166],{"type":45,"value":1093},{"type":39,"tag":276,"props":1168,"children":1169},{"style":1000},[1170],{"type":45,"value":1098},{"type":39,"tag":48,"props":1172,"children":1173},{},[1174],{"type":45,"value":1175},"For full control over registration before the PKCE flow, the explicit\ntwo-step is still available:",{"type":39,"tag":265,"props":1177,"children":1179},{"className":267,"code":1178,"language":269,"meta":270,"style":270},"mp account add \u003CNAME> --type oauth_browser --region \u003CREGION>\nmp account login \u003CNAME>      # opens browser for PKCE flow\n",[1180],{"type":39,"tag":54,"props":1181,"children":1182},{"__ignoreMap":270},[1183,1243],{"type":39,"tag":276,"props":1184,"children":1185},{"class":278,"line":279},[1186,1190,1194,1198,1202,1206,1210,1214,1218,1223,1227,1231,1235,1239],{"type":39,"tag":276,"props":1187,"children":1188},{"style":283},[1189],{"type":45,"value":286},{"type":39,"tag":276,"props":1191,"children":1192},{"style":289},[1193],{"type":45,"value":950},{"type":39,"tag":276,"props":1195,"children":1196},{"style":289},[1197],{"type":45,"value":997},{"type":39,"tag":276,"props":1199,"children":1200},{"style":1000},[1201],{"type":45,"value":1003},{"type":39,"tag":276,"props":1203,"children":1204},{"style":289},[1205],{"type":45,"value":1008},{"type":39,"tag":276,"props":1207,"children":1208},{"style":1011},[1209],{"type":45,"value":1014},{"type":39,"tag":276,"props":1211,"children":1212},{"style":1000},[1213],{"type":45,"value":1019},{"type":39,"tag":276,"props":1215,"children":1216},{"style":289},[1217],{"type":45,"value":1024},{"type":39,"tag":276,"props":1219,"children":1220},{"style":289},[1221],{"type":45,"value":1222}," oauth_browser",{"type":39,"tag":276,"props":1224,"children":1225},{"style":289},[1226],{"type":45,"value":1079},{"type":39,"tag":276,"props":1228,"children":1229},{"style":1000},[1230],{"type":45,"value":1003},{"type":39,"tag":276,"props":1232,"children":1233},{"style":289},[1234],{"type":45,"value":1088},{"type":39,"tag":276,"props":1236,"children":1237},{"style":1011},[1238],{"type":45,"value":1093},{"type":39,"tag":276,"props":1240,"children":1241},{"style":1000},[1242],{"type":45,"value":1098},{"type":39,"tag":276,"props":1244,"children":1245},{"class":278,"line":973},[1246,1250,1254,1258,1262,1266,1270,1274],{"type":39,"tag":276,"props":1247,"children":1248},{"style":283},[1249],{"type":45,"value":286},{"type":39,"tag":276,"props":1251,"children":1252},{"style":289},[1253],{"type":45,"value":950},{"type":39,"tag":276,"props":1255,"children":1256},{"style":289},[1257],{"type":45,"value":1129},{"type":39,"tag":276,"props":1259,"children":1260},{"style":1000},[1261],{"type":45,"value":1003},{"type":39,"tag":276,"props":1263,"children":1264},{"style":289},[1265],{"type":45,"value":1008},{"type":39,"tag":276,"props":1267,"children":1268},{"style":1011},[1269],{"type":45,"value":1014},{"type":39,"tag":276,"props":1271,"children":1272},{"style":1000},[1273],{"type":45,"value":1019},{"type":39,"tag":276,"props":1275,"children":1277},{"style":1276},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[1278],{"type":45,"value":1279},"      # opens browser for PKCE flow\n",{"type":39,"tag":48,"props":1281,"children":1282},{},[1283],{"type":45,"value":1284},"Replace placeholders with the values collected above.",{"type":39,"tag":786,"props":1286,"children":1288},{"start":1287},6,[1289,1305],{"type":39,"tag":176,"props":1290,"children":1291},{},[1292,1293,1298,1299],{"type":45,"value":471},{"type":39,"tag":54,"props":1294,"children":1296},{"className":1295},[],[1297],{"type":45,"value":477},{"type":45,"value":479},{"type":39,"tag":54,"props":1300,"children":1302},{"className":1301},[],[1303],{"type":45,"value":1304},"python3 $PLUGIN_ROOT\u002Fskills\u002Fmixpanelyst\u002Fscripts\u002Fauth_manager.py account test \u003CNAME>",{"type":39,"tag":176,"props":1306,"children":1307},{},[1308,1310,1316],{"type":45,"value":1309},"Report success or failure based on the ",{"type":39,"tag":54,"props":1311,"children":1313},{"className":1312},[],[1314],{"type":45,"value":1315},"result.ok",{"type":45,"value":1317}," field.",{"type":39,"tag":237,"props":1319,"children":1321},{"id":1320},"account-use-or-account-use",[1322,1324],{"type":45,"value":1323},"\"account use\" or \"account use ",{"type":39,"tag":698,"props":1325,"children":1326},{},[1327],{"type":45,"value":1328},"\"",{"type":39,"tag":48,"props":1330,"children":1331},{},[1332],{"type":45,"value":1333},"If a name is provided:",{"type":39,"tag":172,"props":1335,"children":1336},{},[1337],{"type":39,"tag":176,"props":1338,"children":1339},{},[1340,1341],{"type":45,"value":496},{"type":39,"tag":54,"props":1342,"children":1344},{"className":1343},[],[1345],{"type":45,"value":1346},"python3 $PLUGIN_ROOT\u002Fskills\u002Fmixpanelyst\u002Fscripts\u002Fauth_manager.py account use \u003Cname>",{"type":39,"tag":48,"props":1348,"children":1349},{},[1350],{"type":45,"value":1351},"If no name:",{"type":39,"tag":172,"props":1353,"children":1354},{},[1355,1368,1373],{"type":39,"tag":176,"props":1356,"children":1357},{},[1358,1360,1366],{"type":45,"value":1359},"First run ",{"type":39,"tag":54,"props":1361,"children":1363},{"className":1362},[],[1364],{"type":45,"value":1365},"account list",{"type":45,"value":1367}," to show available accounts",{"type":39,"tag":176,"props":1369,"children":1370},{},[1371],{"type":45,"value":1372},"Ask which to switch to",{"type":39,"tag":176,"props":1374,"children":1375},{},[1376,1378,1384],{"type":45,"value":1377},"Then run ",{"type":39,"tag":54,"props":1379,"children":1381},{"className":1380},[],[1382],{"type":45,"value":1383},"account use",{"type":45,"value":1385}," with the chosen name",{"type":39,"tag":48,"props":1387,"children":1388},{},[1389,1391,1397,1399,1405,1407,1413,1415,1421,1423,1428],{"type":45,"value":1390},"On ",{"type":39,"tag":54,"props":1392,"children":1394},{"className":1393},[],[1395],{"type":45,"value":1396},"state: ok",{"type":45,"value":1398},", show one line: \"Switched to ",{"type":39,"tag":54,"props":1400,"children":1402},{"className":1401},[],[1403],{"type":45,"value":1404},"active.account",{"type":45,"value":1406}," (project ",{"type":39,"tag":54,"props":1408,"children":1410},{"className":1409},[],[1411],{"type":45,"value":1412},"active.project",{"type":45,"value":1414},")\".\nOn ",{"type":39,"tag":54,"props":1416,"children":1418},{"className":1417},[],[1419],{"type":45,"value":1420},"state: error",{"type":45,"value":1422},", show ",{"type":39,"tag":54,"props":1424,"children":1426},{"className":1425},[],[1427],{"type":45,"value":653},{"type":45,"value":235},{"type":39,"tag":237,"props":1430,"children":1432},{"id":1431},"account-login-or-account-login",[1433,1435],{"type":45,"value":1434},"\"account login\" or \"account login ",{"type":39,"tag":698,"props":1436,"children":1437},{},[1438],{"type":45,"value":1328},{"type":39,"tag":48,"props":1440,"children":1441},{},[1442,1443],{"type":45,"value":496},{"type":39,"tag":54,"props":1444,"children":1446},{"className":1445},[],[1447],{"type":45,"value":1448},"python3 $PLUGIN_ROOT\u002Fskills\u002Fmixpanelyst\u002Fscripts\u002Fauth_manager.py account login \u003Cname>",{"type":39,"tag":48,"props":1450,"children":1451},{},[1452],{"type":45,"value":1453},"Tell the user a browser window will open for Mixpanel authentication.\nWait for the JSON response.",{"type":39,"tag":48,"props":1455,"children":1456},{},[1457,1458,1463,1465,1471,1473,1479,1481,1486,1488,1493],{"type":45,"value":1390},{"type":39,"tag":54,"props":1459,"children":1461},{"className":1460},[],[1462],{"type":45,"value":1396},{"type":45,"value":1464},": \"OAuth login successful! ",{"type":39,"tag":54,"props":1466,"children":1468},{"className":1467},[],[1469],{"type":45,"value":1470},"logged_in_as.user.email",{"type":45,"value":1472},", token\nvalid until ",{"type":39,"tag":54,"props":1474,"children":1476},{"className":1475},[],[1477],{"type":45,"value":1478},"logged_in_as.expires_at",{"type":45,"value":1480},".\"\nOn ",{"type":39,"tag":54,"props":1482,"children":1484},{"className":1483},[],[1485],{"type":45,"value":1420},{"type":45,"value":1487},": Show ",{"type":39,"tag":54,"props":1489,"children":1491},{"className":1490},[],[1492],{"type":45,"value":653},{"type":45,"value":1494}," and suggest retrying.",{"type":39,"tag":237,"props":1496,"children":1498},{"id":1497},"account-test-or-account-test",[1499,1501],{"type":45,"value":1500},"\"account test\" or \"account test ",{"type":39,"tag":698,"props":1502,"children":1503},{},[1504],{"type":45,"value":1328},{"type":39,"tag":48,"props":1506,"children":1507},{},[1508,1509],{"type":45,"value":496},{"type":39,"tag":54,"props":1510,"children":1512},{"className":1511},[],[1513],{"type":45,"value":1514},"python3 $PLUGIN_ROOT\u002Fskills\u002Fmixpanelyst\u002Fscripts\u002Fauth_manager.py account test [name]",{"type":39,"tag":48,"props":1516,"children":1517},{},[1518,1520,1525,1527,1532,1534,1539],{"type":45,"value":1519},"The subcommand never raises — ",{"type":39,"tag":54,"props":1521,"children":1523},{"className":1522},[],[1524],{"type":45,"value":123},{"type":45,"value":1526}," is always ",{"type":39,"tag":54,"props":1528,"children":1530},{"className":1529},[],[1531],{"type":45,"value":131},{"type":45,"value":1533},". Read ",{"type":39,"tag":54,"props":1535,"children":1537},{"className":1536},[],[1538],{"type":45,"value":1315},{"type":45,"value":1540}," to\ndetermine whether the credentials worked:",{"type":39,"tag":172,"props":1542,"children":1543},{},[1544,1571],{"type":39,"tag":176,"props":1545,"children":1546},{},[1547,1553,1555,1561,1563,1569],{"type":39,"tag":54,"props":1548,"children":1550},{"className":1549},[],[1551],{"type":45,"value":1552},"result.ok: true",{"type":45,"value":1554}," → \"Connected as ",{"type":39,"tag":54,"props":1556,"children":1558},{"className":1557},[],[1559],{"type":45,"value":1560},"result.user.email",{"type":45,"value":1562}," ·\n",{"type":39,"tag":54,"props":1564,"children":1566},{"className":1565},[],[1567],{"type":45,"value":1568},"result.accessible_project_count",{"type":45,"value":1570}," accessible projects.\"",{"type":39,"tag":176,"props":1572,"children":1573},{},[1574,1580,1582,1588],{"type":39,"tag":54,"props":1575,"children":1577},{"className":1576},[],[1578],{"type":45,"value":1579},"result.ok: false",{"type":45,"value":1581}," → \"Test failed: ",{"type":39,"tag":54,"props":1583,"children":1585},{"className":1584},[],[1586],{"type":45,"value":1587},"result.error",{"type":45,"value":1589},".\"",{"type":39,"tag":237,"props":1591,"children":1593},{"id":1592},"project-list",[1594],{"type":45,"value":1595},"\"project list\"",{"type":39,"tag":48,"props":1597,"children":1598},{},[1599,1600],{"type":45,"value":496},{"type":39,"tag":54,"props":1601,"children":1603},{"className":1602},[],[1604],{"type":45,"value":1605},"python3 $PLUGIN_ROOT\u002Fskills\u002Fmixpanelyst\u002Fscripts\u002Fauth_manager.py project list",{"type":39,"tag":48,"props":1607,"children":1608},{},[1609,1610,1615,1617,1623],{"type":45,"value":684},{"type":39,"tag":54,"props":1611,"children":1613},{"className":1612},[],[1614],{"type":45,"value":690},{"type":45,"value":1616}," as a table: organization, project name, project ID. Mark the\nactive project (",{"type":39,"tag":54,"props":1618,"children":1620},{"className":1619},[],[1621],{"type":45,"value":1622},"is_active: true",{"type":45,"value":1624},") with a star. Suggest the project-use workflow\nin this skill to switch.",{"type":39,"tag":237,"props":1626,"children":1628},{"id":1627},"project-use",[1629,1631],{"type":45,"value":1630},"\"project use ",{"type":39,"tag":1632,"props":1633,"children":1634},"id",{},[1635],{"type":45,"value":1328},{"type":39,"tag":48,"props":1637,"children":1638},{},[1639,1641,1647],{"type":45,"value":1640},"If no ID: run ",{"type":39,"tag":54,"props":1642,"children":1644},{"className":1643},[],[1645],{"type":45,"value":1646},"project list",{"type":45,"value":1648}," first, then ask which to switch to.",{"type":39,"tag":48,"props":1650,"children":1651},{},[1652,1653],{"type":45,"value":496},{"type":39,"tag":54,"props":1654,"children":1656},{"className":1655},[],[1657],{"type":45,"value":1658},"python3 $PLUGIN_ROOT\u002Fskills\u002Fmixpanelyst\u002Fscripts\u002Fauth_manager.py project use \u003CPROJECT_ID>",{"type":39,"tag":48,"props":1660,"children":1661},{},[1662,1663,1668,1670,1675,1676,1681,1682,1687],{"type":45,"value":1390},{"type":39,"tag":54,"props":1664,"children":1666},{"className":1665},[],[1667],{"type":45,"value":1396},{"type":45,"value":1669},": \"Switched to project ",{"type":39,"tag":54,"props":1671,"children":1673},{"className":1672},[],[1674],{"type":45,"value":1412},{"type":45,"value":1480},{"type":39,"tag":54,"props":1677,"children":1679},{"className":1678},[],[1680],{"type":45,"value":1420},{"type":45,"value":1487},{"type":39,"tag":54,"props":1683,"children":1685},{"className":1684},[],[1686],{"type":45,"value":653},{"type":45,"value":235},{"type":39,"tag":237,"props":1689,"children":1691},{"id":1690},"workspace-list",[1692],{"type":45,"value":1693},"\"workspace list\"",{"type":39,"tag":48,"props":1695,"children":1696},{},[1697,1698],{"type":45,"value":496},{"type":39,"tag":54,"props":1699,"children":1701},{"className":1700},[],[1702],{"type":45,"value":1703},"python3 $PLUGIN_ROOT\u002Fskills\u002Fmixpanelyst\u002Fscripts\u002Fauth_manager.py workspace list",{"type":39,"tag":48,"props":1705,"children":1706},{},[1707,1708,1713,1715,1721,1723,1729,1730,1735],{"type":45,"value":684},{"type":39,"tag":54,"props":1709,"children":1711},{"className":1710},[],[1712],{"type":45,"value":690},{"type":45,"value":1714}," as a table: workspace ID, name, ",{"type":39,"tag":54,"props":1716,"children":1718},{"className":1717},[],[1719],{"type":45,"value":1720},"is_default",{"type":45,"value":1722},". Mark the\nactive workspace with a star. Mention the parent project from\n",{"type":39,"tag":54,"props":1724,"children":1726},{"className":1725},[],[1727],{"type":45,"value":1728},"project.name",{"type":45,"value":598},{"type":39,"tag":54,"props":1731,"children":1733},{"className":1732},[],[1734],{"type":45,"value":544},{"type":45,"value":773},{"type":39,"tag":237,"props":1737,"children":1739},{"id":1738},"workspace-use",[1740,1742],{"type":45,"value":1741},"\"workspace use ",{"type":39,"tag":1632,"props":1743,"children":1744},{},[1745],{"type":45,"value":1328},{"type":39,"tag":48,"props":1747,"children":1748},{},[1749,1750],{"type":45,"value":496},{"type":39,"tag":54,"props":1751,"children":1753},{"className":1752},[],[1754],{"type":45,"value":1755},"python3 $PLUGIN_ROOT\u002Fskills\u002Fmixpanelyst\u002Fscripts\u002Fauth_manager.py workspace use \u003CWORKSPACE_ID>",{"type":39,"tag":48,"props":1757,"children":1758},{},[1759,1760,1765,1767,1773],{"type":45,"value":1390},{"type":39,"tag":54,"props":1761,"children":1763},{"className":1762},[],[1764],{"type":45,"value":1396},{"type":45,"value":1766},": \"Pinned workspace ",{"type":39,"tag":54,"props":1768,"children":1770},{"className":1769},[],[1771],{"type":45,"value":1772},"active.workspace",{"type":45,"value":1589},{"type":39,"tag":237,"props":1775,"children":1777},{"id":1776},"target-list",[1778],{"type":45,"value":1779},"\"target list\"",{"type":39,"tag":48,"props":1781,"children":1782},{},[1783,1784],{"type":45,"value":496},{"type":39,"tag":54,"props":1785,"children":1787},{"className":1786},[],[1788],{"type":45,"value":1789},"python3 $PLUGIN_ROOT\u002Fskills\u002Fmixpanelyst\u002Fscripts\u002Fauth_manager.py target list",{"type":39,"tag":48,"props":1791,"children":1792},{},[1793],{"type":45,"value":1794},"Targets are saved (account, project, workspace?) triples — named cursor\npositions. Present as a table: name, account, project, workspace.",{"type":39,"tag":237,"props":1796,"children":1798},{"id":1797},"target-add",[1799],{"type":45,"value":1800},"\"target add\"",{"type":39,"tag":48,"props":1802,"children":1803},{},[1804],{"type":45,"value":1805},"Guided wizard — collect target name, account name, project ID, optional\nworkspace ID. Then either invoke the auth_manager directly:",{"type":39,"tag":265,"props":1807,"children":1811},{"className":1808,"code":1810,"language":45},[1809],"language-text","python3 $PLUGIN_ROOT\u002Fskills\u002Fmixpanelyst\u002Fscripts\u002Fauth_manager.py target add \u003CNAME> --account \u003CACCT> --project \u003CPROJ> [--workspace \u003CWS>]\n",[1812],{"type":39,"tag":54,"props":1813,"children":1814},{"__ignoreMap":270},[1815],{"type":45,"value":1810},{"type":39,"tag":48,"props":1817,"children":1818},{},[1819,1821,1827],{"type":45,"value":1820},"Or guide the user to ",{"type":39,"tag":54,"props":1822,"children":1824},{"className":1823},[],[1825],{"type":45,"value":1826},"mp target add \u003CNAME> --account \u003CACCT> --project \u003CPROJ> [--workspace \u003CWS>]",{"type":45,"value":235},{"type":39,"tag":237,"props":1829,"children":1831},{"id":1830},"target-use",[1832,1834],{"type":45,"value":1833},"\"target use ",{"type":39,"tag":698,"props":1835,"children":1836},{},[1837],{"type":45,"value":1328},{"type":39,"tag":48,"props":1839,"children":1840},{},[1841,1842],{"type":45,"value":496},{"type":39,"tag":54,"props":1843,"children":1845},{"className":1844},[],[1846],{"type":45,"value":1847},"python3 $PLUGIN_ROOT\u002Fskills\u002Fmixpanelyst\u002Fscripts\u002Fauth_manager.py target use \u003Cname>",{"type":39,"tag":48,"props":1849,"children":1850},{},[1851,1853,1859,1861,1867,1868,1874,1876,1882],{"type":45,"value":1852},"Applies all three axes (",{"type":39,"tag":54,"props":1854,"children":1856},{"className":1855},[],[1857],{"type":45,"value":1858},"account",{"type":45,"value":1860}," \u002F ",{"type":39,"tag":54,"props":1862,"children":1864},{"className":1863},[],[1865],{"type":45,"value":1866},"project",{"type":45,"value":1860},{"type":39,"tag":54,"props":1869,"children":1871},{"className":1870},[],[1872],{"type":45,"value":1873},"workspace",{"type":45,"value":1875},") to ",{"type":39,"tag":54,"props":1877,"children":1879},{"className":1878},[],[1880],{"type":45,"value":1881},"[active]",{"type":45,"value":1883},"\nin a single atomic config write.",{"type":39,"tag":237,"props":1885,"children":1887},{"id":1886},"bridge-status",[1888],{"type":45,"value":1889},"\"bridge status\"",{"type":39,"tag":48,"props":1891,"children":1892},{},[1893,1894],{"type":45,"value":496},{"type":39,"tag":54,"props":1895,"children":1897},{"className":1896},[],[1898],{"type":45,"value":1899},"python3 $PLUGIN_ROOT\u002Fskills\u002Fmixpanelyst\u002Fscripts\u002Fauth_manager.py bridge status",{"type":39,"tag":48,"props":1901,"children":1902},{},[1903],{"type":45,"value":1904},"Parse the JSON:",{"type":39,"tag":172,"props":1906,"children":1907},{},[1908,1928],{"type":39,"tag":176,"props":1909,"children":1910},{},[1911,1912,1918,1920,1926],{"type":45,"value":751},{"type":39,"tag":54,"props":1913,"children":1915},{"className":1914},[],[1916],{"type":45,"value":1917},"bridge",{"type":45,"value":1919}," is null → \"No bridge file found. To create one, run\n",{"type":39,"tag":54,"props":1921,"children":1923},{"className":1922},[],[1924],{"type":45,"value":1925},"mp account export-bridge --to \u003Cpath>",{"type":45,"value":1927}," on your host machine.\"",{"type":39,"tag":176,"props":1929,"children":1930},{},[1931,1932,1937,1939,1945,1946,1952,1954,1960,1962,1968,1969,1975,1977,1983],{"type":45,"value":751},{"type":39,"tag":54,"props":1933,"children":1935},{"className":1934},[],[1936],{"type":45,"value":1917},{"type":45,"value":1938}," is non-null → show ",{"type":39,"tag":54,"props":1940,"children":1942},{"className":1941},[],[1943],{"type":45,"value":1944},"bridge.path",{"type":45,"value":700},{"type":39,"tag":54,"props":1947,"children":1949},{"className":1948},[],[1950],{"type":45,"value":1951},"bridge.account.name",{"type":45,"value":1953},"\n(",{"type":39,"tag":54,"props":1955,"children":1957},{"className":1956},[],[1958],{"type":45,"value":1959},"bridge.account.type",{"type":45,"value":1961},"), pinned ",{"type":39,"tag":54,"props":1963,"children":1965},{"className":1964},[],[1966],{"type":45,"value":1967},"bridge.project",{"type":45,"value":1860},{"type":39,"tag":54,"props":1970,"children":1972},{"className":1971},[],[1973],{"type":45,"value":1974},"bridge.workspace",{"type":45,"value":1976}," if set,\nand any custom ",{"type":39,"tag":54,"props":1978,"children":1980},{"className":1979},[],[1981],{"type":45,"value":1982},"bridge.headers",{"type":45,"value":235},{"type":39,"tag":165,"props":1985,"children":1987},{"id":1986},"bearer-token-env-vars-mp_oauth_token",[1988,1990,1995],{"type":45,"value":1989},"Bearer-token env vars (",{"type":39,"tag":54,"props":1991,"children":1993},{"className":1992},[],[1994],{"type":45,"value":604},{"type":45,"value":455},{"type":39,"tag":48,"props":1997,"children":1998},{},[1999],{"type":45,"value":2000},"For non-interactive contexts (CI, agents, ephemeral environments) where the\nPKCE browser flow isn't viable, set:",{"type":39,"tag":265,"props":2002,"children":2005},{"className":2003,"code":2004,"language":45},[1809],"export MP_OAUTH_TOKEN=\u003Cbearer-token>\nexport MP_PROJECT_ID=\u003Cproject-id>\nexport MP_REGION=\u003Cus|eu|in>\n",[2006],{"type":39,"tag":54,"props":2007,"children":2008},{"__ignoreMap":270},[2009],{"type":45,"value":2004},{"type":39,"tag":48,"props":2011,"children":2012},{},[2013,2015,2021,2023,2028,2030,2035,2036,2042,2043,2049],{"type":45,"value":2014},"The library builds an ",{"type":39,"tag":54,"props":2016,"children":2018},{"className":2017},[],[2019],{"type":45,"value":2020},"Authorization: Bearer \u003Ctoken>",{"type":45,"value":2022}," header for every\nMixpanel endpoint. The full service-account env-var set (",{"type":39,"tag":54,"props":2024,"children":2026},{"className":2025},[],[2027],{"type":45,"value":426},{"type":45,"value":2029}," +\n",{"type":39,"tag":54,"props":2031,"children":2033},{"className":2032},[],[2034],{"type":45,"value":434},{"type":45,"value":428},{"type":39,"tag":54,"props":2037,"children":2039},{"className":2038},[],[2040],{"type":45,"value":2041},"MP_PROJECT_ID",{"type":45,"value":428},{"type":39,"tag":54,"props":2044,"children":2046},{"className":2045},[],[2047],{"type":45,"value":2048},"MP_REGION",{"type":45,"value":2050},") takes precedence when both\nsets are complete, so this is safe to add to a shell that already exports\nthe service-account vars.",{"type":39,"tag":165,"props":2052,"children":2054},{"id":2053},"presentation-style",[2055],{"type":45,"value":2056},"Presentation Style",{"type":39,"tag":172,"props":2058,"children":2059},{},[2060,2065,2070,2075],{"type":39,"tag":176,"props":2061,"children":2062},{},[2063],{"type":45,"value":2064},"Be concise — show status in 1–2 lines, not a wall of JSON",{"type":39,"tag":176,"props":2066,"children":2067},{},[2068],{"type":45,"value":2069},"Use tables for lists of accounts, projects, workspaces, targets",{"type":39,"tag":176,"props":2071,"children":2072},{},[2073],{"type":45,"value":2074},"Always suggest a next action when something is missing",{"type":39,"tag":176,"props":2076,"children":2077},{},[2078,2080,2085],{"type":45,"value":2079},"On errors, show ",{"type":39,"tag":54,"props":2081,"children":2083},{"className":2082},[],[2084],{"type":45,"value":653},{"type":45,"value":2086}," verbatim — it names the fix",{"type":39,"tag":2088,"props":2089,"children":2090},"style",{},[2091],{"type":45,"value":2092},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":2094,"total":2299},[2095,2116,2139,2156,2172,2191,2210,2226,2242,2256,2268,2283],{"slug":2096,"name":2096,"fn":2097,"description":2098,"org":2099,"tags":2100,"stars":2113,"repoUrl":2114,"updatedAt":2115},"prior-auth-packet-builder","build healthcare prior authorization packets","Build a concise prior authorization packet from local case files and payer policy docs.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2101,2104,2107,2110],{"name":2102,"slug":2103,"type":15},"Documents","documents",{"name":2105,"slug":2106,"type":15},"Healthcare","healthcare",{"name":2108,"slug":2109,"type":15},"Insurance","insurance",{"name":2111,"slug":2112,"type":15},"Regulatory Compliance","regulatory-compliance",28169,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fopenai-agents-python","2026-04-16T05:11:39.180399",{"slug":2117,"name":2117,"fn":2118,"description":2119,"org":2120,"tags":2121,"stars":2136,"repoUrl":2137,"updatedAt":2138},"aspnet-core","build ASP.NET Core web applications","Build, review, refactor, or architect ASP.NET Core web applications using current official guidance for .NET web development. Use when working on Blazor Web Apps, Razor Pages, MVC, Minimal APIs, controller-based Web APIs, SignalR, gRPC, middleware, dependency injection, configuration, authentication, authorization, testing, performance, deployment, or ASP.NET Core upgrades.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2122,2125,2127,2130,2133],{"name":2123,"slug":2124,"type":15},".NET","dotnet",{"name":2126,"slug":2117,"type":15},"ASP.NET Core",{"name":2128,"slug":2129,"type":15},"Blazor","blazor",{"name":2131,"slug":2132,"type":15},"C#","csharp",{"name":2134,"slug":2135,"type":15},"Web Development","web-development",23787,"https:\u002F\u002Fgithub.com\u002Fopenai\u002Fskills","2026-04-12T05:07:02.819491",{"slug":2140,"name":2140,"fn":2141,"description":2142,"org":2143,"tags":2144,"stars":2136,"repoUrl":2137,"updatedAt":2155},"chatgpt-apps","build ChatGPT Apps SDK applications","Build, scaffold, refactor, and troubleshoot ChatGPT Apps SDK applications that combine an MCP server and widget UI. Use when Codex needs to design tools, register UI resources, wire the MCP Apps bridge or ChatGPT compatibility APIs, apply Apps SDK metadata or CSP or domain settings, or produce a docs-aligned project scaffold. Prefer a docs-first workflow by invoking the openai-docs skill or OpenAI developer docs MCP tools before generating code.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2145,2148,2151,2154],{"name":2146,"slug":2147,"type":15},"Apps SDK","apps-sdk",{"name":2149,"slug":2150,"type":15},"ChatGPT","chatgpt",{"name":2152,"slug":2153,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},"2026-04-12T05:07:05.468097",{"slug":2157,"name":2157,"fn":2158,"description":2159,"org":2160,"tags":2161,"stars":2136,"repoUrl":2137,"updatedAt":2171},"cli-creator","build CLIs from API docs","Build a composable CLI for Codex from API docs, an OpenAPI spec, existing curl examples, an SDK, a web app, an admin tool, or a local script. Use when the user wants Codex to create a command-line tool that can run from any repo, expose composable read\u002Fwrite commands, return stable JSON, manage auth, and pair with a companion skill.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2162,2165,2168],{"name":2163,"slug":2164,"type":15},"API Development","api-development",{"name":2166,"slug":2167,"type":15},"CLI","cli",{"name":2169,"slug":2170,"type":15},"Codex","codex","2026-04-12T05:07:04.132762",{"slug":2173,"name":2173,"fn":2174,"description":2175,"org":2176,"tags":2177,"stars":2136,"repoUrl":2137,"updatedAt":2190},"cloudflare-deploy","deploy projects to Cloudflare","Deploy applications and infrastructure to Cloudflare using Workers, Pages, and related platform services. Use when the user asks to deploy, host, publish, or set up a project on Cloudflare.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2178,2181,2184,2187],{"name":2179,"slug":2180,"type":15},"Cloudflare","cloudflare",{"name":2182,"slug":2183,"type":15},"Cloudflare Pages","cloudflare-pages",{"name":2185,"slug":2186,"type":15},"Cloudflare Workers","cloudflare-workers",{"name":2188,"slug":2189,"type":15},"Deployment","deployment","2026-04-12T05:07:14.275118",{"slug":2192,"name":2192,"fn":2193,"description":2194,"org":2195,"tags":2196,"stars":2136,"repoUrl":2137,"updatedAt":2209},"define-goal","define and set measurable project goals","Help the user define a concrete, measurable goal before starting work, especially when they ask to use the goal tool, create a goal, set an objective, clarify success criteria, or turn a fuzzy intention into a quantitative outcome. Use this skill for goal creation and goal refinement only; it does not manage durable snapshots, decision logs, or long-running execution artifacts.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2197,2200,2203,2206],{"name":2198,"slug":2199,"type":15},"Productivity","productivity",{"name":2201,"slug":2202,"type":15},"Project Management","project-management",{"name":2204,"slug":2205,"type":15},"Strategy","strategy",{"name":2207,"slug":2208,"type":15},"Task Management","task-management","2026-05-23T06:17:16.870838",{"slug":2211,"name":2211,"fn":2212,"description":2213,"org":2214,"tags":2215,"stars":2136,"repoUrl":2137,"updatedAt":2225},"figma","translate Figma designs into code","Use the Figma MCP server to fetch design context, screenshots, variables, and assets from Figma, and to translate Figma nodes into production code. Trigger when a task involves Figma URLs, node IDs, design-to-code implementation, or Figma MCP setup and troubleshooting.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2216,2219,2221,2224],{"name":2217,"slug":2218,"type":15},"Design","design",{"name":2220,"slug":2211,"type":15},"Figma",{"name":2222,"slug":2223,"type":15},"Frontend","frontend",{"name":2152,"slug":2153,"type":15},"2026-04-12T05:06:47.939943",{"slug":2227,"name":2227,"fn":2228,"description":2229,"org":2230,"tags":2231,"stars":2136,"repoUrl":2137,"updatedAt":2241},"figma-code-connect-components","connect Figma designs to code components","Connects Figma design components to code components using Code Connect mapping tools. Use when user says \"code connect\", \"connect this component to code\", \"map this component\", \"link component to code\", \"create code connect mapping\", or wants to establish mappings between Figma designs and code implementations. For canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2232,2233,2236,2237,2238],{"name":2217,"slug":2218,"type":15},{"name":2234,"slug":2235,"type":15},"Design System","design-system",{"name":2220,"slug":2211,"type":15},{"name":2222,"slug":2223,"type":15},{"name":2239,"slug":2240,"type":15},"UI Components","ui-components","2026-05-10T05:59:52.971881",{"slug":2243,"name":2243,"fn":2244,"description":2245,"org":2246,"tags":2247,"stars":2136,"repoUrl":2137,"updatedAt":2255},"figma-create-design-system-rules","generate design system rules from Figma","Generates custom design system rules for the user's codebase. Use when user says \"create design system rules\", \"generate rules for my project\", \"set up design rules\", \"customize design system guidelines\", or wants to establish project-specific conventions for Figma-to-code workflows. Requires Figma MCP server connection.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2248,2249,2250,2253,2254],{"name":2217,"slug":2218,"type":15},{"name":2234,"slug":2235,"type":15},{"name":2251,"slug":2252,"type":15},"Documentation","documentation",{"name":2220,"slug":2211,"type":15},{"name":2222,"slug":2223,"type":15},"2026-05-16T06:07:47.821474",{"slug":2257,"name":2257,"fn":2258,"description":2259,"org":2260,"tags":2261,"stars":2136,"repoUrl":2137,"updatedAt":2267},"figma-implement-design","translate Figma designs into application code","Translates Figma designs into production-ready application code with 1:1 visual fidelity. Use when implementing UI code from Figma files, when user mentions \"implement design\", \"generate code\", \"implement component\", provides Figma URLs, or asks to build components matching Figma specs. For Figma canvas writes via `use_figma`, use `figma-use`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2262,2263,2264,2265,2266],{"name":2217,"slug":2218,"type":15},{"name":2220,"slug":2211,"type":15},{"name":2222,"slug":2223,"type":15},{"name":2239,"slug":2240,"type":15},{"name":2134,"slug":2135,"type":15},"2026-05-16T06:07:40.583615",{"slug":2269,"name":2269,"fn":2270,"description":2271,"org":2272,"tags":2273,"stars":2136,"repoUrl":2137,"updatedAt":2282},"hatch-pet","create animated pets for Codex","Create, repair, validate, visually QA, and package Codex-compatible animated pets and pet spritesheets from character art, generated images, company or prospect brand cues, or visual references. Use when a user wants a lightweight-worker Codex pet workflow, a non-pixel custom pet style, a prospect or company mascot pet, or a full 8x9 animated pet atlas with transparent unused cells, QA contact sheets, and pet.json packaging. This skill composes the installed $imagegen system skill for visual generation and uses bundled scripts for deterministic spritesheet assembly.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2274,2277,2278,2281],{"name":2275,"slug":2276,"type":15},"Animation","animation",{"name":2169,"slug":2170,"type":15},{"name":2279,"slug":2280,"type":15},"Creative","creative",{"name":2217,"slug":2218,"type":15},"2026-05-02T05:31:48.48485",{"slug":2284,"name":2284,"fn":2285,"description":2286,"org":2287,"tags":2288,"stars":2136,"repoUrl":2137,"updatedAt":2298},"imagegen","generate and edit raster images","Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output should be a bitmap asset rather than repo-native code or vector. Do not use when the task is better handled by editing existing SVG\u002Fvector\u002Fcode-native assets, extending an established icon or logo system, or building the visual directly in HTML\u002FCSS\u002Fcanvas.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2289,2290,2291,2294,2297],{"name":2279,"slug":2280,"type":15},{"name":2217,"slug":2218,"type":15},{"name":2292,"slug":2293,"type":15},"Image Generation","image-generation",{"name":2295,"slug":2296,"type":15},"Images","images",{"name":9,"slug":8,"type":15},"2026-05-15T06:23:24.312127",675,{"items":2301,"total":2414},[2302,2318,2334,2346,2364,2382,2402],{"slug":2303,"name":2303,"fn":2304,"description":2305,"org":2306,"tags":2307,"stars":22,"repoUrl":23,"updatedAt":24},"accessibility-and-inclusive-visualization","make data visualizations accessible","Make data visualizations accessible and inclusive. Use when the user needs chart or diagram accessibility guidance, text alternatives for complex visuals, color and contrast review, keyboard support, reduced-motion behavior for animation or parallax, or an accessibility QA workflow for exported figures, UML-like diagrams, and dashboards.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2308,2311,2314,2317],{"name":2309,"slug":2310,"type":15},"Accessibility","accessibility",{"name":2312,"slug":2313,"type":15},"Charts","charts",{"name":2315,"slug":2316,"type":15},"Data Visualization","data-visualization",{"name":2217,"slug":2218,"type":15},{"slug":2319,"name":2319,"fn":2320,"description":2321,"org":2322,"tags":2323,"stars":22,"repoUrl":23,"updatedAt":2333},"agent-browser","automate browser interactions for agents","Browser automation CLI for AI agents. Use when the user needs to interact with websites, verify dev server output, test web apps, navigate pages, fill forms, click buttons, take screenshots, extract data, or automate any browser task. Also triggers when a dev server starts so you can verify it visually.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2324,2327,2330],{"name":2325,"slug":2326,"type":15},"Agents","agents",{"name":2328,"slug":2329,"type":15},"Browser Automation","browser-automation",{"name":2331,"slug":2332,"type":15},"Testing","testing","2026-04-06T18:41:03.44016",{"slug":2335,"name":2335,"fn":2336,"description":2337,"org":2338,"tags":2339,"stars":22,"repoUrl":23,"updatedAt":2345},"agent-browser-verify","verify dev server output with automated browser","Automated browser verification for dev servers. Triggers when a dev server starts to run a visual gut-check with agent-browser — verifies the page loads, checks for console errors, validates key UI elements, and reports pass\u002Ffail before continuing.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2340,2341,2344],{"name":2328,"slug":2329,"type":15},{"name":2342,"slug":2343,"type":15},"Local Development","local-development",{"name":2331,"slug":2332,"type":15},"2026-04-06T18:41:17.526867",{"slug":2347,"name":2347,"fn":2348,"description":2349,"org":2350,"tags":2351,"stars":22,"repoUrl":23,"updatedAt":2363},"agents-sdk","build AI agents on Cloudflare Workers","Build AI agents on Cloudflare Workers using the Agents SDK. Load when creating stateful agents, durable workflows, real-time WebSocket apps, scheduled tasks, MCP servers, or chat applications. Covers Agent class, state management, callable RPC, Workflows integration, and React hooks. Biases towards retrieval from Cloudflare docs over pre-trained knowledge.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2352,2353,2354,2357,2360],{"name":2325,"slug":2326,"type":15},{"name":2185,"slug":2186,"type":15},{"name":2355,"slug":2356,"type":15},"SDK","sdk",{"name":2358,"slug":2359,"type":15},"Serverless","serverless",{"name":2361,"slug":2362,"type":15},"WebSockets","websockets","2026-04-06T18:39:51.717063",{"slug":2365,"name":2365,"fn":2366,"description":2367,"org":2368,"tags":2369,"stars":22,"repoUrl":23,"updatedAt":2381},"ai-elements","build chat UIs with AI Elements","AI Elements component library guidance — pre-built React components for AI interfaces built on shadcn\u002Fui. Use when building chat UIs, message displays, tool call rendering, streaming responses, reasoning panels, or any AI-native interface with the AI SDK.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2370,2371,2374,2377,2378],{"name":2222,"slug":2223,"type":15},{"name":2372,"slug":2373,"type":15},"React","react",{"name":2375,"slug":2376,"type":15},"shadcn\u002Fui","shadcn-ui",{"name":2239,"slug":2240,"type":15},{"name":2379,"slug":2380,"type":15},"Vercel","vercel","2026-04-06T18:40:59.619419",{"slug":2383,"name":2383,"fn":2384,"description":2385,"org":2386,"tags":2387,"stars":22,"repoUrl":23,"updatedAt":2401},"ai-gateway","configure Vercel AI Gateway","Vercel AI Gateway expert guidance. Use when configuring model routing, provider failover, cost tracking, or managing multiple AI providers through a unified API.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2388,2391,2394,2397,2400],{"name":2389,"slug":2390,"type":15},"AI Infrastructure","ai-infrastructure",{"name":2392,"slug":2393,"type":15},"Cost Optimization","cost-optimization",{"name":2395,"slug":2396,"type":15},"LLM","llm",{"name":2398,"slug":2399,"type":15},"Performance","performance",{"name":2379,"slug":2380,"type":15},"2026-04-06T18:40:44.377464",{"slug":2403,"name":2403,"fn":2404,"description":2405,"org":2406,"tags":2407,"stars":22,"repoUrl":23,"updatedAt":2413},"ai-generation-persistence","implement persistence patterns for AI generations","AI generation persistence patterns — unique IDs, addressable URLs, database storage, and cost tracking for every LLM generation",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2408,2409,2412],{"name":2392,"slug":2393,"type":15},{"name":2410,"slug":2411,"type":15},"Database","database",{"name":2395,"slug":2396,"type":15},"2026-04-06T18:41:08.513425",600]