All twins

Service twin · API + UI

Google Sheets

Test spreadsheet agents through the Google Sheets API and an interactive grid editor.

API + UIspec-groundedREST · MCP · CLI
Terminal
$ uv tool install blobfish-cli
$ blobfish twin login
$ blobfish twin-runs create --twins googlesheets --ttl 60 --wait

What’s inside

A deterministic, seeded, resettable replica: every operation below executes real state transitions against the twin’s own SQLite state — reads are hash-invariant, writes produce inspectable diffs, and reset restores the seed baseline.

Operations18
Reads6
Writes12
Entities16
Lifecycles0

Seeded entities

EntityTableFieldsAbout
sheet_append_values_responsesheet_append_values_responses3The response when updating a range of values in a spreadsheet.
sheet_batch_clear_values_by_data_filter_responsesheet_batch_clear_values_by_data_filter_responses2The response when clearing a range of values selected with DataFilters in a spreadsheet.
sheet_batch_clear_values_responsesheet_batch_clear_values_responses2The response when clearing a range of values in a spreadsheet.
sheet_batch_get_values_by_data_filter_responsesheet_batch_get_values_by_data_filter_responses2The response when retrieving more than one range of values in a spreadsheet selected by DataFilters.
sheet_batch_get_values_responsesheet_batch_get_values_responses2The response when retrieving more than one range of values in a spreadsheet.
sheet_batch_update_spreadsheet_responsesheet_batch_update_spreadsheet_responses3The reply for batch updating a spreadsheet.
sheet_batch_update_values_by_data_filter_responsesheet_batch_update_values_by_data_filter_responses6The response when updating a range of values in a spreadsheet.
sheet_batch_update_values_responsesheet_batch_update_values_responses6The response when updating a range of values in a spreadsheet.
sheet_cellsheet_cells10One addressed cell of a sheet tab (1-based row/col, plus its A1 column letter). This IS the grid: values.get/batchGet read it and values.update/append write it.
sheet_clear_values_responsesheet_clear_values_responses2The response when clearing a range of values in a spreadsheet.
sheet_developer_metadatasheet_developer_metadatas6A developer metadata record attached to a spreadsheet.
sheet_search_developer_metadata_responsesheet_search_developer_metadata_responses2A reply to a developer metadata search request.
sheet_tabsheet_tabs6One sheet (tab) inside a spreadsheet.
sheet_update_values_responsesheet_update_values_responses6The response when updating a range of values in a spreadsheet.
sheet_value_rangesheet_value_ranges4Data within a range of the spreadsheet.
spreadsheetspreadsheets6A spreadsheet workbook: the document an agent opens by id. Grid content lives in sheet_tabs (tabs) and sheet_cells (addressed cells).

Three surfaces, one state

Mount Google Sheets in a twin environment and the same seeded state serves vendor-shaped REST operations, an MCP endpoint for tool calling, and a generated bf-twin CLI — with copy-on-write sessions per rollout and a one-call reset to the seed baseline. Prefer raw HTTP? The same create works with curl:

API
$ curl -sS -X POST https://blobfish.ai/api/v1/twin/environments \
    -H "X-API-Key: $BLOBFISH_API_KEY" -H "Content-Type: application/json" \
    -d '{"services":["googlesheets"],"ttl_minutes":60}'

Known limitations

Spec-grounded surface with synthetic seeded values; operations outside the spec are not mounted.