Skip to content

politiclaw_review_auto_ratings

  • Label: Review AI-rated bills that need your judgment
  • Group: Bills and votes
  • Source file: packages/politiclaw-plugin/src/tools/review.ts

Description

List bills the LLM directional classifier flagged as borderline, mixed, or unclassifiable for the current stance snapshot. These are bills relevant to your declared stances where the AI's call wasn't strong enough to count automatically toward rep scoring. Use politiclaw_resolve_auto_rating to promote, override, or skip individual rows.

Parameters

NameRequiredTypeDescription
tierno"borderline" | "mixed" | "unclassifiable" | "all"
stanceSlugnostringFilter to a single declared stance (issue slug). Omit to include all your stances.
limitnointeger

Raw Schema

json
{
  "type": "object",
  "properties": {
    "tier": {
      "anyOf": [
        {
          "const": "borderline",
          "type": "string"
        },
        {
          "const": "mixed",
          "type": "string"
        },
        {
          "const": "unclassifiable",
          "type": "string"
        },
        {
          "const": "all",
          "type": "string"
        }
      ]
    },
    "stanceSlug": {
      "description": "Filter to a single declared stance (issue slug). Omit to include all your stances.",
      "type": "string"
    },
    "limit": {
      "minimum": 1,
      "maximum": 200,
      "default": 25,
      "type": "integer"
    }
  }
}

Built for people who want local-first political tooling.