action posthog_tasks_repositories_retrieve { label: "List distinct task repositories" description: "Return the set of repositories referenced by non-deleted, non-internal tasks in the current project. Used to populate repository filter pickers without being constrained by task list pagination." provider: posthog method: GET path: "/api/projects/{project_id}/tasks/repositories/" encoding: json output: { type: "object" required: ["repositories"] properties: { repositories: { type: "array" description: "Distinct repositories in use by non-deleted, non-internal tasks for the current team." items: { type: "string" } } } } }