action posthog_task_channels_context_generation_retrieve { label: "Get the channel's CONTEXT.md generation task" description: "API for task channels — the shared feeds tasks are kicked off in. Listing lazily\nprovisions the requester's personal \"#me\" channel; creation is resolve-or-create\nby normalized name so clients can map channel-like surfaces onto backend channels." provider: posthog method: GET path: "/api/projects/{project_id}/task_channels/{id}/context_generation/" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" description: "The task currently generating this channel's CONTEXT.md, or null." required: ["task_id"] properties: { task_id: { type: ["string", "null"] format: "uuid" } } } }