SShortSingh.
Back to feed

Developer finds 40% of AI coding messages are overhead, not real work

0
·1 views

A software developer analyzed 3 weeks of his own messages sent to AI coding agents like Claude Code, Kimi, Cursor, and Copilot, categorizing 2,116 messages — roughly 96 per day. Only 55% of those messages involved actual work such as new tasks, questions, or decisions, while the remaining 40% consisted of overhead activities. This overhead included correcting agent mistakes, manually relaying information between agents, asking for progress updates, and repeatedly restating rules that agents failed to retain across sessions. The developer noted that rules given to one agent never carried over to others, and that UI-related corrections were the single biggest source of rework. He shared the findings on DEV Community, asking whether other developers experience similar inefficiencies with AI coding tools.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

Kubernetes Homelab Build: etcd Cluster Bootstrapped as Systemd Service

A developer working through the 'Kubernetes the Hard Way' homelab guide has completed Step 07, which involves setting up the etcd cluster on a controller node. etcd serves as Kubernetes' core database, storing the entire state of the cluster. The setup involved transferring etcd binaries and a service unit file to the server node, then configuring and enabling etcd as a systemd service. TLS certificates from a previous step were used to secure the etcd data directory. The process concluded successfully, with etcd confirmed running as a single-member cluster named 'controller'.

0
ProgrammingDEV Community ·

Why Claude Code's shell commands often fail on macOS and how to fix it

Developers using Claude Code on macOS frequently encounter failing shell commands due to two underlying technical issues unrelated to AI model quality. First, Claude Code's Bash tool actually runs commands through zsh on macOS Catalina and later, despite being labeled as a Bash executor, causing subtle behavioral differences in glob handling and syntax. Second, macOS ships with BSD versions of standard tools like sed, date, and stat, while Claude generates commands assuming GNU versions, leading to silent errors or unexpected file creation. A common example is the sed -i command, which silently creates a backup file on macOS instead of editing in place, and exits with a success code that masks the problem. Fixing PATH to prioritize GNU tools via brew has no effect because Claude Code captures its shell environment at session start from its own process, not from the user's configured shell profile.

0
ProgrammingDEV Community ·

ShareNod Offers Client-Side AES-256 Encrypted Storage With P2P File Transfer

ShareNod is a file storage and sharing platform that encrypts uploads client-side using AES-256-GCM before data leaves the user's browser. An encryption key is generated server-side, emailed to the user, and permanently deleted afterward, meaning lost emails result in permanently inaccessible files. Share links can be individually configured with passwords, download limits, and expiry dates, with each link independently revocable even when pointing to the same file. The platform also supports peer-to-peer file transfers via WebRTC, established through a six-digit code without routing data through a central server. Built on Next.js, Laravel, PostgreSQL, and Backblaze, ShareNod is currently free to use.

0
ProgrammingDEV Community ·

AgentTrust Lets AI Agents Hire, Evaluate, and Pay Workers via XRPL Escrow

A developer behind AgentTrust (Boxclever Media Ltd) has published a technical walkthrough of an automated hire-to-pay loop built on the XRP Ledger, exposed as an MCP server. The system allows AI coding agents to post tasks, receive deliverables, and trigger on-chain payments only when an AI referee scores the work as passing. Payment is handled through XRPL's native crypto-condition escrow, which locks XRP and releases it automatically upon a PASS verdict, without requiring human approval at each step. The tool integrates with MCP-compatible clients such as Cursor and Claude Desktop, and a live mainnet test confirmed a full escrow cycle — lock, evaluation, and release — for 0.1 XRP. The project is open source and also available as an npm SDK for Node.js developers.