Agentic Much? Adoption of Coding Agents on GitHub
Romain Robbes, Théo Matricon, Thomas Degueule, Andre Hora, Stefano Zacchiroli
View Original →Abstract
In the first half of 2025, coding agents emerged as a category of development tools that rapidly transitioned from research to practice. Unlike traditional code completion LLMs such as Copilot, agents like Cursor, Claude Code, and Codex operate with high degrees of autonomy — generating complete pull requests from developer-provided task descriptions. This paper presents the first large-scale study (129,134 projects) of coding agent adoption on GitHub, finding an estimated adoption rate of 15.85–22.60%, which is very high for a technology only a few months old — and still increasing.
Relevance to Tokalator
This empirical evidence directly motivates Tokalator's existence: as agentic coding becomes mainstream, token budget visibility becomes critical. Agentic sessions consume far more tokens per interaction than traditional code completions, making real-time budget monitoring (Tokalator's core feature) increasingly valuable.
Related Articles
Agent Skills
Reusable packages of domain expertise defined in SKILL.md files that provide specialized AI agent capabilities. Introduced as GA in VS Code 1.109, skills can be invoked as slash commands or loaded...
Agent Hooks
Deterministic shell commands that execute at key lifecycle points during agent sessions. Unlike instructions, hooks run code with guaranteed outcomes for security policies, quality checks, or audit...
Agent Orchestration
A multi-agent pattern where specialized subagents collaborate on complex tasks, each operating in its own dedicated context window. Provides context efficiency, specialization with different models,...
Terminal Sandboxing
A security mechanism restricting file system and network access for agent-executed terminal commands. Sandboxed commands have read/write access only to the workspace directory, and network access can...