[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-posthog-managing-reminders":3,"mdc--brba1q-key":46,"related-repo-posthog-managing-reminders":1279,"related-org-posthog-managing-reminders":1383},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":20,"repoUrl":21,"updatedAt":22,"license":23,"forks":24,"topics":25,"repo":41,"sourceUrl":44,"mdContent":45},"managing-reminders","create and manage PostHog reminders","Create and manage PostHog reminders — private, human-paced nudges that fire as in-app notifications on a schedule, optionally linked to a PostHog resource. Use when the user says \"remind me to…\", wants a one-off or recurring nudge (daily\u002Fweekly\u002Fmonthly\u002Fyearly, a cron schedule, or a specific date\u002Ftime), wants to be reminded to look at a dashboard, insight, experiment, feature flag, survey, notebook, replay, or error, or wants to list, change, or cancel their reminders. Covers when to pick a reminder over an alert or subscription, the one-off vs recurring vs cron schedule field mappings, timezones, and attaching a resource.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"posthog","PostHog","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fposthog.png",[12,16,17],{"name":13,"slug":14,"type":15},"Productivity","productivity","tag",{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},"Task Management","task-management",35568,"https:\u002F\u002Fgithub.com\u002FPostHog\u002Fposthog","2026-06-18T08:22:44.190871",null,2977,[26,27,28,29,30,31,32,33,34,35,36,37,38,39,40],"ab-testing","ai-analytics","analytics","cdp","data-warehouse","experiments","feature-flags","javascript","product-analytics","python","react","session-replay","surveys","typescript","web-analytics",{"repoUrl":21,"stars":20,"forks":24,"topics":42,"description":43},[26,27,28,29,30,31,32,33,34,35,36,37,38,39,40],"🦔 PostHog is an all-in-one developer platform for building successful products. We offer product analytics, web analytics, session replay, error tracking, feature flags, experimentation, surveys, data warehouse, a CDP, and an AI product assistant to help debug your code, ship features faster, and keep all your usage and customer data in one stack.","https:\u002F\u002Fgithub.com\u002FPostHog\u002Fposthog\u002Ftree\u002FHEAD\u002Fproducts\u002Freminders\u002Fskills\u002Fmanaging-reminders","---\nname: managing-reminders\ndescription: 'Create and manage PostHog reminders — private, human-paced nudges that fire as in-app notifications on a schedule, optionally linked to a PostHog resource. Use when the user says \"remind me to…\", wants a one-off or recurring nudge (daily\u002Fweekly\u002Fmonthly\u002Fyearly, a cron schedule, or a specific date\u002Ftime), wants to be reminded to look at a dashboard, insight, experiment, feature flag, survey, notebook, replay, or error, or wants to list, change, or cancel their reminders. Covers when to pick a reminder over an alert or subscription, the one-off vs recurring vs cron schedule field mappings, timezones, and attaching a resource.'\n---\n\n# Managing reminders\n\nThis skill guides you through creating and managing PostHog reminders.\nA reminder is a private, human-paced nudge to yourself: it fires an in-app notification\non a schedule, with no condition attached. It can optionally link to a PostHog resource.\n\n## When to use this skill\n\nUse this skill when the user:\n\n- Says \"remind me to…\", \"nudge me\", \"ping me\", or \"don't let me forget\"\n- Wants a one-off reminder at a specific date\u002Ftime\n- Wants a recurring reminder (every day, weekly, every Monday, weekdays, monthly, etc.)\n- Wants to be reminded to review a specific dashboard, insight, experiment, flag, survey, notebook, replay, or error\n- Wants to see, change, or cancel reminders they have set\n\n## Reminder vs alert vs subscription\n\nThese three look similar but solve different jobs. Pick the right one:\n\n- **Reminder** — a human-paced nudge to yourself with **no condition**. It just fires an\n  in-app notification on a schedule (\"remind me to review the launch dashboard every Monday\").\n  If the user says **\"remind me to…\"**, it is a reminder.\n- **Alert** — watches an insight's metric on a schedule and notifies only when a\n  **threshold or anomaly condition is met** (\"tell me if signups drop below 100\").\n- **Subscription** — delivers an insight or dashboard **export\u002Fsnapshot** on a schedule via\n  email, Slack, or webhook (\"email me this dashboard every morning\").\n\nIf there is a condition to evaluate, it is an alert. If there is an export to deliver, it is a\nsubscription. If it is just a timed nudge to a person, it is a reminder.\n\n## Scheduling shapes\n\nA reminder uses **exactly one** of `scheduled_at`, `recurrence_interval`, or `cron_expression`.\nProviding zero or more than one is rejected.\n\n### One-off\n\nSet `scheduled_at` to a future ISO 8601 timestamp. The reminder fires once, then becomes `completed`.\n\n| User says                   | Field                                                |\n| --------------------------- | ---------------------------------------------------- |\n| \"remind me tomorrow at 3pm\" | `scheduled_at: \u003Ctomorrow 15:00 in the user's tz>`    |\n| \"remind me on Jan 5 at 9am\" | `scheduled_at: \"2026-01-05T09:00:00\"` (+ `timezone`) |\n\n### Preset recurring\n\nSet `recurrence_interval` to one of `daily`, `weekly`, `monthly`, `yearly`.\n\n| User says     | Field                            |\n| ------------- | -------------------------------- |\n| \"every day\"   | `recurrence_interval: \"daily\"`   |\n| \"every week\"  | `recurrence_interval: \"weekly\"`  |\n| \"every month\" | `recurrence_interval: \"monthly\"` |\n| \"every year\"  | `recurrence_interval: \"yearly\"`  |\n\n### Cron recurring\n\nSet `cron_expression` to a 5-field cron string (`min hour day-of-month month day-of-week`) when\nthe cadence is a specific weekday or time the presets can't express.\n\n| User says                  | Field                             |\n| -------------------------- | --------------------------------- |\n| \"every Monday at 9am\"      | `cron_expression: \"0 9 * * 1\"`    |\n| \"weekdays at 8:30\"         | `cron_expression: \"30 8 * * 1-5\"` |\n| \"1st of the month at noon\" | `cron_expression: \"0 12 1 * *\"`   |\n\nA reminder may fire **at most 4 times per day** — a more frequent cron (e.g. hourly) is rejected.\n\n## Timezone\n\nAlways pass `timezone` as the user's IANA zone (e.g. `\"America\u002FNew_York\"`) when you know it, so\nwall-clock times like \"9am\" resolve to the right moment. If omitted, it defaults to the **project\ntimezone**. Cron and preset schedules resolve in this zone; `scheduled_at` is an absolute instant,\nso include its offset or rely on the same zone.\n\n## Attaching a resource\n\nTo link the reminder to a PostHog object, set `resource_type` and `resource_id` **together**.\nThe fired notification deep-links to that object. The resource must already exist in the project.\n\n| `resource_type`  | `resource_id` is the… |\n| ---------------- | --------------------- |\n| `dashboard`      | numeric id            |\n| `insight`        | short_id              |\n| `experiment`     | numeric id            |\n| `feature_flag`   | numeric id            |\n| `survey`         | id                    |\n| `notebook`       | short_id              |\n| `replay`         | session_id            |\n| `error_tracking` | issue id              |\n\nResolve the id first if the user gives you a name or URL (e.g. fetch the insight to get its\n`short_id`). Omit both fields for a standalone reminder with no linked resource.\n\n## Privacy and lifecycle\n\n- Reminders are **private to the creating user** and scoped to the **current project**. Other\n  users never see them.\n- They fire as **in-app notifications** — not email, Slack, or webhook.\n- A **one-off** becomes `completed` after it fires.\n- A **recurring** reminder stays `active` until deleted, or until its optional `end_date` passes\n  (then it becomes `completed`).\n- A one-off whose delivery permanently fails becomes `errored` — surface this via `reminders-list`\n  when reporting on a user's reminders.\n\n## The MCP tools\n\n- `reminder-create` — create a reminder\n- `reminders-list` — list the user's reminders (schedule, status, next fire time)\n- `reminder-get` — get one reminder by id\n- `reminder-update` — update title, message, schedule, timezone, end date, or attached resource\n  (changing the schedule recomputes the next fire time)\n- `reminder-delete` — delete a reminder, which stops it firing\n\n## Worked example\n\nUser: \"Remind me to review the launch dashboard every Monday at 9am.\"\n\n1. Resolve the dashboard id (e.g. dashboard `67`).\n2. Pick the schedule shape: a specific weekday + time → cron.\n3. Pass the user's timezone if known.\n4. Call `reminder-create`:\n\n```json\n{\n  \"title\": \"Review the launch dashboard\",\n  \"resource_type\": \"dashboard\",\n  \"resource_id\": \"67\",\n  \"cron_expression\": \"0 9 * * 1\",\n  \"timezone\": \"America\u002FNew_York\"\n}\n```\n\nConfirm back to the user when it will next fire (use `next_fire_at` from the response), and that\nit will keep firing weekly until they delete it.\n",{"data":47,"body":48},{"name":4,"description":6},{"type":49,"children":50},"root",[51,59,65,72,77,107,113,118,180,185,191,228,235,255,327,333,372,460,466,485,556,568,573,607,613,641,804,816,822,929,935,992,998,1003,1041,1260,1273],{"type":52,"tag":53,"props":54,"children":55},"element","h1",{"id":4},[56],{"type":57,"value":58},"text","Managing reminders",{"type":52,"tag":60,"props":61,"children":62},"p",{},[63],{"type":57,"value":64},"This skill guides you through creating and managing PostHog reminders.\nA reminder is a private, human-paced nudge to yourself: it fires an in-app notification\non a schedule, with no condition attached. It can optionally link to a PostHog resource.",{"type":52,"tag":66,"props":67,"children":69},"h2",{"id":68},"when-to-use-this-skill",[70],{"type":57,"value":71},"When to use this skill",{"type":52,"tag":60,"props":73,"children":74},{},[75],{"type":57,"value":76},"Use this skill when the user:",{"type":52,"tag":78,"props":79,"children":80},"ul",{},[81,87,92,97,102],{"type":52,"tag":82,"props":83,"children":84},"li",{},[85],{"type":57,"value":86},"Says \"remind me to…\", \"nudge me\", \"ping me\", or \"don't let me forget\"",{"type":52,"tag":82,"props":88,"children":89},{},[90],{"type":57,"value":91},"Wants a one-off reminder at a specific date\u002Ftime",{"type":52,"tag":82,"props":93,"children":94},{},[95],{"type":57,"value":96},"Wants a recurring reminder (every day, weekly, every Monday, weekdays, monthly, etc.)",{"type":52,"tag":82,"props":98,"children":99},{},[100],{"type":57,"value":101},"Wants to be reminded to review a specific dashboard, insight, experiment, flag, survey, notebook, replay, or error",{"type":52,"tag":82,"props":103,"children":104},{},[105],{"type":57,"value":106},"Wants to see, change, or cancel reminders they have set",{"type":52,"tag":66,"props":108,"children":110},{"id":109},"reminder-vs-alert-vs-subscription",[111],{"type":57,"value":112},"Reminder vs alert vs subscription",{"type":52,"tag":60,"props":114,"children":115},{},[116],{"type":57,"value":117},"These three look similar but solve different jobs. Pick the right one:",{"type":52,"tag":78,"props":119,"children":120},{},[121,146,163],{"type":52,"tag":82,"props":122,"children":123},{},[124,130,132,137,139,144],{"type":52,"tag":125,"props":126,"children":127},"strong",{},[128],{"type":57,"value":129},"Reminder",{"type":57,"value":131}," — a human-paced nudge to yourself with ",{"type":52,"tag":125,"props":133,"children":134},{},[135],{"type":57,"value":136},"no condition",{"type":57,"value":138},". It just fires an\nin-app notification on a schedule (\"remind me to review the launch dashboard every Monday\").\nIf the user says ",{"type":52,"tag":125,"props":140,"children":141},{},[142],{"type":57,"value":143},"\"remind me to…\"",{"type":57,"value":145},", it is a reminder.",{"type":52,"tag":82,"props":147,"children":148},{},[149,154,156,161],{"type":52,"tag":125,"props":150,"children":151},{},[152],{"type":57,"value":153},"Alert",{"type":57,"value":155}," — watches an insight's metric on a schedule and notifies only when a\n",{"type":52,"tag":125,"props":157,"children":158},{},[159],{"type":57,"value":160},"threshold or anomaly condition is met",{"type":57,"value":162}," (\"tell me if signups drop below 100\").",{"type":52,"tag":82,"props":164,"children":165},{},[166,171,173,178],{"type":52,"tag":125,"props":167,"children":168},{},[169],{"type":57,"value":170},"Subscription",{"type":57,"value":172}," — delivers an insight or dashboard ",{"type":52,"tag":125,"props":174,"children":175},{},[176],{"type":57,"value":177},"export\u002Fsnapshot",{"type":57,"value":179}," on a schedule via\nemail, Slack, or webhook (\"email me this dashboard every morning\").",{"type":52,"tag":60,"props":181,"children":182},{},[183],{"type":57,"value":184},"If there is a condition to evaluate, it is an alert. If there is an export to deliver, it is a\nsubscription. If it is just a timed nudge to a person, it is a reminder.",{"type":52,"tag":66,"props":186,"children":188},{"id":187},"scheduling-shapes",[189],{"type":57,"value":190},"Scheduling shapes",{"type":52,"tag":60,"props":192,"children":193},{},[194,196,201,203,210,212,218,220,226],{"type":57,"value":195},"A reminder uses ",{"type":52,"tag":125,"props":197,"children":198},{},[199],{"type":57,"value":200},"exactly one",{"type":57,"value":202}," of ",{"type":52,"tag":204,"props":205,"children":207},"code",{"className":206},[],[208],{"type":57,"value":209},"scheduled_at",{"type":57,"value":211},", ",{"type":52,"tag":204,"props":213,"children":215},{"className":214},[],[216],{"type":57,"value":217},"recurrence_interval",{"type":57,"value":219},", or ",{"type":52,"tag":204,"props":221,"children":223},{"className":222},[],[224],{"type":57,"value":225},"cron_expression",{"type":57,"value":227},".\nProviding zero or more than one is rejected.",{"type":52,"tag":229,"props":230,"children":232},"h3",{"id":231},"one-off",[233],{"type":57,"value":234},"One-off",{"type":52,"tag":60,"props":236,"children":237},{},[238,240,245,247,253],{"type":57,"value":239},"Set ",{"type":52,"tag":204,"props":241,"children":243},{"className":242},[],[244],{"type":57,"value":209},{"type":57,"value":246}," to a future ISO 8601 timestamp. The reminder fires once, then becomes ",{"type":52,"tag":204,"props":248,"children":250},{"className":249},[],[251],{"type":57,"value":252},"completed",{"type":57,"value":254},".",{"type":52,"tag":256,"props":257,"children":258},"table",{},[259,278],{"type":52,"tag":260,"props":261,"children":262},"thead",{},[263],{"type":52,"tag":264,"props":265,"children":266},"tr",{},[267,273],{"type":52,"tag":268,"props":269,"children":270},"th",{},[271],{"type":57,"value":272},"User says",{"type":52,"tag":268,"props":274,"children":275},{},[276],{"type":57,"value":277},"Field",{"type":52,"tag":279,"props":280,"children":281},"tbody",{},[282,300],{"type":52,"tag":264,"props":283,"children":284},{},[285,291],{"type":52,"tag":286,"props":287,"children":288},"td",{},[289],{"type":57,"value":290},"\"remind me tomorrow at 3pm\"",{"type":52,"tag":286,"props":292,"children":293},{},[294],{"type":52,"tag":204,"props":295,"children":297},{"className":296},[],[298],{"type":57,"value":299},"scheduled_at: \u003Ctomorrow 15:00 in the user's tz>",{"type":52,"tag":264,"props":301,"children":302},{},[303,308],{"type":52,"tag":286,"props":304,"children":305},{},[306],{"type":57,"value":307},"\"remind me on Jan 5 at 9am\"",{"type":52,"tag":286,"props":309,"children":310},{},[311,317,319,325],{"type":52,"tag":204,"props":312,"children":314},{"className":313},[],[315],{"type":57,"value":316},"scheduled_at: \"2026-01-05T09:00:00\"",{"type":57,"value":318}," (+ ",{"type":52,"tag":204,"props":320,"children":322},{"className":321},[],[323],{"type":57,"value":324},"timezone",{"type":57,"value":326},")",{"type":52,"tag":229,"props":328,"children":330},{"id":329},"preset-recurring",[331],{"type":57,"value":332},"Preset recurring",{"type":52,"tag":60,"props":334,"children":335},{},[336,337,342,344,350,351,357,358,364,365,371],{"type":57,"value":239},{"type":52,"tag":204,"props":338,"children":340},{"className":339},[],[341],{"type":57,"value":217},{"type":57,"value":343}," to one of ",{"type":52,"tag":204,"props":345,"children":347},{"className":346},[],[348],{"type":57,"value":349},"daily",{"type":57,"value":211},{"type":52,"tag":204,"props":352,"children":354},{"className":353},[],[355],{"type":57,"value":356},"weekly",{"type":57,"value":211},{"type":52,"tag":204,"props":359,"children":361},{"className":360},[],[362],{"type":57,"value":363},"monthly",{"type":57,"value":211},{"type":52,"tag":204,"props":366,"children":368},{"className":367},[],[369],{"type":57,"value":370},"yearly",{"type":57,"value":254},{"type":52,"tag":256,"props":373,"children":374},{},[375,389],{"type":52,"tag":260,"props":376,"children":377},{},[378],{"type":52,"tag":264,"props":379,"children":380},{},[381,385],{"type":52,"tag":268,"props":382,"children":383},{},[384],{"type":57,"value":272},{"type":52,"tag":268,"props":386,"children":387},{},[388],{"type":57,"value":277},{"type":52,"tag":279,"props":390,"children":391},{},[392,409,426,443],{"type":52,"tag":264,"props":393,"children":394},{},[395,400],{"type":52,"tag":286,"props":396,"children":397},{},[398],{"type":57,"value":399},"\"every day\"",{"type":52,"tag":286,"props":401,"children":402},{},[403],{"type":52,"tag":204,"props":404,"children":406},{"className":405},[],[407],{"type":57,"value":408},"recurrence_interval: \"daily\"",{"type":52,"tag":264,"props":410,"children":411},{},[412,417],{"type":52,"tag":286,"props":413,"children":414},{},[415],{"type":57,"value":416},"\"every week\"",{"type":52,"tag":286,"props":418,"children":419},{},[420],{"type":52,"tag":204,"props":421,"children":423},{"className":422},[],[424],{"type":57,"value":425},"recurrence_interval: \"weekly\"",{"type":52,"tag":264,"props":427,"children":428},{},[429,434],{"type":52,"tag":286,"props":430,"children":431},{},[432],{"type":57,"value":433},"\"every month\"",{"type":52,"tag":286,"props":435,"children":436},{},[437],{"type":52,"tag":204,"props":438,"children":440},{"className":439},[],[441],{"type":57,"value":442},"recurrence_interval: \"monthly\"",{"type":52,"tag":264,"props":444,"children":445},{},[446,451],{"type":52,"tag":286,"props":447,"children":448},{},[449],{"type":57,"value":450},"\"every year\"",{"type":52,"tag":286,"props":452,"children":453},{},[454],{"type":52,"tag":204,"props":455,"children":457},{"className":456},[],[458],{"type":57,"value":459},"recurrence_interval: \"yearly\"",{"type":52,"tag":229,"props":461,"children":463},{"id":462},"cron-recurring",[464],{"type":57,"value":465},"Cron recurring",{"type":52,"tag":60,"props":467,"children":468},{},[469,470,475,477,483],{"type":57,"value":239},{"type":52,"tag":204,"props":471,"children":473},{"className":472},[],[474],{"type":57,"value":225},{"type":57,"value":476}," to a 5-field cron string (",{"type":52,"tag":204,"props":478,"children":480},{"className":479},[],[481],{"type":57,"value":482},"min hour day-of-month month day-of-week",{"type":57,"value":484},") when\nthe cadence is a specific weekday or time the presets can't express.",{"type":52,"tag":256,"props":486,"children":487},{},[488,502],{"type":52,"tag":260,"props":489,"children":490},{},[491],{"type":52,"tag":264,"props":492,"children":493},{},[494,498],{"type":52,"tag":268,"props":495,"children":496},{},[497],{"type":57,"value":272},{"type":52,"tag":268,"props":499,"children":500},{},[501],{"type":57,"value":277},{"type":52,"tag":279,"props":503,"children":504},{},[505,522,539],{"type":52,"tag":264,"props":506,"children":507},{},[508,513],{"type":52,"tag":286,"props":509,"children":510},{},[511],{"type":57,"value":512},"\"every Monday at 9am\"",{"type":52,"tag":286,"props":514,"children":515},{},[516],{"type":52,"tag":204,"props":517,"children":519},{"className":518},[],[520],{"type":57,"value":521},"cron_expression: \"0 9 * * 1\"",{"type":52,"tag":264,"props":523,"children":524},{},[525,530],{"type":52,"tag":286,"props":526,"children":527},{},[528],{"type":57,"value":529},"\"weekdays at 8:30\"",{"type":52,"tag":286,"props":531,"children":532},{},[533],{"type":52,"tag":204,"props":534,"children":536},{"className":535},[],[537],{"type":57,"value":538},"cron_expression: \"30 8 * * 1-5\"",{"type":52,"tag":264,"props":540,"children":541},{},[542,547],{"type":52,"tag":286,"props":543,"children":544},{},[545],{"type":57,"value":546},"\"1st of the month at noon\"",{"type":52,"tag":286,"props":548,"children":549},{},[550],{"type":52,"tag":204,"props":551,"children":553},{"className":552},[],[554],{"type":57,"value":555},"cron_expression: \"0 12 1 * *\"",{"type":52,"tag":60,"props":557,"children":558},{},[559,561,566],{"type":57,"value":560},"A reminder may fire ",{"type":52,"tag":125,"props":562,"children":563},{},[564],{"type":57,"value":565},"at most 4 times per day",{"type":57,"value":567}," — a more frequent cron (e.g. hourly) is rejected.",{"type":52,"tag":66,"props":569,"children":570},{"id":324},[571],{"type":57,"value":572},"Timezone",{"type":52,"tag":60,"props":574,"children":575},{},[576,578,583,585,591,593,598,600,605],{"type":57,"value":577},"Always pass ",{"type":52,"tag":204,"props":579,"children":581},{"className":580},[],[582],{"type":57,"value":324},{"type":57,"value":584}," as the user's IANA zone (e.g. ",{"type":52,"tag":204,"props":586,"children":588},{"className":587},[],[589],{"type":57,"value":590},"\"America\u002FNew_York\"",{"type":57,"value":592},") when you know it, so\nwall-clock times like \"9am\" resolve to the right moment. If omitted, it defaults to the ",{"type":52,"tag":125,"props":594,"children":595},{},[596],{"type":57,"value":597},"project\ntimezone",{"type":57,"value":599},". Cron and preset schedules resolve in this zone; ",{"type":52,"tag":204,"props":601,"children":603},{"className":602},[],[604],{"type":57,"value":209},{"type":57,"value":606}," is an absolute instant,\nso include its offset or rely on the same zone.",{"type":52,"tag":66,"props":608,"children":610},{"id":609},"attaching-a-resource",[611],{"type":57,"value":612},"Attaching a resource",{"type":52,"tag":60,"props":614,"children":615},{},[616,618,624,626,632,634,639],{"type":57,"value":617},"To link the reminder to a PostHog object, set ",{"type":52,"tag":204,"props":619,"children":621},{"className":620},[],[622],{"type":57,"value":623},"resource_type",{"type":57,"value":625}," and ",{"type":52,"tag":204,"props":627,"children":629},{"className":628},[],[630],{"type":57,"value":631},"resource_id",{"type":57,"value":633}," ",{"type":52,"tag":125,"props":635,"children":636},{},[637],{"type":57,"value":638},"together",{"type":57,"value":640},".\nThe fired notification deep-links to that object. The resource must already exist in the project.",{"type":52,"tag":256,"props":642,"children":643},{},[644,668],{"type":52,"tag":260,"props":645,"children":646},{},[647],{"type":52,"tag":264,"props":648,"children":649},{},[650,658],{"type":52,"tag":268,"props":651,"children":652},{},[653],{"type":52,"tag":204,"props":654,"children":656},{"className":655},[],[657],{"type":57,"value":623},{"type":52,"tag":268,"props":659,"children":660},{},[661,666],{"type":52,"tag":204,"props":662,"children":664},{"className":663},[],[665],{"type":57,"value":631},{"type":57,"value":667}," is the…",{"type":52,"tag":279,"props":669,"children":670},{},[671,688,705,721,737,754,770,787],{"type":52,"tag":264,"props":672,"children":673},{},[674,683],{"type":52,"tag":286,"props":675,"children":676},{},[677],{"type":52,"tag":204,"props":678,"children":680},{"className":679},[],[681],{"type":57,"value":682},"dashboard",{"type":52,"tag":286,"props":684,"children":685},{},[686],{"type":57,"value":687},"numeric id",{"type":52,"tag":264,"props":689,"children":690},{},[691,700],{"type":52,"tag":286,"props":692,"children":693},{},[694],{"type":52,"tag":204,"props":695,"children":697},{"className":696},[],[698],{"type":57,"value":699},"insight",{"type":52,"tag":286,"props":701,"children":702},{},[703],{"type":57,"value":704},"short_id",{"type":52,"tag":264,"props":706,"children":707},{},[708,717],{"type":52,"tag":286,"props":709,"children":710},{},[711],{"type":52,"tag":204,"props":712,"children":714},{"className":713},[],[715],{"type":57,"value":716},"experiment",{"type":52,"tag":286,"props":718,"children":719},{},[720],{"type":57,"value":687},{"type":52,"tag":264,"props":722,"children":723},{},[724,733],{"type":52,"tag":286,"props":725,"children":726},{},[727],{"type":52,"tag":204,"props":728,"children":730},{"className":729},[],[731],{"type":57,"value":732},"feature_flag",{"type":52,"tag":286,"props":734,"children":735},{},[736],{"type":57,"value":687},{"type":52,"tag":264,"props":738,"children":739},{},[740,749],{"type":52,"tag":286,"props":741,"children":742},{},[743],{"type":52,"tag":204,"props":744,"children":746},{"className":745},[],[747],{"type":57,"value":748},"survey",{"type":52,"tag":286,"props":750,"children":751},{},[752],{"type":57,"value":753},"id",{"type":52,"tag":264,"props":755,"children":756},{},[757,766],{"type":52,"tag":286,"props":758,"children":759},{},[760],{"type":52,"tag":204,"props":761,"children":763},{"className":762},[],[764],{"type":57,"value":765},"notebook",{"type":52,"tag":286,"props":767,"children":768},{},[769],{"type":57,"value":704},{"type":52,"tag":264,"props":771,"children":772},{},[773,782],{"type":52,"tag":286,"props":774,"children":775},{},[776],{"type":52,"tag":204,"props":777,"children":779},{"className":778},[],[780],{"type":57,"value":781},"replay",{"type":52,"tag":286,"props":783,"children":784},{},[785],{"type":57,"value":786},"session_id",{"type":52,"tag":264,"props":788,"children":789},{},[790,799],{"type":52,"tag":286,"props":791,"children":792},{},[793],{"type":52,"tag":204,"props":794,"children":796},{"className":795},[],[797],{"type":57,"value":798},"error_tracking",{"type":52,"tag":286,"props":800,"children":801},{},[802],{"type":57,"value":803},"issue id",{"type":52,"tag":60,"props":805,"children":806},{},[807,809,814],{"type":57,"value":808},"Resolve the id first if the user gives you a name or URL (e.g. fetch the insight to get its\n",{"type":52,"tag":204,"props":810,"children":812},{"className":811},[],[813],{"type":57,"value":704},{"type":57,"value":815},"). Omit both fields for a standalone reminder with no linked resource.",{"type":52,"tag":66,"props":817,"children":819},{"id":818},"privacy-and-lifecycle",[820],{"type":57,"value":821},"Privacy and lifecycle",{"type":52,"tag":78,"props":823,"children":824},{},[825,844,856,874,908],{"type":52,"tag":82,"props":826,"children":827},{},[828,830,835,837,842],{"type":57,"value":829},"Reminders are ",{"type":52,"tag":125,"props":831,"children":832},{},[833],{"type":57,"value":834},"private to the creating user",{"type":57,"value":836}," and scoped to the ",{"type":52,"tag":125,"props":838,"children":839},{},[840],{"type":57,"value":841},"current project",{"type":57,"value":843},". Other\nusers never see them.",{"type":52,"tag":82,"props":845,"children":846},{},[847,849,854],{"type":57,"value":848},"They fire as ",{"type":52,"tag":125,"props":850,"children":851},{},[852],{"type":57,"value":853},"in-app notifications",{"type":57,"value":855}," — not email, Slack, or webhook.",{"type":52,"tag":82,"props":857,"children":858},{},[859,861,865,867,872],{"type":57,"value":860},"A ",{"type":52,"tag":125,"props":862,"children":863},{},[864],{"type":57,"value":231},{"type":57,"value":866}," becomes ",{"type":52,"tag":204,"props":868,"children":870},{"className":869},[],[871],{"type":57,"value":252},{"type":57,"value":873}," after it fires.",{"type":52,"tag":82,"props":875,"children":876},{},[877,878,883,885,891,893,899,901,906],{"type":57,"value":860},{"type":52,"tag":125,"props":879,"children":880},{},[881],{"type":57,"value":882},"recurring",{"type":57,"value":884}," reminder stays ",{"type":52,"tag":204,"props":886,"children":888},{"className":887},[],[889],{"type":57,"value":890},"active",{"type":57,"value":892}," until deleted, or until its optional ",{"type":52,"tag":204,"props":894,"children":896},{"className":895},[],[897],{"type":57,"value":898},"end_date",{"type":57,"value":900}," passes\n(then it becomes ",{"type":52,"tag":204,"props":902,"children":904},{"className":903},[],[905],{"type":57,"value":252},{"type":57,"value":907},").",{"type":52,"tag":82,"props":909,"children":910},{},[911,913,919,921,927],{"type":57,"value":912},"A one-off whose delivery permanently fails becomes ",{"type":52,"tag":204,"props":914,"children":916},{"className":915},[],[917],{"type":57,"value":918},"errored",{"type":57,"value":920}," — surface this via ",{"type":52,"tag":204,"props":922,"children":924},{"className":923},[],[925],{"type":57,"value":926},"reminders-list",{"type":57,"value":928},"\nwhen reporting on a user's reminders.",{"type":52,"tag":66,"props":930,"children":932},{"id":931},"the-mcp-tools",[933],{"type":57,"value":934},"The MCP tools",{"type":52,"tag":78,"props":936,"children":937},{},[938,949,959,970,981],{"type":52,"tag":82,"props":939,"children":940},{},[941,947],{"type":52,"tag":204,"props":942,"children":944},{"className":943},[],[945],{"type":57,"value":946},"reminder-create",{"type":57,"value":948}," — create a reminder",{"type":52,"tag":82,"props":950,"children":951},{},[952,957],{"type":52,"tag":204,"props":953,"children":955},{"className":954},[],[956],{"type":57,"value":926},{"type":57,"value":958}," — list the user's reminders (schedule, status, next fire time)",{"type":52,"tag":82,"props":960,"children":961},{},[962,968],{"type":52,"tag":204,"props":963,"children":965},{"className":964},[],[966],{"type":57,"value":967},"reminder-get",{"type":57,"value":969}," — get one reminder by id",{"type":52,"tag":82,"props":971,"children":972},{},[973,979],{"type":52,"tag":204,"props":974,"children":976},{"className":975},[],[977],{"type":57,"value":978},"reminder-update",{"type":57,"value":980}," — update title, message, schedule, timezone, end date, or attached resource\n(changing the schedule recomputes the next fire time)",{"type":52,"tag":82,"props":982,"children":983},{},[984,990],{"type":52,"tag":204,"props":985,"children":987},{"className":986},[],[988],{"type":57,"value":989},"reminder-delete",{"type":57,"value":991}," — delete a reminder, which stops it firing",{"type":52,"tag":66,"props":993,"children":995},{"id":994},"worked-example",[996],{"type":57,"value":997},"Worked example",{"type":52,"tag":60,"props":999,"children":1000},{},[1001],{"type":57,"value":1002},"User: \"Remind me to review the launch dashboard every Monday at 9am.\"",{"type":52,"tag":1004,"props":1005,"children":1006},"ol",{},[1007,1019,1024,1029],{"type":52,"tag":82,"props":1008,"children":1009},{},[1010,1012,1018],{"type":57,"value":1011},"Resolve the dashboard id (e.g. dashboard ",{"type":52,"tag":204,"props":1013,"children":1015},{"className":1014},[],[1016],{"type":57,"value":1017},"67",{"type":57,"value":907},{"type":52,"tag":82,"props":1020,"children":1021},{},[1022],{"type":57,"value":1023},"Pick the schedule shape: a specific weekday + time → cron.",{"type":52,"tag":82,"props":1025,"children":1026},{},[1027],{"type":57,"value":1028},"Pass the user's timezone if known.",{"type":52,"tag":82,"props":1030,"children":1031},{},[1032,1034,1039],{"type":57,"value":1033},"Call ",{"type":52,"tag":204,"props":1035,"children":1037},{"className":1036},[],[1038],{"type":57,"value":946},{"type":57,"value":1040},":",{"type":52,"tag":1042,"props":1043,"children":1048},"pre",{"className":1044,"code":1045,"language":1046,"meta":1047,"style":1047},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"title\": \"Review the launch dashboard\",\n  \"resource_type\": \"dashboard\",\n  \"resource_id\": \"67\",\n  \"cron_expression\": \"0 9 * * 1\",\n  \"timezone\": \"America\u002FNew_York\"\n}\n","json","",[1049],{"type":52,"tag":204,"props":1050,"children":1051},{"__ignoreMap":1047},[1052,1064,1108,1144,1180,1217,1251],{"type":52,"tag":1053,"props":1054,"children":1057},"span",{"class":1055,"line":1056},"line",1,[1058],{"type":52,"tag":1053,"props":1059,"children":1061},{"style":1060},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[1062],{"type":57,"value":1063},"{\n",{"type":52,"tag":1053,"props":1065,"children":1067},{"class":1055,"line":1066},2,[1068,1073,1079,1084,1088,1093,1099,1103],{"type":52,"tag":1053,"props":1069,"children":1070},{"style":1060},[1071],{"type":57,"value":1072},"  \"",{"type":52,"tag":1053,"props":1074,"children":1076},{"style":1075},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[1077],{"type":57,"value":1078},"title",{"type":52,"tag":1053,"props":1080,"children":1081},{"style":1060},[1082],{"type":57,"value":1083},"\"",{"type":52,"tag":1053,"props":1085,"children":1086},{"style":1060},[1087],{"type":57,"value":1040},{"type":52,"tag":1053,"props":1089,"children":1090},{"style":1060},[1091],{"type":57,"value":1092}," \"",{"type":52,"tag":1053,"props":1094,"children":1096},{"style":1095},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[1097],{"type":57,"value":1098},"Review the launch dashboard",{"type":52,"tag":1053,"props":1100,"children":1101},{"style":1060},[1102],{"type":57,"value":1083},{"type":52,"tag":1053,"props":1104,"children":1105},{"style":1060},[1106],{"type":57,"value":1107},",\n",{"type":52,"tag":1053,"props":1109,"children":1111},{"class":1055,"line":1110},3,[1112,1116,1120,1124,1128,1132,1136,1140],{"type":52,"tag":1053,"props":1113,"children":1114},{"style":1060},[1115],{"type":57,"value":1072},{"type":52,"tag":1053,"props":1117,"children":1118},{"style":1075},[1119],{"type":57,"value":623},{"type":52,"tag":1053,"props":1121,"children":1122},{"style":1060},[1123],{"type":57,"value":1083},{"type":52,"tag":1053,"props":1125,"children":1126},{"style":1060},[1127],{"type":57,"value":1040},{"type":52,"tag":1053,"props":1129,"children":1130},{"style":1060},[1131],{"type":57,"value":1092},{"type":52,"tag":1053,"props":1133,"children":1134},{"style":1095},[1135],{"type":57,"value":682},{"type":52,"tag":1053,"props":1137,"children":1138},{"style":1060},[1139],{"type":57,"value":1083},{"type":52,"tag":1053,"props":1141,"children":1142},{"style":1060},[1143],{"type":57,"value":1107},{"type":52,"tag":1053,"props":1145,"children":1147},{"class":1055,"line":1146},4,[1148,1152,1156,1160,1164,1168,1172,1176],{"type":52,"tag":1053,"props":1149,"children":1150},{"style":1060},[1151],{"type":57,"value":1072},{"type":52,"tag":1053,"props":1153,"children":1154},{"style":1075},[1155],{"type":57,"value":631},{"type":52,"tag":1053,"props":1157,"children":1158},{"style":1060},[1159],{"type":57,"value":1083},{"type":52,"tag":1053,"props":1161,"children":1162},{"style":1060},[1163],{"type":57,"value":1040},{"type":52,"tag":1053,"props":1165,"children":1166},{"style":1060},[1167],{"type":57,"value":1092},{"type":52,"tag":1053,"props":1169,"children":1170},{"style":1095},[1171],{"type":57,"value":1017},{"type":52,"tag":1053,"props":1173,"children":1174},{"style":1060},[1175],{"type":57,"value":1083},{"type":52,"tag":1053,"props":1177,"children":1178},{"style":1060},[1179],{"type":57,"value":1107},{"type":52,"tag":1053,"props":1181,"children":1183},{"class":1055,"line":1182},5,[1184,1188,1192,1196,1200,1204,1209,1213],{"type":52,"tag":1053,"props":1185,"children":1186},{"style":1060},[1187],{"type":57,"value":1072},{"type":52,"tag":1053,"props":1189,"children":1190},{"style":1075},[1191],{"type":57,"value":225},{"type":52,"tag":1053,"props":1193,"children":1194},{"style":1060},[1195],{"type":57,"value":1083},{"type":52,"tag":1053,"props":1197,"children":1198},{"style":1060},[1199],{"type":57,"value":1040},{"type":52,"tag":1053,"props":1201,"children":1202},{"style":1060},[1203],{"type":57,"value":1092},{"type":52,"tag":1053,"props":1205,"children":1206},{"style":1095},[1207],{"type":57,"value":1208},"0 9 * * 1",{"type":52,"tag":1053,"props":1210,"children":1211},{"style":1060},[1212],{"type":57,"value":1083},{"type":52,"tag":1053,"props":1214,"children":1215},{"style":1060},[1216],{"type":57,"value":1107},{"type":52,"tag":1053,"props":1218,"children":1220},{"class":1055,"line":1219},6,[1221,1225,1229,1233,1237,1241,1246],{"type":52,"tag":1053,"props":1222,"children":1223},{"style":1060},[1224],{"type":57,"value":1072},{"type":52,"tag":1053,"props":1226,"children":1227},{"style":1075},[1228],{"type":57,"value":324},{"type":52,"tag":1053,"props":1230,"children":1231},{"style":1060},[1232],{"type":57,"value":1083},{"type":52,"tag":1053,"props":1234,"children":1235},{"style":1060},[1236],{"type":57,"value":1040},{"type":52,"tag":1053,"props":1238,"children":1239},{"style":1060},[1240],{"type":57,"value":1092},{"type":52,"tag":1053,"props":1242,"children":1243},{"style":1095},[1244],{"type":57,"value":1245},"America\u002FNew_York",{"type":52,"tag":1053,"props":1247,"children":1248},{"style":1060},[1249],{"type":57,"value":1250},"\"\n",{"type":52,"tag":1053,"props":1252,"children":1254},{"class":1055,"line":1253},7,[1255],{"type":52,"tag":1053,"props":1256,"children":1257},{"style":1060},[1258],{"type":57,"value":1259},"}\n",{"type":52,"tag":60,"props":1261,"children":1262},{},[1263,1265,1271],{"type":57,"value":1264},"Confirm back to the user when it will next fire (use ",{"type":52,"tag":204,"props":1266,"children":1268},{"className":1267},[],[1269],{"type":57,"value":1270},"next_fire_at",{"type":57,"value":1272}," from the response), and that\nit will keep firing weekly until they delete it.",{"type":52,"tag":1274,"props":1275,"children":1276},"style",{},[1277],{"type":57,"value":1278},"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":1280,"total":1382},[1281,1297,1309,1321,1334,1349,1365],{"slug":1282,"name":1282,"fn":1283,"description":1284,"org":1285,"tags":1286,"stars":20,"repoUrl":21,"updatedAt":1296},"analyzing-expensive-users","analyze expensive users in AI observability","Analyze the most expensive users in AI observability and explain why they cost so much. Use when the user asks about top spenders, expensive users, per-user LLM cost, user-level cost drivers, or patterns behind high AI observability spend.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1287,1289,1292,1295],{"name":1288,"slug":28,"type":15},"Analytics",{"name":1290,"slug":1291,"type":15},"Cost Optimization","cost-optimization",{"name":1293,"slug":1294,"type":15},"Observability","observability",{"name":9,"slug":8,"type":15},"2026-07-28T05:34:11.117757",{"slug":1298,"name":1298,"fn":1299,"description":1300,"org":1301,"tags":1302,"stars":20,"repoUrl":21,"updatedAt":1308},"auditing-endpoints","audit PostHog project endpoints","Audit every endpoint in a PostHog project for staleness, failed materialisations, and unused materialised versions. Use when the user asks \"what endpoints can I clean up?\", \"are any of my endpoints broken?\", \"which materialised versions are still being called?\", or wants a one-shot cleanup pass over the Endpoints product. Produces a prioritised report grouped by issue type, with recommended actions but does not modify anything without explicit confirmation.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1303,1304,1307],{"name":1288,"slug":28,"type":15},{"name":1305,"slug":1306,"type":15},"Audit","audit",{"name":9,"slug":8,"type":15},"2026-06-08T08:08:33.693989",{"slug":1310,"name":1310,"fn":1311,"description":1312,"org":1313,"tags":1314,"stars":20,"repoUrl":21,"updatedAt":1320},"auditing-warehouse-source-health","audit PostHog data warehouse source health","Audit the health of a PostHog project's data warehouse sources and syncs — find every broken or degraded source connection, sync schema, and webhook channel. Use when the user asks \"why are my imports failing?\", \"what's broken with my sources?\", \"why is my warehouse data stale?\", or wants a one-shot triage of source\u002Fsync health before deciding where to dig in. Produces a prioritized report grouped by severity, with recommended next steps. For materialized-view health use `auditing-warehouse-view-health`; for a single failing sync use `diagnosing-failed-warehouse-syncs`.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1315,1316,1318,1319],{"name":1305,"slug":1306,"type":15},{"name":1317,"slug":30,"type":15},"Data Warehouse",{"name":1293,"slug":1294,"type":15},{"name":9,"slug":8,"type":15},"2026-06-18T08:22:57.67984",{"slug":1322,"name":1322,"fn":1323,"description":1324,"org":1325,"tags":1326,"stars":20,"repoUrl":21,"updatedAt":1333},"auditing-warehouse-view-health","audit PostHog materialized view health","Audit the health of a PostHog project's materialized views (saved queries) — find every failed materialization and flag unused or stale materialized views that cost storage and compute. Use when the user asks \"which of my views are broken?\", \"why is this materialized view failing?\", \"are any of my views wasting compute?\", or wants a one-shot triage of view health. For source\u002Fsync health use `auditing-warehouse-source-health`.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1327,1328,1329,1332],{"name":1305,"slug":1306,"type":15},{"name":1317,"slug":30,"type":15},{"name":1330,"slug":1331,"type":15},"Performance","performance",{"name":9,"slug":8,"type":15},"2026-06-18T08:25:10.936787",{"slug":1335,"name":1335,"fn":1336,"description":1337,"org":1338,"tags":1339,"stars":20,"repoUrl":21,"updatedAt":1348},"authoring-error-tracking-alerts","author PostHog error tracking alerts","Author error tracking alerts that fire when an issue is created, reopened, or starts spiking. Use when the user asks to set up error notifications, route exceptions to Slack\u002Fwebhook\u002FLinear, or evaluate which error events are worth alerting on. Covers trigger-event selection, integration choice, dedup against existing alerts, and shipping with the canonical message body shape.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1340,1343,1346,1347],{"name":1341,"slug":1342,"type":15},"Alerting","alerting",{"name":1344,"slug":1345,"type":15},"Debugging","debugging",{"name":1293,"slug":1294,"type":15},{"name":9,"slug":8,"type":15},"2026-06-18T08:24:40.318583",{"slug":1350,"name":1350,"fn":1351,"description":1352,"org":1353,"tags":1354,"stars":20,"repoUrl":21,"updatedAt":1364},"authoring-log-alerts","author log alerts in PostHog","Author useful, low-noise log alerts on services in a PostHog project. Use when the user asks to set up alerts for their logs, suggest alerts they should add, or evaluate whether a service is worth monitoring. Covers service triage, baseline characterisation, threshold drafting, back-testing via simulate, and shipping with a notification destination.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1355,1356,1359,1360,1363],{"name":1288,"slug":28,"type":15},{"name":1357,"slug":1358,"type":15},"Monitoring","monitoring",{"name":1293,"slug":1294,"type":15},{"name":1361,"slug":1362,"type":15},"Operations","operations",{"name":9,"slug":8,"type":15},"2026-07-18T05:10:54.430898",{"slug":1366,"name":1366,"fn":1367,"description":1368,"org":1369,"tags":1370,"stars":20,"repoUrl":21,"updatedAt":1381},"building-workflows","build and edit PostHog workflows","Build, edit, test, enable, and monitor PostHog workflows over MCP. Author the action\u002Fedge graph so it runs and opens cleanly in the visual editor, then change drafts surgically with patch operations. Use when asked to build, set up, automate, change, fix, or debug a workflow, campaign, broadcast, drip sequence, or event-triggered automation in the workflows product.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1371,1374,1377,1378],{"name":1372,"slug":1373,"type":15},"Automation","automation",{"name":1375,"slug":1376,"type":15},"MCP","mcp",{"name":9,"slug":8,"type":15},{"name":1379,"slug":1380,"type":15},"Workflow Automation","workflow-automation","2026-07-28T05:34:12.167015",61,{"items":1384,"total":1501},[1385,1392,1398,1405,1412,1419,1427,1434,1448,1463,1473,1491],{"slug":1282,"name":1282,"fn":1283,"description":1284,"org":1386,"tags":1387,"stars":20,"repoUrl":21,"updatedAt":1296},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1388,1389,1390,1391],{"name":1288,"slug":28,"type":15},{"name":1290,"slug":1291,"type":15},{"name":1293,"slug":1294,"type":15},{"name":9,"slug":8,"type":15},{"slug":1298,"name":1298,"fn":1299,"description":1300,"org":1393,"tags":1394,"stars":20,"repoUrl":21,"updatedAt":1308},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1395,1396,1397],{"name":1288,"slug":28,"type":15},{"name":1305,"slug":1306,"type":15},{"name":9,"slug":8,"type":15},{"slug":1310,"name":1310,"fn":1311,"description":1312,"org":1399,"tags":1400,"stars":20,"repoUrl":21,"updatedAt":1320},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1401,1402,1403,1404],{"name":1305,"slug":1306,"type":15},{"name":1317,"slug":30,"type":15},{"name":1293,"slug":1294,"type":15},{"name":9,"slug":8,"type":15},{"slug":1322,"name":1322,"fn":1323,"description":1324,"org":1406,"tags":1407,"stars":20,"repoUrl":21,"updatedAt":1333},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1408,1409,1410,1411],{"name":1305,"slug":1306,"type":15},{"name":1317,"slug":30,"type":15},{"name":1330,"slug":1331,"type":15},{"name":9,"slug":8,"type":15},{"slug":1335,"name":1335,"fn":1336,"description":1337,"org":1413,"tags":1414,"stars":20,"repoUrl":21,"updatedAt":1348},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1415,1416,1417,1418],{"name":1341,"slug":1342,"type":15},{"name":1344,"slug":1345,"type":15},{"name":1293,"slug":1294,"type":15},{"name":9,"slug":8,"type":15},{"slug":1350,"name":1350,"fn":1351,"description":1352,"org":1420,"tags":1421,"stars":20,"repoUrl":21,"updatedAt":1364},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1422,1423,1424,1425,1426],{"name":1288,"slug":28,"type":15},{"name":1357,"slug":1358,"type":15},{"name":1293,"slug":1294,"type":15},{"name":1361,"slug":1362,"type":15},{"name":9,"slug":8,"type":15},{"slug":1366,"name":1366,"fn":1367,"description":1368,"org":1428,"tags":1429,"stars":20,"repoUrl":21,"updatedAt":1381},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1430,1431,1432,1433],{"name":1372,"slug":1373,"type":15},{"name":1375,"slug":1376,"type":15},{"name":9,"slug":8,"type":15},{"name":1379,"slug":1380,"type":15},{"slug":1435,"name":1435,"fn":1436,"description":1437,"org":1438,"tags":1439,"stars":20,"repoUrl":21,"updatedAt":1447},"check-posthog-loading","inspect PostHog SDK loading across URLs","Inspect how the PostHog JavaScript SDK is loaded across a list of URLs. Use to confirm consistent installation across pages, find pages missing the snippet, detect mismatched API keys or hosts between pages, and verify the load method (head snippet vs deferred vs array.js).\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1440,1441,1442,1445,1446],{"name":1288,"slug":28,"type":15},{"name":1344,"slug":1345,"type":15},{"name":1443,"slug":1444,"type":15},"Frontend","frontend",{"name":1293,"slug":1294,"type":15},{"name":9,"slug":8,"type":15},"2026-05-07T05:56:19.828048",{"slug":1449,"name":1449,"fn":1450,"description":1451,"org":1452,"tags":1453,"stars":20,"repoUrl":21,"updatedAt":1462},"consuming-endpoints-from-client-code","integrate PostHog endpoints into client applications","Wire a PostHog endpoint into a client app or SDK. Covers fetching the OpenAPI spec, generating a typed client with openapi-generator or @hey-api\u002Fopenapi-ts, sending the right auth header, shaping the variables payload (HogQL code_name vs insight breakdown property), handling rate-limit and materialised-endpoint error responses. Use when the user says \"how do I call my endpoint\", \"generate a client for this\", or \"what auth header do I use\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1454,1457,1458,1459],{"name":1455,"slug":1456,"type":15},"API Development","api-development",{"name":1443,"slug":1444,"type":15},{"name":9,"slug":8,"type":15},{"name":1460,"slug":1461,"type":15},"SDK","sdk","2026-06-08T08:08:34.929454",{"slug":1464,"name":1464,"fn":1465,"description":1466,"org":1467,"tags":1468,"stars":20,"repoUrl":21,"updatedAt":1472},"copying-endpoints-across-projects","copy PostHog endpoints across projects","Copy a PostHog endpoint (a saved HogQL\u002Finsight query exposed as an API route) to another project in the same organization, or duplicate it under a new name in the same project. Use when the user wants to duplicate an endpoint, promote an endpoint from staging to production, replicate an endpoint's query\u002Fvariables\u002Ffreshness config in another workspace, or clone an endpoint to iterate on it. Unlike feature flags and experiments, endpoints have NO native cross-project copy tool — this skill covers the read-then-recreate flow (endpoint-get then endpoint-create), the active-project switching it requires, name-collision checks, and the safe defaults (land unmaterialised in the target, verify with endpoint-run). Does not cover editing endpoint versions (see managing-endpoint-versions) or authoring a brand-new endpoint from scratch (see creating-an-endpoint).\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1469,1470,1471],{"name":1455,"slug":1456,"type":15},{"name":1361,"slug":1362,"type":15},{"name":9,"slug":8,"type":15},"2026-07-15T05:29:58.442727",{"slug":1474,"name":1474,"fn":1475,"description":1476,"org":1477,"tags":1478,"stars":20,"repoUrl":21,"updatedAt":1490},"creating-ai-subscription","schedule recurring AI-generated PostHog reports","Create a recurring AI-generated PostHog report — schedule a free-text prompt to run on a cron, with the LLM-synthesized markdown delivered to email or Slack on each tick. Use when the user wants a recurring AI summary of X on any cadence (daily, weekly, monthly, yearly) rather than a one-off report. (To attach an AI summary to an existing insight\u002Fdashboard subscription instead of a free-text prompt, see `managing-subscriptions` and its `summary_enabled` option.)\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1479,1480,1483,1484,1487],{"name":1372,"slug":1373,"type":15},{"name":1481,"slug":1482,"type":15},"Email","email",{"name":9,"slug":8,"type":15},{"name":1485,"slug":1486,"type":15},"Reporting","reporting",{"name":1488,"slug":1489,"type":15},"Slack","slack","2026-06-09T07:32:27.935712",{"slug":1492,"name":1492,"fn":1493,"description":1494,"org":1495,"tags":1496,"stars":20,"repoUrl":21,"updatedAt":1500},"creating-an-endpoint","create PostHog API endpoints","Create a PostHog endpoint with the right shape on the first try — covers query kind choice, name conventions, what to expose as variables (HogQL code_name vs insight breakdown), data_freshness_seconds, and whether to materialise on day one. Use when the user says \"create an endpoint\", \"expose this query as an API\", \"turn this insight into an endpoint\", or asks for help structuring a new endpoint. Steers away from common mistakes: materialising a query with cohort breakdowns or compare mode, inline-only variables on a materialised endpoint, unbounded date ranges, ambiguous names.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1497,1498,1499],{"name":1288,"slug":28,"type":15},{"name":1455,"slug":1456,"type":15},{"name":9,"slug":8,"type":15},"2026-06-08T08:08:29.624498",231]