8 comments

  • znnajdla33 minutes ago
    I don't understand what this tool offers over simply querying pg directly and reading pg logs?
  • sashash1 hour ago
    It works anywhere you have a standard PostgreSQL connection string.
    • opem13 minutes ago
      That we all can see and read from your tools's homepage. Why are you repeating the features here again?
  • Zoncovsky1 hour ago
    It realy works I tested it on local and remote machine
  • sashash1 hour ago
    Hi HN, I’m Alex, a longtime PostgreSQL and Rails&#x2F;Go&#x2F;Rust engineer.<p>I built pgbot because I often needed a quick explanation of what was happening inside a database without first deploying a dashboard, collector, telemetry stack, or separate database.<p>pgbot is an open-source 5.9 MB Go binary that connects directly to PostgreSQL and returns useful findings in seconds:<p>pgbot inspect — database health pgbot queries — expensive queries pgbot indexes — risky and unused indexes pgbot ask — answers for humans and agents MCP — lets coding agents inspect PostgreSQL directly<p>The diagnostic findings are computed deterministically in Go. They are not invented by an LLM.<p>pgbot is also read-only by design: it inspects the database but never applies changes. An agent can explain and prioritize the evidence, but it cannot silently modify production through pgbot.<p>Source: <a href="https:&#x2F;&#x2F;github.com&#x2F;pgrundev&#x2F;pgbot" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;pgrundev&#x2F;pgbot</a><p>I’d especially appreciate feedback about missing diagnostic checks, false positives, and the read-only safety model for coding agents.
    • ahofmann21 minutes ago
      You should stop posting in your own thread. I vouched for this post, because it looks useful, but I understand why you got flagged.
  • sashash1 hour ago
    [flagged]
  • sashash1 hour ago
    Read-only by design: no DDL, DML, or automatic fixes.
  • michael-sumner29 minutes ago
    Be careful as it might be telemetrying the database. How do we know that it is not?
    • ahofmann26 minutes ago
      It&#x27;s open source, so just look &quot;under the hood&quot;, I guess?