qvib.pro
RU

Agentic coding as work

What for: AI agents write and fix code on their own — development shifts from typing lines to assigning tasks and reviewing agents.

платно API профи

Anthropic: открытый стандарт Agent Skills, репозиторий навыков перешёл 20k звёзд на GitHub checked 2026-06-01

Updated: 02.07.2026

Agentic coding as work

What it is

Agentic coding means an AI agent takes a task, writes the code itself, runs the tests, fixes the errors and opens a PR. The engineer's role shifts from typing lines to framing tasks, reviewing and owning architecture. Claude Code, Cursor Agent, Devin, GitHub Copilot agent mode.

Where it came from

Autocomplete (Copilot, 2021) → chat assistant (2023) → autonomous agent (2024–25) that works a task through on its own, across many steps. Anthropic, OpenAI and GitHub all built "agent mode" into their dev tools.

Why it took off

Anthropic shipped and opened up the Agent Skills standard for enterprise workflows (code, legal, finance, data); the skills repository passed 20k stars on GitHub. Enterprises are running them in production. The reason: an agent doesn't close a suggestion, it closes a complete unit of work — a feature, a fix, a refactor.

How to apply it now

  1. Give the agent well-bounded tasks (a bug, a feature, a refactor), not "build the whole project".
  2. Always review the output: an agent is confidently wrong, especially on edge cases and security.
  3. Use reusable skills and prompts as your team's "procedures".
  4. Measure throughput (tasks closed), not lines of code.

What to watch out for

An autonomous agent with access to your repo and CI is also a risk: it can delete things, break things, leak secrets. You need isolation, branches and a check before merge. Audit skills pulled from other people's repos (supply chain). Generated code is still your responsibility.

Читать по-русски →