← All posts

AI + Dev Digest — September 4, 2026

The agent skills ecosystem dominates GitHub trending as developers race to make AI coding agents leaner, smarter, and more opinionated — plus Google's TimesFM 3.0 tops three forecasting benchmarks.

If there's a single story in today's trending charts, it's this: developers are done letting AI agents write whatever they want. The GitHub trending page is saturated with skills, plugins, and frameworks designed to constrain, discipline, and redirect AI coding agents toward better engineering habits. The "raw model in a loop" era is quietly giving way to something more opinionated.

Ponytail Teaches AI Agents to Be Lazy (on Purpose)

The top trending repo today with 2,128 new stars, ponytail is a plugin that installs a "laziness hierarchy" into AI coding agents across 20+ platforms including Claude Code, Cursor, and Copilot. Before an agent writes anything, it walks a ladder: skip it entirely if YAGNI applies, reuse existing code, lean on standard library, then native platform features, then installed dependencies, then a one-liner — and only at the bottom, write minimal new code. According to benchmarks against real open-source edits, this yields a 54% reduction in lines generated, a 20% drop in API costs, and a 27% speed improvement, all without compromising safety or error handling. The punchline example: where a typical agent would install a library and build wrapper components for a date picker, ponytail yields <input type="date">.

github.com/DietrichGebert/ponytail

Matt Pocock Releases 26 Composable Agent Skills

TypeScript educator Matt Pocock published a curated collection of agent skills targeting four failure modes in AI-assisted development: misalignment before coding starts, verbosity from context-free conversations, quality drift without feedback loops, and architecture degradation at speed. The 26+ skills — including /grill-me (structured pre-coding questioning), /tdd (red-green-refactor loops), and /improve-codebase-architecture — are installable as a Claude Code plugin or as local editable files. The underlying philosophy is that small, adaptable practices grounded in engineering experience beat rigid automation, and that building shared domain language between developer and agent matters more than prompt length.

github.com/mattpocock/skills

Google's TimesFM 3.0 Tops Three Major Forecasting Benchmarks

Google Research's TimesFM hit version 3.0 this week, and the benchmarks are hard to ignore: first place on fev-bench (100 tasks), TIME Benchmark (98 evaluation tasks), and GIFT-Eval simultaneously. The new version adds native multivariate forecasting with flexible covariate support — a meaningful step beyond the earlier univariate-focused releases. TimesFM is already embedded in BigQuery ML, Google Sheets, and Vertex Model Garden, which means this upgrade lands in production environments rather than staying a research artifact. The 1,618 new stars today suggest practitioners are paying attention.

github.com/google-research/timesfm

Humanizer: A Skill That Strips AI Writing Tells

With 1,208 stars today, humanizer targets the inverse of what most agent tools do — instead of generating text, it removes the AI fingerprints from text that's already been written. The skill applies 35 patterns derived from Wikipedia's documentation of AI writing signs, covering overused phrases, passive constructions, excessive dashes, bold text abuse, and chatbot remnants. It rewrites in two passes, checks its work against both the patterns and the original claims, and preserves factual accuracy throughout. Notably, it accepts writing samples for voice-matching so the output aligns with a specific author's rhythm rather than a generic "not-AI" baseline.

github.com/blader/humanizer

Nous Research Ships Hermes Agent with a Closed Learning Loop

Hermes Agent from Nous Research landed 774 stars today, distinguishing itself from the crowded agent-framework space with a self-improvement architecture: the agent creates skills from experience, refines them during use, and maintains searchable persistent memory across sessions. It ships with 40+ built-in tools, cron scheduling, MCP server support, and deployment options ranging from local Docker containers to serverless cloud VMs. Model flexibility is first-class — users swap between any LLM provider without code changes, and the framework is explicitly designed to generate training trajectories for future tool-calling models.

github.com/NousResearch/hermes-agent