action posthog_task_channels_instructions_retrieve { label: "Get channel instructions" description: "The channel's latest CONTEXT.md instructions. A channel with no published instructions reads as a blank version 0 — publish against base_version 0 to create version 1." provider: posthog method: GET path: "/api/projects/{project_id}/task_channels/{id}/instructions/" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" description: "Response shape for a channel's CONTEXT.md instructions version." required: ["channel", "content", "version"] properties: { channel: { type: "string" format: "uuid" } content: { type: "string" } created_at: { type: ["string", "null"] format: "date-time" } created_by: { type: "object" } version: { type: "integer" } } } }