.agents/skills/tinybird-cli-guidelines/rules/mock-data.md
Tinybird mock data flow (as implemented by the agent) for a datasource:
tb --output=json|csv '<sql>' --rows-limit <rows> command.fixtures/.fixtures/<datasource_name>.ndjson or fixtures/<datasource_name>.csvSELECT
rand() % 1000 AS experience_gained,
1 + rand() % 100 AS level,
rand() % 500 AS monster_kills,
concat('player_', toString(rand() % 10000)) AS player_id,
rand() % 50 AS pvp_kills,
rand() % 200 AS quest_completions,
now() - rand() % 86400 AS timestamp
FROM numbers(ROWS)
Notes:
ROWS rows via FROM numbers(ROWS).<datasource_name>_quarantine and surface the first 5 rows.