19 Production-Grade Agent Skills That Turn Your AI Into a Senior Developer
Watch on TikTok
Addy Osmani -- a Google engineer known for his work on Chrome DevRel, now at Anthropic -- released an open-source collection of 19 production-grade engineering skills for AI coding agents. The project, called agent-skills, forces AI agents to follow every step a senior developer would, instead of taking shortcuts that ship broken code.
The Problem
AI agents are built to take the shortest path possible. Without guardrails, they will skip the spec, skip the tests, and ship code that looks plausible but breaks in production. You might not even notice, because the code compiles and the agent presents it confidently. Agent-skills solves this by encoding the discipline of senior engineering into structured workflows that the agent must follow.
The 19 Skills
The skills map across the full software development lifecycle:
| Phase | Skills |
|---|---|
| Define | Idea refinement, spec-driven development |
| Plan | Planning and task breakdown |
| Build | Incremental implementation, test-driven development |
| Verify | Code review, security hardening |
| Review | Multi-angle code inspection |
| Ship | CI/CD, release management |
Each skill includes a counter-argument table for common shortcuts. The agent cannot rationalize skipping engineering standards. Every skill ends with evidence requirements: "seems fine" is not a passing grade. You need test results, benchmarks, or security scan reports.
Why It Works
The key insight is that AI agents will always optimize for speed unless you give them structure that prevents it. These skills do not make the agent slower -- they make it thorough. The difference between a junior developer and a senior one is not speed. It is the steps they do not skip.
Key Takeaways
- AI coding agents take the shortest path by default, skipping specs, tests, and reviews
- Agent-skills encodes 19 production-grade engineering workflows that enforce every step
- Covers the full lifecycle: define, plan, build, verify, review, ship
- Each skill includes counter-arguments to prevent the agent from rationalizing shortcuts
- Free and open-source under the MIT License
Resources
- agent-skills on GitHub -- 19 production-grade engineering skills (8,600+ stars)
- Addy Osmani -- Author, formerly Google Chrome DevRel
Published April 18, 2026. Writeup generated from a favorited TikTok.