Smashing the MCP + Skill Tradeoff: More Guidance, Better Agents?
This is a submission for DEV's Summer Bug Smash: Clear the Lineup powered by Sentry . Project Overview I've been working on a Tokyo public transit M…
Tech news from the best sources
This is a submission for DEV's Summer Bug Smash: Clear the Lineup powered by Sentry . Project Overview I've been working on a Tokyo public transit M…
Introduction In this post, we’re going to look at the problem of Skills Sprawl . What happens if you have too many skills? We’ll understand LLM deci…
Every agent harness solves the same two problems, and almost every one of them solves both privately. The first problem is decomposition. A task arr…
Two weeks ago I watched an agent run a full product launch on Waitlister, my waitlist tool. It created the waitlist, generated and published a landi…
Intro : Documenting business processes in Dynamics 365 can be time-consuming. Functional consultants and process owners often need to turn Task Reco…
I spent a while optimizing what my AI agents cost to run. Cheap models for routine work. Better models when the task actually needed them. That made…
If you have ever pointed a coding agent at a multi-day goal, you know the failure mode. It is not that the model writes a bad function. It is that o…
If you've experimented with AI-driven testing, you've probably lived this cycle: you ask an AI agent to "test the checkout flow," and it does someth…
Alibaba made Qwen3.8-Max generally available on August 3, 2026 . This is a practical rundown for developers: what the model is, what it costs, how t…
AI agents are only as good as the instructions and context you give them. When we launched Google Agent Skills , our goal was simple: encode Google…
By @atwellpub , GBTI Network Member . Originally published on gbti.network . Claude Code loads any markdown file at .claude/skills/<name>/SKIL…
In 2026, there is a great deal of discussion around Agentic Coding . Every week, a new framework, orchestrator, or multi-agent system appears. To an…
An AI support demo can look finished after it answers one question and calls one API. The production tension appears later: the model has instructio…
Eighteen months ago, MCP was the thing. Every demo and chatbot connector was running on MCP under the hood. When I started seeing everyone talk abou…
ConardLi's garden-skills makes a specific bet: what holds AI coding agents back is not raw capability but taste and process discipline. Each skill i…
Hi friends Here's a tip for when you're setting up Claude Code (or any coding agent) in a real codebase, this came in clutch for me when I discovere…
An AI coding agent will never tell you it's guessing. It doesn't hedge before a wrong answer, doesn't slow down when it's about to break something t…
(initially published at https://www.humanbound.ai/blog/why-your-ai-agents-biggest-vulnerability-isnt-a-missing-firewall ) Three incidents, one root…
Skill frameworks for AI coding agents are exploding in popularity. As of July 2026, Superpowers has roughly 256,000 GitHub stars, Matt Pocock's skil…
Every few months, a new framework appears promising to make AI coding agents write better code. Three have risen above the noise in 2025 and 2026: S…
How I Built an AI Review Skill That Refuses to Ship Bad Work The fastest way to create AI slop is not to use a bad model. It is to accept a polished…
I keep coming back to the same onboarding question: what happens in the first 10 minutes? For agent tools, that window is brutal. A developer opens…
The annoying part of AI coding tools Every session, the agent forgets: your module boundaries the “every user belongs to an org” rule that lives in…
Your AI agent is confident. It points to line 42 of PaymentService.java . "There's your null pointer exception." You check. Line 42 is a comment. Th…
AI coding agents are now part of the developer workflow. Whether we like that shift or hate it, users ask Codex, Cursor, Claude Code, GitHub Copilot…
Introduction to Agentic AI You must be hearing the term "Agentic AI" a lot and wondering what it means. In this blog, I am going to explain: What is…
A few weeks ago, I started looking more seriously at AI “skills.” Not skills in the human sense. I mean the installable skill packages used by AI co…
TL;DR I introduced a SKILL layer while improving fare extraction in a MCP-based transit agent. After that, the agent stopped reliably using the MCP…
I hate presenting. Not the prep, not the content, the actual moment of unmuting, sharing my screen, and narrating 20 slides to a wall of black camer…
TLDR The baseline model (Claude Opus, no guidance) already catches ~65% of textbook bugs. The plugin's value comes from false positive suppression a…