action posthog_tasks_runs_logs_retrieve { label: "Get task run logs" description: "Fetch the logs for a task run as JSONL. If the run resumes from another (state.resume_from_run_id), each ancestor's log is concatenated first (oldest ancestor → ... → this run) so resume consumers see a single continuous history and can find the most recent git_checkpoint event regardless of which run emitted it." provider: posthog method: GET path: "/api/projects/{project_id}/tasks/{task_id}/runs/{id}/logs/" encoding: json input: { type: "object" properties: { id: { type: "string" } task_id: { type: "string" } } required: ["id", "task_id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }