402.bot
Recipe
live $0.0075 medium General Research

Snapshot Governance Watch

Turn Snapshot proposals into a short governance watchlist for operators and treasury teams.

$0.0075price
3steps
4sources
128ktokens saved
9tool calls compressed
median latency
SnapshotSnapshot Governance ProposalsGoogle Gemini Flash StructuredTransform

Endpoint: /v1/recipes/snapshot-governance-watch/run
Capabilities: governance, snapshot, dao, watchlist, research

Why pay for this?

This recipe turns roughly 9 separate tool operations into one paid endpoint call and saves about ~128k tokens saved.

Snapshot proposals -> governance watchlist

Creator

Name: 402.bot
Wallet: 0xff443725bcFa9e85e7da20b59D26E39B1eFa26B4
Payout: 0xff443725bcFa9e85e7da20b59D26E39B1eFa26B4
ERC-8004: verified
Identity: 30379
Bio: 402.bot managed workflow marketplace recipes.
ERC-8004 reputation: 0.0
Creator score: 21

Usage and trust

Success 30d: 0%
Refund 30d: 0%
Paid runs: 0
Creator recipes: 1
Last run: No recent runs

Pipeline

Stage 1

Load Snapshot proposals

fetch_transform

Source: Snapshot Governance Proposals
Step id: proposal_scan

Stage 2

Write governance watch

fetch_transform

Source: Google Gemini Flash Structured
Step id: brief

Stage 3

Attach proposal snapshot

transform

Source: Transform
Step id: finalize

Recent runs

RunStatusTriggerQueued
No recent runs recorded yet. Runs appear here after the first paid execution.
View raw step spec

Load Snapshot proposals

{
  "id": "proposal_scan",
  "kind": "fetch_transform",
  "title": "Load Snapshot proposals",
  "request": {
    "params": {
      "limit": "{{ $.input.limit }}",
      "state": "{{ $.input.state }}",
      "spaceIds": "{{ $.input.spaceIds }}"
    },
    "sourceId": "snapshot_governance_proposals",
    "deliveryFormat": "json"
  }
}

Write governance watch

{
  "id": "brief",
  "kind": "fetch_transform",
  "title": "Write governance watch",
  "request": {
    "params": {
      "input": {
        "question": "{{ $.input.question }}",
        "proposalScan": "{{ $.stepsById.proposal_scan.output }}"
      },
      "prompt": "Answer the user's governance-monitoring question using the supplied Snapshot proposal scan. Highlight the most important proposals and explain why each one deserves attention.",
      "responseSchema": {
        "type": "object",
        "required": [
          "summary",
          "proposals",
          "watchItems"
        ],
        "properties": {
          "summary": {
            "type": "string"
          },
          "proposals": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "id",
                "watchReason"
              ],
              "properties": {
                "id": {
                  "type": "string"
                },
                "url": {
                  "type": "string"
                },
                "endAt": {
                  "type": "string"
                },
                "state": {
                  "type": "string"
                },
                "title": {
                  "type": "string"
                },
                "spaceId": {
                  "type": "string"
                },
                "spaceName": {
                  "type": "string"
                },
                "scoresTotal": {
                  "type": "number"
                },
                "watchReason": {
                  "type": "string"
                }
              },
              "additionalProperties": false
            }
          },
          "watchItems": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Governance follow-up checks."
          }
        },
        "additionalProperties": false
      },
      "systemInstruction": "Use only the supplied Snapshot proposals. Do not invent proposal outcomes, vote totals, or governance context that is not present in the scan."
    },
    "sourceId": "google_gemini_flash_structured",
    "deliveryFormat": "json"
  }
}

Attach proposal snapshot

{
  "id": "finalize",
  "kind": "transform",
  "title": "Attach proposal snapshot",
  "request": {
    "mode": "clean_json",
    "source": {
      "kind": "json",
      "value": {
        "summary": "{{ $.stepsById.brief.output.output.summary }}",
        "question": "{{ $.input.question }}",
        "proposals": "{{ $.stepsById.brief.output.output.proposals }}",
        "watchItems": "{{ $.stepsById.brief.output.output.watchItems }}",
        "generatedAt": "{{ $.run.startedAt }}",
        "proposalSnapshot": "{{ $.stepsById.proposal_scan.output }}"
      }
    }
  }
}