Du wirst angemeldet...

Bitte warte, während wir deine Anmeldung überprüfen

Artikel · Mittwoch, 16. September 2026

Agentic Coding

Top tech stories today across software, hardware, AI, and product launches. Senior engineer audience — skip rumour churn and pre-announcement leaks. Lead with shipping-now stories and what changed for builders.

Von Marius BongartsTech103 Ausgaben
← Zur aktuellen Ausgabe
Ausgaben
5 / 103
Über Nacht von KI aus öffentlichen Quellen erstellt, täglich aktualisiert.
Agentic Coding
Mittwoch, 16. September 2026
AI Agents - Agentic Coding

Lean agents.md wins, Matt Pocock ships skills, APM standardizes config

2 Min. Lesezeit

Lean Agents.md Strategy

Your agents.md file is probably too fat.

A new video walks through the exact structure that keeps Claude Code fast: strip your agents.md down to a brief project description, package manager info, and links to separate convention files for API, testing, React, and delivery workflows [Source: YouTube]. The key insight is that bloated agents.md files from major companies waste thousands of tokens on every request—context pollution that slows your agent down. For monorepos, you can nest agents.md files in subfolders so only relevant config loads when working in specific packages. Start minimal, add conventions only when you catch the AI making mistakes.

Token discipline compounds over long sessions.

Matt Pocock's Skills

The skills framework you've been building just got a reference implementation.

Matt Pocock released a skills repository targeting the four failure modes you've hit: misalignment between your intent and agent output, excessive verbosity, poor code quality, and architectural decay [Source: GitHub]. The /grill-me skill forces the agent to interrogate your requirements before coding. Red-green-refactor TDD loops enforce quality. The /improve-codebase-architecture skill runs periodic scans to prevent rot. Everything installs through Claude Code's plugin marketplace or as editable files in your project.

Small, composable, rooted in fundamentals—exactly the pattern that scales.

APM Config Manager

Microsoft just solved the setup-drift problem across your machines.

APM is an open-source dependency manager that treats agent configuration like any other reproducible artifact [Source: GitHub]. A single apm.yml manifest declares your AGENTS.md files, skills, plugins, and MCP servers—then reproduces them identically across Claude Code, Cursor, and Copilot. You get lockfile integrity hashing, security scanning for compromised packages, and organizational policy enforcement. Think package.json but for your entire agent context layer.

Shareable configs mean your solo setup travels with you.

ADHD Mode Results

Shorter responses, same correctness—tested across 18 real sessions.

An "I have ADHD" skill reformats Claude Code output to prioritize action over explanation: next steps first, numbered multi-step tasks, suppressed tangents, zero preambles [Source: YouTube]. Across the test battery, responses dropped 36% in length—from 1,809 to 1,164 words—while showing clear next steps in 5 of 9 answers versus zero without the skill. Installation is one sentence pasted into your agent. The catch: overly terse final messages can obscure reasoning, and the model occasionally ignores the rules.

Worth testing on your next debugging session.

Quellen
Why Your AI Generates Crap Code - And How to Fix It - YouTube
Why Your AI Generates Crap Code - And How to Fix It - YouTube
9 hours ago ... ... agents, but most people get it wrong. They don't know how to use AGENTS.md, when SKILLS.md should be used, or even what a system prompt is. In this video I ...
youtube.com
KI-Zusammenfassung

This video provides comprehensive guidance on configuring AI agents for efficient coding workflows. It covers the critical components that get sent to your AI with each request: system prompts, agents.md/claude.md files, skills, documentation, and your actual prompt. The key takeaway is keeping your agents.md file small and focused by extracting large sections into separate documentation files that you reference rather than include directly. This reduces token waste and prevents context pollution. The video demonstrates breaking down bloated agents.md files (like those from major companies containing thousands of tokens) into a lean structure with just a brief project description, package manager info, and links to specific conventions for API, web, testing, React, TypeScript, and delivery workflows. For monorepo structures, you can create nested agents.md files in different folders so the AI loads only relevant configuration when working in specific packages. Skills serve as on-demand documentation for specific use cases like authentication—loaded only when needed rather than always present. The speaker emphasizes starting with a minimal agents.md and adding conventions only when you notice the AI making mistakes, rather than preemptively overloading it with information.

Quelle öffnen
Skills for Real Engineers. Straight from my .agents directory. · GitHub
Skills for Real Engineers. Straight from my .agents directory. · GitHub
13 hours ago ... I built these skills as a way to fix common failure modes I see with Claude Code, Codex, and other coding agents. ... CLAUDE.md, and any doc an agent reaches by a ...
github.com
KI-Zusammenfassung

Matt Pocock's skills repository provides a comprehensive set of agent patterns designed to address common failure modes when working with Claude Code and other AI coding agents. The skills are organized around four core problems: misalignment between developer intent and agent output (fixed with /grill-me and /grill-with-docs), excessive verbosity (addressed through building a shared domain language in CONTEXT.md), poor code quality (managed via red-green-refactor TDD loops and /diagnosing-bugs), and architectural decay (prevented through /improve-codebase-architecture scans). Installation is straightforward via Claude Code's plugin marketplace or as editable files in your project. The framework emphasizes small, composable, adaptable skills rooted in software engineering fundamentals like domain-driven design, test-driven development, and deliberate architecture care—enabling solo founders and teams to maintain code quality and developer control while leveraging AI acceleration.

Quelle öffnen
Claude Code With vs Without "ADHD Mode" — Honest Test - YouTube
Claude Code With vs Without "ADHD Mode" — Honest Test - YouTube
22 hours ago ... Get GPUs Runpod: https://get.runpod.io/pe48 Get Hostinger: https://www.hostg.xyz/SHJiu Coupon Code "PROMPT" 10% discount I ran 18 real Claude Code sessions ...
youtube.com
KI-Zusammenfassung

This video demonstrates testing an "I have ADHD" skill for Claude Code that reformats AI responses to prioritize action over explanation. The skill applies 10 rules including leading with next actions, numbering multi-step tasks, suppressing tangents, and eliminating preambles. Across 18 real Claude Code sessions, responses with the skill were 36% shorter while maintaining correctness, with significant improvements in error reporting and debugging workflows. The skill reduced reading load from 1,809 to 1,164 words across test cases, showed clear next steps in 5 of 9 answers versus zero without it, and achieved a weighted benchmark score improvement from 4.05 to 4.47. Installation is simple—paste one sentence into your agent or install as a plugin, then activate with "/I have ADHD" command. The main limitations are that the model sometimes ignores rules, the skill doesn't prevent destructive commands, and overly short final messages can obscure reasoning. For solo developers using Claude Code daily, the skill notably improves debugging and error handling workflows while remaining free and MIT-licensed across multiple AI coding assistants.

Quelle öffnen
microsoft/apm: Agent Package Manager - GitHub
microsoft/apm: Agent Package Manager - GitHub
9 hours ago ... Built on open standards: AGENTS.md · Agent Skills · MCP ... ai-agentsclaude-codecodex-clicontext-engineeringgithub-copilotpackage-managerprompt-engineering ...
github.com
KI-Zusammenfassung

APM is an open-source dependency manager for AI agents that addresses a core pain point for agentic coding workflows. It uses a single apm.yml manifest to declare and reproduce agent configuration across Claude, Copilot, Cursor, and other AI coding tools — similar to package.json or requirements.txt but for agent context, skills, plugins, and MCP servers. Key features include portable manifests with transitive dependency resolution, security scanning for compromised packages and Unicode hijacking, integrity hashing via lockfiles, and organizational policy enforcement through apm-policy.yml. For solo founders and small teams using Claude Code and Cursor daily, APM streamlines the setup of AGENTS.md files, skills, and prompts by making configurations shareable and reproducible across developers and machines without manual reconfiguration.

Quelle öffnen
Über Nacht zusammengestellt von MorningMail.aiZugestellt um 04:55