1 pointby merc3q653 hours ago1 comment
  • merc3q653 hours ago
    Hi HN, I built this because I'm giving AI agents database access and needed guardrails. The problem: One bad prompt → DELETE FROM users WHERE 1=1

      AXP sits between your agent and Postgres. It:                                                                             
      - Masks PII (emails become j***@gmail.com)                                                                                
      - Blocks DROP TABLE, TRUNCATE                                                                                             
      - Rate limits queries                                                                                                     
      - Logs everything                                                                                                         
                                                                                                                                
      Written in Go, uses pgproto3 for proper Postgres wire protocol.                                                           
      Any Postgres client works - zero code changes needed.                                                                     
                                                                                                                                
      Happy to answer questions.