plugins marketplace
← All plugins

mixpanel-headless

v0.1.2

Analyze Mixpanel data with the mixpanel_headless Python SDK and Codex skills.

Codex3 skills

by MixpanelMIT5kupdated 3 weeks ago

Source

git clone https://github.com/openai/plugins

Clone the source, then follow the repository's marketplace instructions for your runtime. The plugin root is plugins/mixpanel-headless/ inside the repository.

Layout

plugins/mixpanel-headless/
├── .codex-plugin/plugin.json
├── skills/dashboard-expert/SKILL.md
├── skills/mixpanel-auth/SKILL.md
└── skills/mixpanelyst/SKILL.md

Skills3

dashboard-expertskills/dashboard-expert/SKILL.md

Full CRUD and analysis for Mixpanel dashboards. Use when the user asks to build, create, analyze, read, understand, explain, modify, update, enhance, or manage dashboards, or asks about dashboard layout, text cards, or report arrangement. Covers dashboard analysis (read + understand existing), creation (new builds), modification (update existing), and explanation (data-driven annotation).

mixpanel-authskills/mixpanel-auth/SKILL.md

Manage Mixpanel Headless authentication: check session state, list/add/use accounts, run OAuth login, switch projects/workspaces, manage targets, and check bridge credentials.

mixpanelystskills/mixpanelyst/SKILL.md

This skill should be used when the user asks about Mixpanel product analytics, event data, funnel analysis, retention curves, cohort analysis, segmentation queries, user behavior, conversion rates, churn, DAU/MAU, ARPU, revenue metrics, feature adoption, A/B test results, user paths, flow analysis, or any request to query, explore, visualize, or analyze Mixpanel data using Python. Also use when the user asks to read, write, or manage Mixpanel "business context" — the markdown documentation that grounds AI assistants in an organization's structure and goals.

Manifests1

plugins/mixpanel-headless/.codex-plugin/plugin.json
{
  "name": "mixpanel-headless",
  "version": "0.1.2",
  "description": "Analyze Mixpanel data with the mixpanel_headless Python SDK and Codex skills.",
  "author": {
    "name": "Mixpanel",
    "url": "https://mixpanel.com/home"
  },
  "homepage": "https://mixpanel.github.io/mixpanel-headless/",
  "repository": "https://github.com/mixpanel/mixpanel-headless",
  "license": "MIT",
  "keywords": [
    "mixpanel",
    "analytics",
    "product-analytics",
    "python",
    "data-science",
    "funnels",
    "retention",
    "flows",
    "dashboards"
  ],
  "skills": "./skills/",
  "interface": {
    "displayName": "Mixpanel Headless",
    "shortDescription": "Analyze Mixpanel data with Python",
    "longDescription": "Use Mixpanel Headless skills to install and authenticate the mixpanel_headless Python SDK, discover Mixpanel schemas, run segmentation, funnel, retention, flow, and user-profile analyses, and build or inspect Mixpanel dashboards from Codex.",
    "developerName": "Mixpanel",
    "category": "Data & Analytics",
    "capabilities": [
      "Interactive",
      "Read",
      "Write"
    ],
    "websiteURL": "https://mixpanel.com/home",
    "privacyPolicyURL": "https://mixpanel.com/legal/privacy-policy/",
    "termsOfServiceURL": "https://mixpanel.com/legal/terms-of-use/",
    "defaultPrompt": [
      "Analyze my Mixpanel signup funnel with Python",
      "Find product analytics insights in Mixpanel",
      "Build a Mixpanel dashboard from key events"
    ],
    "brandColor": "#7856FF",
    "composerIcon": "./assets/app-icon.png",
    "logo": "./assets/logo.png",
    "screenshots": [
      "./assets/screenshot-1.png",
      "./assets/screenshot-2.png",
      "./assets/screenshot-3.png"
    ]
  }
}