Du wirst angemeldet...

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

Artikel · Dienstag, 16. Juni 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 BongartsTech38 Ausgaben
← Zur aktuellen Ausgabe
Ausgaben5 / 38
Über Nacht von KI aus öffentlichen Quellen erstellt, täglich aktualisiert.
Agentic Coding
Dienstag, 16. Juni 2026
AI Agents - Agentic Coding

Ultimate guide ships 181 templates, plugin marketplace hits 432, Addy Osmani's skills go multi-agent

1 Min. Lesezeit

Ultimate guide visual refresh

The Claude Code guide you bookmarked three days ago just got a visual overhaul.

The updated repository now includes 48 Mermaid diagrams that map the 4-layer context model and multi-agent topologies you've been navigating blind [Source: GitHub]. You'll find context management thresholds quantified—70% precision loss, 90%+ erratic responses—plus a decision framework for when to reach for agents versus skills versus commands. The 271-question quiz now organizes by skill level so you can test where your gaps actually are.

The diagrams alone are worth the clone if you're a visual learner.

Plugin marketplace scales

Your plugin options just tripled.

The Claude Code Plugins Plus repository now hosts 432 validated plugins, 2,769 skills, and 297 agents with public 100-point rubric scoring [Source: GitHub]. The standout is Tonone—a 23-agent engineering team with 125 skills that handles the multi-agent orchestration you've been building manually. The wiki documents 11 production playbooks covering failure modes at scale including rate limits and multi-agent cost management that complement the 7x token cost architecture from two days ago.

Curation still beats volume—start with the AI Agents & Agency category.

Addy Osmani's skill framework

Google's engineering culture just became a Claude Code plugin.

Addy Osmani's Agent Skills ships 24 production-grade skills across a six-phase lifecycle—Define, Plan, Build, Verify, Review, Ship—with anti-rationalization tables that stop Claude from skipping specs, tests, and security reviews [Source: GitHub]. Seven slash commands auto-activate relevant skills based on your development phase, and pre-built personas like code-reviewer and security-auditor compose with skills for targeted quality gates. The framework works across Claude Code, Cursor, and Gemini CLI with identical commands.

If you liked yesterday's verification-first guidance, this is the structured implementation.

Learning path comparison

Two guides, two philosophies—here's how they split.

The visual claude-howto guide offers an 11-13 hour structured path from beginner to power user with copy-paste templates for CI/CD automation and security audits [Source: GitHub]. It emphasizes Planning Mode for complex implementations and checkpoints for safe experimentation. The ultimate guide leans reference-heavy with 181 templates and 23 agent personas. If you learn by doing, start with claude-howto; if you learn by browsing, start with the ultimate guide.

Both track Claude Code v2.1.160—pick your style and stick with it.

Quellen
FlorianBruniaux/claude-code-ultimate-guide - GitHub
FlorianBruniaux/claude-code-ultimate-guide - GitHub
18 hours ago ... AI Coding Agents Matrix, Technical comparison, Comparing 23+ ... → AI Ecosystem Guide — Complete integration patterns with complementary AI tools ...
github.com
KI-Zusammenfassung

This comprehensive Claude Code guide directly addresses all three of your interests. The repository distills six months of production experience into structured learning on agentic coding patterns, offering 48 Mermaid diagrams that visualize internal architecture and multi-agent topologies, plus methodologies for TDD, SDD, and BDD workflows integrated with AI collaboration. For efficient agent work, it covers CLAUDE.md memory file optimization with context management thresholds (70% precision loss, 90%+ erratic responses) and 181 annotated production templates including 23 custom AI personas and 37 security hooks. The debugging section includes trade-off frameworks for agents vs skills vs commands, systematic threat intelligence tracking 28 CVEs and 655 malicious skills, and practical MCP vetting workflows. For pair programming patterns, it documents Trinity Pattern workflows, Agent Teams coordination for parallel debugging, and multi-instance scaling strategies validated on production codebases achieving 50% speed improvements and 500K hours saved. The guide also provides a 271-question interactive quiz organized by skill level, plus MCP server integration with 17 tools accessible directly from Claude sessions.

Quelle öffnen
GitHub - luongnv89/claude-howto: A visual, example-driven guide to ...
GitHub - luongnv89/claude-howto: A visual, example-driven guide to ...
21 hours ago ... ... claude/commands/ # 3. Try it — in Claude Code, type: # /optimize # 4. Ready for more? Set up project memory: cp 02-memory/project-CLAUDE.md /path/to/your ...
github.com
KI-Zusammenfassung

This guide provides a structured, production-ready learning path for mastering Claude Code's advanced features. It covers memory optimization through persistent CLAUDE.md files that load cross-session context, enabling efficient long-term learning. For agentic coding, the guide details how to combine slash commands with subagents, hooks, and MCP servers into automated workflows—including practical examples like code review pipelines that delegate to specialized agents, security scanners, and documentation generators. The debugging and workflow patterns are demonstrated through progressive modules covering skills (reusable capabilities), hooks (event-driven automation), and checkpoints (safe experimentation with code rewind). Key productivity patterns include using Planning Mode for complex implementations, extended thinking for reasoning, and background tasks for long-running operations. The guide includes copy-paste templates for common workflows like automated code review, team onboarding, CI/CD automation, and security audits, with an 11-13 hour learning path from beginner to power user, actively maintained for Claude Code v2.1.160.

Quelle öffnen
jeremylongshore/claude-code-plugins-plus-skills - GitHub
jeremylongshore/claude-code-plugins-plus-skills - GitHub
21 hours ago ... Advanced multi-agent orchestration with persistent cross-session memory, per-step multi-level review, persona stitching, and adaptive flow… make-scenario- ...
github.com
KI-Zusammenfassung

Based on the website content provided, here is the summary relevant to your search intents about AI agents, agentic coding, and advanced Claude Code workflows: The Claude Code Plugins Plus repository hosts a comprehensive marketplace of 432 validated plugins and 2,769 skills designed specifically for Claude Code, featuring 297 agents and 30 community contributors. Key resources directly aligned with your interests include the AI Agents & Agency category with 10 specialized plugins like agency-os for multi-agent orchestration, hyperflow for advanced persistent cross-session memory and adaptive workflows, and tonone which provides a 23-agent engineering team with 125 skills. The Learning Lab offers production-tested patterns covering failure modes at scale including rate limits and multi-agent cost management, while the wiki documents 11 production playbooks covering practical agentic patterns. The repository enforces spec-correct standards with public 100-point rubric validation, ensuring plugins follow the AgentSkills.io open standard. For workflow optimization, the Claude Workflow Skills plugin provides common patterns including promote, audit-plugin, and triage functions. The skill frontmatter system supports lifecycle hooks, subagent execution, and tool-scoping mechanisms that enable sophisticated debugging strategies and efficient context management across multi-turn sessions.

Quelle öffnen
addyosmani/agent-skills: Production-grade engineering ... - GitHub
addyosmani/agent-skills: Production-grade engineering ... - GitHub
22 hours ago ... ... code, or a confident output is cheaper to verify now than to debug later ... strategies, Before merging any change. code-simplification, Chesterton's Fence ...
github.com
KI-Zusammenfassung

Agent Skills is a structured framework for AI coding agents that encodes production-grade engineering workflows across a six-phase development lifecycle: Define, Plan, Build, Verify, Review, and Ship. It includes 24 skills (23 lifecycle-specific plus 1 meta-skill) organized as Markdown files with step-by-step processes, anti-rationalization tables, and verification gates that enforce discipline comparable to senior engineering practices. The framework is available as a plugin for Claude Code, Cursor, Antigravity CLI, Gemini CLI, Windsurf, and other agents, with seven slash commands (/spec, /plan, /build, /test, /review, /code-simplify, /ship) that auto-activate relevant skills based on the development phase. Key features include spec-driven development before coding, test-driven implementation with the Red-Green-Refactor pattern, context-engineering for optimal agent performance, and pre-built specialist personas (code-reviewer, test-engineer, security-auditor, web-performance-auditor) that compose with skills for targeted quality gates. The skills draw from Google's engineering culture and include patterns like Hyrum's Law for API design, the Beyonce Rule for testing, Chesterton's Fence for code simplification, and trunk-based development for git workflows—designed to prevent AI agents from defaulting to shortcuts that skip specs, tests, and security reviews.

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