"As of today, Amp, our agentic coding tool, is available to everyone. The waitlist is gone — go, go and sign up and use it!
For the past 10 weeks, Amp has been the main tool with which I develop software and — putting yet another exclamation mark behind the fact that the tools we use end up changing us — it has fundamentally changed how I develop software.
So I thought I’d use the occasion to write up how I personally use Amp.
(...)
Write SQL
Having an agent that connects to your database is very, very close to the joy you feel when it takes screenshots and iterates on UI components.
Here’s how to do it.
First, tell the agent to use psql (or any other CLI utility) or the tools provided by the postgres MCP server (or any other MCP server for your database) to connect to your DB.
Then, ask it things like this:
Update my user account (email starts with thorsten) to have unlimited invites
Or:
Return me a list of users with the most number of threads, sorted by number of threads
The agent will then do everything it can to return you that list: figure out the schema of the database, try this query, try that query.
Look, here I wanted to change my local development database. It didn’t know what the schema is, so it tried to figure that out first, which it did — by running four commands in parallel:
https://ampcode.com/how-i-use-amp