Headline: The wins come from context, not cleverness. An AI with your codebase, your design system, and your deploy logs in scope writes code that ships. Without that scope, it writes plausible code that doesn't.
Two years ago, AI coding tools were autocomplete with attitude. In 2026 they are a credible second engineer — provided you build the workflow around them. This is the workflow I run today at Devya Solutions and on personal projects like eng-ahmed.com.
The Stack
- Claude Code in the terminal — long-horizon, multi-file edits with skills and subagents.
- MCP (Model Context Protocol) servers for live access to docs, deployments, browser, and design tools.
- Cursor or VS Code for inline edits when I want to stay in the IDE.
Why Context Is Everything
The single highest-leverage move in AI-assisted dev is feeding the model the right context. MCP servers do this without prompt stuffing.
- Docs MCP — pulls current library docs at call time, so the model doesn't hallucinate the Tailwind v3 API in a v4 codebase.
- Browser MCP (Claude-in-Chrome) — lets the agent open the running dev server, screenshot the page, and verify the change actually rendered.
- Vercel MCP — fetches deploy logs and runtime errors directly. No more pasting logs.
- Context-mode MCP — keeps file scans, search results, and command output in a sandbox, only surfacing what's relevant to your conversation.
A Real Workflow
The blog page redesign I just shipped was built in a single 45-minute session. Rough flow:
- State the goal — two sentences, not a spec doc.
- Let the agent scout — Claude Code greps, reads a few files, proposes a plan.
- Iterate visually — screenshot the result, feed it back. The agent fixes the sticky-filter scroll bug in one turn.
-
Commit and push — a single
cmshortcut runs build, commits, and pushes. Vercel deploys on push.
What the Agent Is Still Bad At
- Holistic taste — it copies the closest example in your codebase. If that's mediocre, the new feature is mediocre.
- Domain knowledge — it doesn't know your billing logic has a 30-day grace period. You have to write that down.
- Knowing when to push back — it implements bad ideas efficiently. Saying "no, the user actually needs X" is still your job.
Design-System Discipline
The single biggest quality multiplier: a strict design system. Every token, every component name, every spacing scale documented. AI writes much better code against a clear system than against a sprawl of one-off styles.
Security & Trust
I never let the agent push to production without human review, and I scope its permissions tightly. AI accelerates whatever discipline you already have — including bad discipline.
Closing
The "10× engineer" cliché finally has a literal interpretation: a competent engineer with a well-instrumented AI partner ships materially more than they did in 2024. The differentiator is no longer typing speed; it's the quality of the workflow you build around the model.
I document my workflows publicly on eng-ahmed.com. To work with my team on AI-native product builds, reach out via Devya Solutions.
Top comments (0)