Remix.run Logo
renato_shira 2 hours ago

the "agent per row" framing is what makes this click for me too. most agent frameworks think in terms of orchestration graphs or message queues, but modeling it as "each row has a little worker that can act on its own state" is a surprisingly intuitive primitive.

it also maps well to how a lot of real world problems actually work: you have N entities, each with their own context, and you want something watching each one independently. the traditional way to do that is a job queue polling the database, but if the database is the compute layer, you skip a whole class of sync/consistency problems.

probably not production ready for anything serious, but i've seen this pattern before where "weird" database experiments end up influencing real tools later. json columns were an antipattern until jsonb became a legitimate design choice. triggers were considered dangerous until supabase made realtime features out of them. the boundary keeps shifting.