checking-member-access
Explains what a member or a role can do in a PostHog project, using the access control MCP tools. Use when the user asks what someone can see or edit, who can…
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/posthog --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",
:hedgehog: PostHog is the leading platform for building self-driving products. Our developer tools – AI observability, analytics, session replay, flags, experiments, error tracking, logs, and more – capture all the context agents need to diagnose problems, uncover opportunities, and ship fixes. Steer it all from Slack, web, desktop, or the MCP.
Repo: posthog/posthog
Explains what a member or a role can do in a PostHog project, using the access control MCP tools. Use when the user asks what someone can see or edit, who can…
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…
Author continuously-running online evaluations in PostHog AI observability, grounded in real failure modes you've identified. Use when the user wants…
Find where an AI/LLM application is failing in production and surface the failure patterns, working from real traces. Use when someone wants to understand…
Investigate AI observability clusters — understand usage patterns in AI/LLM traffic, compare cluster behavior, compute cost/latency metrics, and drill into…
Investigate LLM spend in PostHog — total cost over time, cost by model, provider, user, trace, or custom dimension, token and cache-hit economics, and cost…