5 ms·
Show HN: Pgclaw – A "Clawdbot" in every row with 400 lines of Postgres SQL
Hi HN,
Been hacking on a simple way to run agents entirely inside of a Postgres database, "an agent per row".
Things you could build with this:
* Your own agent orchestrator
* A personal assistant with time travel
* (more things I can't think of yet)
Not quite there yet but thought I'd share it in its current state.
- tibbar 8mo agoThis is mind-bending. I can't imagine that it performs well enough to be particularly fit for production just yet but..... wow.
- swyx 8mo agohow exactly is adding a stored procedure as an agent mind bending
- tibbar 8mo agoI can only speak for my own mind ;) but the most advanced thing I'd seen prior in this regard was Google Sheets' =AI function, which is pretty convenient (if awkward) when you want to map values to LLM output. What I specifically found "mind-bending" about this is that I don't have a clear concept of the limits of what an agent can do. In the limit case, it's basically like an independent employee, right?. So the concept of having a dedicated person sitting on each row of my database and transactionally performing any task I can describe is ... well, it IS a bit boggling to me. Another way to look at it is: this is an extremely powerful construct for managing fleets of agents. I trust Postgres to execute all the stored procedures I ask it to. So with this tool I can easily spin up arbitrarily many agents. And state management is very simple, because they can directly edit their associated row! IDK, the more I think about it the more fascinated I am. I'm sure there is some open source SAAS or something that has similar semantics and can do all this more efficiently, but now I know that this is a category of thing one could potentially build/use. Pretty nifty!
- deleted 8mo ago[deleted]
- swyx 8mo agook nice reply. i think i was where you were in 2021 around doing stuff in sprocs. i think pple generally follow a cycle of going overexcited about throwing everything in the database and then going "actually the database is a pretty bad production compute environment" and re-separating concerns back to different levels. use sprocs lightly for simple fast stateless things. every other attempt at stuffing a lot of compute into the database that i'm aware of has basically failed to gain adoption (the personal awesomeness/happiness of the guy who created it aside)
- tibbar 8mo agoOh, like, I wouldn't actually use this specific implementation. I used to work at a shop with thousands of lines of Oracle triggers that you had to edit inline in the web browser with no version control and I shudder to think of returning again. I'm more interested in the data flow. exa.ai got famous for promising search with massively parallel execution of LLMs on candidate results. In practice, it's never worked that well for me, but the model is very cool and has worked for me e.g. in open source work, searching for bugs across files. Mapping N items to "N agents with state" feels like an absurdly powerful construct to me. Maybe this is just a well-known pattern that everyone has seen already, but given how much better agents have gotten in the past year, crossing the threshold from "toy" to "arguably superhuman" on many tasks, I think it just hits different.
- readme 8mo agoi love postgres and pgvector... this is exactly to my tastes
- calebhwin 8mo agoSame, it's in a similar vein as pgvector - probably not as performant as turbopuffer or chroma but you get the benefits of being in a really nice ecosystem.
- cpursley 8mo agoYes, and I imagine pgclaw would pair well with pgmq and pg_cron for scheduled work. Postgres really is enough: https://postgresisenough.dev https://postgresisenough.dev
- maxbond 8mo agoInteresting to hear you say that, I was thinking (but hadn't said) that using WalEx to dispatch to some workers where the agent lived would be a better solution. The worker would then update the row (or more likely insert a new one in a different table with more constraints/different columns). I would be curious to hear what advantage you see in a `claw` type/`agent` column? I can't make heads or tails of it but I regard you as knowing a lot more about Postgres than me.
- cpursley 8mo ago
- wwweston 8mo agoThis... does not seem like separation of concerns. Not to mention that the data layer seems like the one where you want to keep things most deterministic.
- noupdates 8mo agoTo decouple this the person would have to broadcast nearly every event and rebuild the observer layers elsewhere.
- thatwasunusual 8mo agoAnd IMO that's what should be done. Don't get me wrong, I like the idea and all that, but this is another pgsql "solution" that is tied to the database layer, when it should be in the application layer. I like to be database agnostic, and while I prefer PostgreSQL on production, I prefer SQLite on the dev layer. You should never have to HAVE TO use a specific database to make your APPLICATION work.
- nkmnz 8mo agoYou could replicate and separate your llm-postgres from the system-of-record-postgres.
- nkmnz 8mo agoIf you really want to run an agent on each created row, you could run this in a replica and stream the replies back to your system of record.
- danr4 8mo agothis is fucking awesome
- xnx 8mo agoIt feels like we're a week away from the Claw hype supplanting AI hype. Companies will start renaming things ClawX to get on the hype bandwagon.
- calebhwin 8mo agoIt's just an abstraction people are excited about at the moment. Langchain was an exciting abstraction at one point. My bet is we converge on a super minimal model<>computer architecture.
- maxbond 8mo agoI think "claw" isn't appealing enough to be genericized and that "agent" will continue to be the generic term, but we'll see.
- maxbond 8mo agoWhat's the advantage in putting agents in the persistence layer rather than the application layer? This seems to me strictly less flexible, scalable, secure, easy to work with... I am having a hard time imagining why I would want to integrate with APIs or write an agentic harness in the database rather than in application code? Maybe I'm behind the times but I don't understand.
- 4ndrewl 8mo agoIt's similar to when we wrote all our business logic in eg pl/sql, stored procedures etc. Seems attractive at first, but it breaks separation of concerns, becomes difficult to test etc.
- thatwasunusual 8mo ago> It's similar to when we wrote all our business logic in eg pl/sql [...] What do you mean with "when"? /s I dread companies who still have logic in their databases when it's not necessary. <insert sad face>
- SOLAR_FIELDS 8mo agoThe real fun begins when you encounter a system where someone thought it was a good idea to store source code in the database rows.
- deleted 8mo ago[deleted]
- debugnik 8mo agoI don't understand why claw is a data type for columns in these examples, it doesn't seem to store any actual per-row state. Is it not possible to hook extensions onto "with" clauses or something similar?
- ef2k 8mo agoNice. These are the kind of boundary pushing projects I like to see. It challenges assumptions of where application logic should live. The implications around cost, latency, and recovery are going to be interesting.
- rel_ic 8mo agoWe need your help! Can you please use your creativity to build resilience to climate change in your community instead of experimenting with more ways to spend computing power?
- deleted 8mo ago[deleted]
- brunoqc 8mo agoThe solution is to tax the rich. But we won't.
- worldsavior 8mo agoUntil YOU get rich.
- cboyardee 8mo ago[dead]
- mergisi 8mo ago[dead]
- jmaw 8mo agoWhat does it mean to put an agent inside of a PG DB? Is PG doing the actual computing/inference (does it tie to GPU), or is PG just storing the state of the agents neural net (is that a thing, it seems like it would be). Maybe I'm strictly too stupid to even parse the concept, but I don't understand what I'm looking at one bit.
- mergisi 7mo ago[dead]
- supreeth_ravi 7mo ago[dead]