action posthog_review_hog_validators_list { label: "List review validators and which one is active" description: "List the `review-hog-validation-*` skills visible to the requesting user — the canonical validator plus the customs they authored — flagging the one active for them. The canonical validator is auto-seeded active on the first read; a custom validator the user has not selected shows as inactive." provider: posthog method: GET path: "/api/projects/{project_id}/review_hog/validators/" encoding: json output: { type: "array" items: { type: "object" required: ["active", "body", "description", "skill_name"] properties: { active: { type: "boolean" description: "Whether this validator is the one that validates the requesting user's PR reviews on this project." } body: { type: "string" description: "The validator skill's SKILL.md body, for the read-only skill viewer." } description: { type: "string" description: "The validator skill's description, for display in the config UI." } skill_name: { type: "string" description: "Name of the `review-hog-validation-*` skill this row represents (the validator's identity)." } } } } }