adding-warehouse-perso…
Sync columns from a synced data warehouse table onto PostHog person or group properties, so warehouse data becomes usable anywhere person and group properties…
Build a Loop for PostHog Desktop: a workflow that creates an AI task each time its trigger fires, optionally followed by a Slack or email notification with the task's result. Use when asked to create, set up, or change a loop, a recurring agent, a scheduled task, or an
$ npx -y skills add PostHog/ai-plugin --skill building-loops --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/building-loopsContext preview
The summary Claude sees to decide when to auto-load this skill.
Build a Loop for PostHog Desktop: a workflow that creates an AI task each time its trigger fires, optionally followed by a Slack or email notification with the task's result. Use when asked to create, set up, or change a loop, a recurring agent, a scheduled task, or an
name: building-loops description: >- Build a Loop for PostHog Desktop: a workflow that creates an AI task each time its trigger fires, optionally followed by a Slack or email notification with the task's result. Use when asked to create, set up, or change a loop, a recurring agent, a scheduled task, or an automation that runs an AI task when a GitHub, Slack, or PostHog event happens. Covers the exact graph, trigger configs, schedule presets, the notify step, structured output, and the test-run steps.
A Loop is a workflow tagged `origin_product: "loops"` with one shape: a trigger, one "Create AI task" step, an optional notify step, and an exit. Desktop's Loops screens read this shape back. A workflow with anything else still runs, but Desktop shows it as "changed in the workflow editor" and makes it read-only.
Build it in this order: `workflows-create` as a draft, `workflows-test-run` step by step, `workflows-schedule-create` for schedule loops, then `workflows-enable` once the user signs off. For anything not covered here (patching a draft, publishing a live workflow, reading logs), use the `building-workflows` skill.
Replace only the values in angle brackets. Leave out the `notify` step and its edges when the user does not want a notification.
{
"name": "<short name>",
"description": "",
"status": "draft",
"origin_product": "loops",
"exit_condition": "exit_only_at_end",
"variables": [{ "key": "task_final_message", "type": "string", "default": "" }],
"actions": [
{ "id": "trigger", "name": "Trigger", "type": "trigger", "config": <trigger config> },
{
"id": "create_task",
"name": "Create AI task",
"type": "function",
"config": {
"template_id": "template-posthog-create-task",
"inputs": {
"prompt": { "value": "<task prompt>" },
"repository": { "value": "<owner/name>" },
"connectors": { "value": ["<mcp connection id>"] },
"skills": { "value": ["<skill name>"] },
"posthog_mcp_scopes": { "value": "read_only" },
"non_failure_status_codes": { "value": [409] }
}
},
"output_variable": [{ "key": "task_final_message", "result_path": "final_message" }]
},
{ "id": "notify", "name": "Notify", "type": "function", "config": <notify config> },
{ "id": "exit", "name": "Exit", "type": "exit", "config": { "reason": "Task finished" } }
],
"edges": [
{ "from": "trigger", "to": "create_task", "type": "continue" },
{ "from": "create_task", "to": "notify", "type": "continue" },
{ "from": "notify", "to": "exit", "type": "continue" }
]
}`prompt` is required. It runs unattended, so write it as a complete brief: what to do, what "done" looks like, and what to report.
Never put event text in the prompt with a `{event.properties.<name>}` template. Every run already receives the whole triggering event as a separate `<triggering_event>` block, labelled as data and with its angle brackets escaped so nothing inside it can forge a tag. Name the property instead and let the run read it there:
> Read the message from the `text` property of the triggering event, then...
A template renders the raw value into the instruction part of the prompt, before that block and with no escaping. A Slack poster, an issue author, or a customer's own end user writes that value, so a crafted one reads as instructions to an agent that may hold repository credentials.
Include the other inputs only when the loop needs them:
Keep `non_failure_status_codes` exactly as the graph has it, on every loop. The API answers 409 when a run hits a task limit. Without this input the step fails with a generic fetch error and the user never reads the limit message.
The workflow waits at this step until the task finishes. The next step then sees `final_message`, `pr_urls`, and `status` on the step result.
Pick the trigger for the source the user names. Schedule and GitHub are the ones Desktop's loop form edits.
Schedule, cadence on a schedule row (below):
{ "type": "schedule" }GitHub event, one repository, one event type:
{
"type": "internal-event",
"filters": {
"source": "internal-events",
"events": [{ "id": "$github_event_received", "type": "events" }],
"properties": [
{ "key": "repository", "value": ["<owner/name>"], "operator": "exact", "type": "event" },
{
"key": "event_type",
"value": ["<issues | issue_comment | pull_request | push>"],
"operator": "exact",
"type": "event"
},
{ "key": "actor_access", "value": ["write"], "operator": "exact", "type": "event" }
]
}
}Keep the `actor_access` filter. It stops people without write access to the repository from starting a task. Narrow to one action when the user asks ("when an issue is opened") with one more property filter: `{ "key": "action",
Official PostHog plugin for AI clients. Access PostHog products directly from your AI coding tool.
Repo: PostHog/ai-plugin
Sync columns from a synced data warehouse table onto PostHog person or group properties, so warehouse data becomes usable anywhere person and group properties…
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…
Analyze session replay patterns across experiment variants to understand user behavior differences. Use when the user wants to see how users interact with…
Split a completed PostHog task run into activity records — what the agent tried, whether it worked, what blocked it — and record each one through the…
Assesses what a page's heatmap is telling you and recommends concrete changes. Pulls click / rageclick / scroll-depth data for a URL, names the hot elements by…
Audit every endpoint in a PostHog project for staleness, failed materialisations, and unused materialised versions. Use when the user asks "what endpoints can…