Teaching AI Agents How to Engineer
Every AI coding agent ships with the same problem: it knows syntax but not discipline. It can write a React component or debug a segfault, but it won't ask "did I verify this actually works?" before declaring victory. It won't split a 400-line diff into reviewable chunks. It won't check if the fix it's about to apply matches the root cause it claims to have found.
I've spent the past six months fixing that.
compound-engineering is a Claude Code plugin, and ai-skills is its portable counterpart for 35+ AI coding agents. Together they encode the engineering judgment that separates "code that compiles" from "code you'd ship."
What's in the box
The compound-engineering plugin ships 29 skills, 20 specialized agents, and 22 commands. Skills are compact instruction sets that fire based on what you're working on. Agents are purpose-built reviewers and researchers. Commands wire them into repeatable workflows.
The ai-skills repo extracts just the skills into a format a...
In the PHP community, "persistent connections" are often treated like a dark art; powerful, but prone to blowing up in your face. We've been told they cause "Too many connections" errors, stale data, and dangling transactions.
The truth? In high-traffic environments, persistent connections are your best friend. If you understand how PHP internals and networking flows actually work, they are the single most effective way to slash latency and stabilize your database.
The "Connection Tax": What You Pay Every Request
Every time you call new PDO() or mysqli_connect() without persistence, your server begins a grueling marathon. Before a single byte of SQL is executed, the following must happen:
DNS Resolution: Converting db.example.com to an IP. Even with caching, this is a network hop.
TCP 3-Way Handshake: The client and server exchange SYN, SYN-ACK, and ACK packets. This requires a full round-trip (RTT)
SSL/TLS Negotiation: If you use encryption (standard for cloud DBs), this is...
My slides from the Confoo 2022 conference are now available:
Introduction to Clickhouse
Queuing Worker Engine via PHP-FPM
Thanks to everyone who attended and the engaging questions.
My slides from the PHP True North Conference talk on Browser Performance are available here.
Thanks to everyone who attended and the engaging question.
My slides from the True North PHP Conference on the topic of "Business Logic Security" are now available for download here:
Slides
- «
- 1
- …
- »