惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Recent Announcements
Recent Announcements
J
Java Code Geeks
雷峰网
雷峰网
Microsoft Security Blog
Microsoft Security Blog
博客园 - 【当耐特】
腾讯CDC
博客园 - 司徒正美
B
Blog RSS Feed
博客园 - 三生石上(FineUI控件)
I
InfoQ
N
Netflix TechBlog - Medium
L
LangChain Blog
博客园_首页
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
T
Tailwind CSS Blog
MyScale Blog
MyScale Blog
美团技术团队
The Cloudflare Blog
爱范儿
爱范儿
Stack Overflow Blog
Stack Overflow Blog
博客园 - 聂微东
H
Help Net Security
Martin Fowler
Martin Fowler
V
Visual Studio Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Production-Grade Engineering Skills for AI Coding Agents
Vikrant Baga · 2026-05-08 · via DEV Community

AI coding agents have revolutionized how we write software. They can implement features, fix bugs, and review code at incredible speed. But there's a catch: AI agents default to the shortest path, which often means skipping specs, tests, security reviews, and the practices that make software reliable.

The solution? Production-grade engineering skills for AI coding agents—structured workflows that enforce the same discipline senior engineers bring to production code.

Skills for AI Coding Agents

The Problem: AI Agents Need Guardrails

When you give an AI agent a vague prompt like "build a dashboard," it will produce something that looks functional. But will it be:

  • ✅ Well-specified with clear success criteria?
  • ✅ Tested with comprehensive coverage?
  • ✅ Secure against common vulnerabilities?
  • ✅ Performant and maintainable?

Without structured workflows, the answer is often "no." The agent optimizes for "looks right" rather than "is right."

The Solution: Agent Skills

Agent Skills is a production-grade collection of 20 structured workflows for AI coding agents. With 33,000+ stars on GitHub, it's become the de facto standard for reliable AI-assisted development.

Each skill encodes hard-won engineering judgment from Google's engineering culture, including concepts from Software Engineering at Google and Google's engineering practices guide.

The 20 Skills Cover the Entire Lifecycle

Define Phase:

  1. Idea Refinement - Structured divergent/convergent thinking
  2. Spec-Driven Development - Write a PRD before any code

Plan Phase:

  1. Planning and Task Breakdown - Decompose specs into verifiable tasks

Build Phase:

  1. Incremental Implementation - Thin vertical slices with feature flags
  2. Context Engineering - Feed agents the right information at the right time
  3. Source-Driven Development - Ground decisions in official documentation
  4. Frontend UI Engineering - Component architecture, design systems, accessibility
  5. API and Interface Design - Contract-first design, error semantics
  6. Test-Driven Development - RED-GREEN-REFACTOR workflow

Verify Phase:

  1. Browser Testing with DevTools - Chrome DevTools MCP for runtime data
  2. Debugging and Error Recovery - Five-step triage: reproduce, localize, reduce, fix, guard

Review Phase:

  1. Code Review and Quality - Five-axis review, change sizing, severity labels
  2. Code Simplification - Chesterton's Fence, Rule of 500
  3. Security and Hardening - OWASP Top 10 prevention, auth patterns
  4. Performance Optimization - Measure-first approach, Core Web Vitals

Ship Phase:

  1. Git Workflow and Versioning - Trunk-based development, atomic commits
  2. CI/CD and Automation - Shift Left, Faster is Safer, feature flags
  3. Deprecation and Migration - Code-as-liability mindset
  4. Documentation and ADRs - Architecture Decision Records
  5. Shipping and Launch - Pre-launch checklists, staged rollouts

Deep Dive: Spec-Driven Development

The most critical skill is Spec-Driven Development. Before writing any code, the agent creates a specification covering:

The Six-Core Spec Template

# Spec: [Project/Feature Name]

## Objective
What we're building and why. User stories or acceptance criteria.

## Tech Stack
Framework, language, key dependencies with versions

## Commands
Build: npm run build
Test: npm test -- --coverage
Lint: npm run lint --fix
Dev: npm run dev

## Project Structure
src/ → Application source code
src/components → React components
src/lib → Shared utilities
tests/ → Unit and integration tests

## Code Style
Example snippet + key conventions

## Testing Strategy
Framework, test locations, coverage requirements

## Boundaries
- Always: Run tests before commits, follow naming conventions
- Ask first: Database schema changes, adding dependencies
- Never: Commit secrets, edit vendor directories

## Success Criteria
Specific, testable conditions for completion

## Open Questions
Anything unresolved that needs human input

Enter fullscreen mode Exit fullscreen mode

Why This Works

  1. Surfaces Assumptions Early - The spec forces clarity before code
  2. Shared Source of Truth - Human and agent agree on what "done" means
  3. Prevents Rework - A 15-minute spec prevents hours of debugging
  4. Living Document - Updated when decisions change, committed to version control

Deep Dive: Test-Driven Development

The Test-Driven Development skill enforces the RED-GREEN-REFACTOR cycle:

The Cycle

  1. RED: Write a test that fails (proves the test works)
  2. GREEN: Write minimal code to make it pass
  3. REFACTOR: Clean up the implementation
  4. Repeat for each new behavior

Example: Task Service

// RED: This test fails because createTask doesn't exist yet
describe('TaskService', () => {
  it('creates a task with title and default status', async () => {
    const task = await taskService.createTask({ title: 'Buy groceries' });
    expect(task.id).toBeDefined();
    expect(task.title).toBe('Buy groceries');
    expect(task.status).toBe('pending');
    expect(task.createdAt).toBeInstanceOf(Date);
  });
});

// GREEN: Minimal implementation
export async function createTask(input: { title: string }): Promise<Task> {
  const task = {
    id: generateId(),
    title: input.title,
    status: 'pending' as const,
    createdAt: new Date(),
  };
  await db.tasks.insert(task);
  return task;
}

Enter fullscreen mode Exit fullscreen mode

Test Pyramid

  • 80% Unit Tests (small, fast, isolated)
  • 15% Integration Tests (component interactions, API boundaries)
  • 5% E2E Tests (full user flows, real browser)

Real-World Examples

Example 1: Bug Fix with TDD

Bug Report: "Completing a task doesn't update completedAt timestamp"

  1. Agent writes failing test that reproduces the bug
  2. Test confirms bug exists (RED)
  3. Agent implements fix (GREEN)
  4. Agent runs full test suite to ensure no regressions
  5. Result: Bug fixed with guaranteed correctness

Example 2: Parallel Agent Workflow

Scenario: Full-stack feature implementation

  • Agent 1 (backend): Implements API endpoints in feature branch A
  • Agent 2 (frontend): Builds React components in feature branch B
  • Agent 3 (tests): Writes integration tests in feature branch C
  • Human: Reviews and merges all branches after parallel completion

Result: 3x faster than sequential development

Example 3: Security Review

Agent Skills includes security-and-hardening skill:

  • OWASP Top 10 prevention patterns
  • Authentication and authorization patterns
  • Secrets management and dependency auditing
  • Three-tier boundary system

Before any code merge, the security skill runs automatically, catching vulnerabilities early.

Common Pitfalls (And How to Avoid Them)

1. Over-Prompting

Problem: Long, repetitive, contradictory prompts confuse agents
Solution: Say what you need once, clearly. Restate rather than append.

2. Under-Reviewing

Problem: Assuming AI-generated code is correct because it looks right
Solution: Review every diff like a pull request from a teammate

3. Skipping Git Isolation

Problem: Running agents on main branch leads to conflicts
Solution: Always use feature branches; use git worktrees for parallel agents

4. Ignoring Session Boundaries

Problem: One long session leads to context bloat and inconsistent decisions
Solution: Start fresh sessions for new tasks; keep sessions focused

5. Testing Implementation Details

Problem: Tests break when refactoring even if behavior unchanged
Solution: Test inputs and outputs, not internal structure

Getting Started

Install Agent Skills

For Claude Code:

/plugin marketplace add addyosmani/agent-skills
/plugin install agent-skills@addy-agent-skills

Enter fullscreen mode Exit fullscreen mode

For Cursor: Copy SKILL.md files into .cursor/rules/

For Gemini CLI:

gemini skills install https://github.com/addyosmani/agent-skills.git --path skills

Enter fullscreen mode Exit fullscreen mode

Create Your First AGENTS.md

Create an AGENTS.md file at your repository root with:

  • Project layout and important directories
  • Build, test, lint commands
  • Engineering conventions
  • Constraints and do-not rules

Start with Spec-Driven Development

  1. Create a new feature branch
  2. Run the spec-driven development skill
  3. Write the spec with human review
  4. Break into tasks with acceptance criteria
  5. Implement incrementally with tests

The Bottom Line

AI coding agents are powerful but need guardrails. Production-grade engineering skills provide the structure, workflows, and best practices that make AI-assisted development reliable.

The agents who write the best prompts aren't the most productive. The ones with the best processes around prompting are.

Start with spec-driven development. Add test-driven development. Review everything. Manage context like a resource. And watch your AI coding agents transform from fast code generators to reliable engineering partners.


Ready to level up your AI coding workflow? Start with the Agent Skills repository and implement one skill at a time. Your future self (and your production environment) will thank you.

LinkedIn: https://www.linkedin.com/in/vikrant-bagal