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.
Skills registries, AGENTS.md consensus, and a best-practice playbook
1 Min. Lesezeit
Agent Skills Registry
Your AI coding agents just got a vetted plugin store.
Agent Skills is a new open-source registry that packages reusable capabilities for Claude Code, Cursor, and Copilot with security scanning baked in [Source: GitHub]. Featured skills include spec-driven development with persistent memory, AWS architecture guidance, and security-first fixes. You install via a single CLI command and can expose the catalog directly to agents through an MCP server.
Worth exploring if you're tired of reinventing your prompts.
AGENTS.md Consensus
The industry is converging on one file to rule your AI assistant.
SSW now recommends AGENTS.md as the centralized manual for architecture, coding standards, and key patterns—structured hierarchically across directories so the nearest file wins [Source: SSW Rules]. Best practices: keep it concise, lead with critical rules, use imperative language with examples. Note that Claude still prefers CLAUDE.md, but you can reference AGENTS.md inside it.
One less decision to make when scaffolding a new project.
From Vibe to Engineering
A new GitHub repo wants to graduate you from vibe coding to agentic engineering.
The playbook emphasizes phase-wise gated planning, vertical slices over horizontal layers, and keeping context under 30–40% for intelligence-sensitive work [Source: GitHub]. It also recommends subagents for context management, skills in isolated subfolders, and a Research → Plan → Execute → Review → Ship loop. Advanced tips include lean CLAUDE.md files under 200 lines and parallel agent teams via tmux and git worktrees.
Bookmark it before your next complex session.
Git Workflow Skill
Your AI agent can now enforce Git best practices automatically.
A new skill package delivers procedural knowledge for Git Flow, Conventional Commits, and PR workflows directly into Claude Code or Cursor [Source: GitHub]. It triggers when you branch, commit, or resolve merge conflicts, and includes a /pr-finish command to automate pull request completion. Install via npm, composer, or git clone.
One less context switch when shipping clean history.
shanraisshan/claude-code-best-practice: from vibe coding to agentic ...13 hours ago ... ... Workflows · Advanced · Git / PR · Debugging · Utilities · Daily. Community. □ Prompting (3). Tip, Source. challenge Claude — "grill me on these changes and don ...github.com
This comprehensive GitHub repository provides advanced guidance for using Claude Code and Cursor as an AI coding assistant. Key best practices include: starting with plan mode and using phase-wise gated planning with multiple tests per phase; breaking PRDs into vertical slices (tracer bullets) that cross all layers rather than horizontal phasing to enable earlier end-to-end feedback; using subagents for context management to keep main sessions focused; implementing skills in isolated subfolders for monorepos with progressive disclosure through references/, scripts/, and examples/ subdirectories; and managing context by rewinding failed attempts rather than leaving corrections in context, keeping under 30-40% context utilization for intelligence-sensitive work. The repository emphasizes the Research → Plan → Execute → Review → Ship architectural pattern across all major workflows, using commands for repeated inner-loop workflows, employing slash commands to avoid re-prompting, and leveraging cross-model approaches (e.g., planning in Claude, QA-review in another model) for higher-quality output. Advanced techniques include using PRD documents efficiently, maintaining lean CLAUDE.md files under 200 lines with domain-specific rules in .claude/rules/*.md, using agent teams with tmux and git worktrees for parallel development, and employing test-time compute with separate context windows where one agent identifies bugs and another finds them.
Do you write an AGENTS.md? | SSW.Rules23 hours ago ... AI coding assistants like Cursor and GitHub Copilot are incredibly powerful ... Writing tips. Be concise - Put the most important rules first; long ...ssw.com.au

AGENTS.md is an agreed-upon standard for AI coding assistants like Cursor and GitHub Copilot that acts as a centralized manual defining your project's architecture, coding standards, common commands, key patterns, and documentation links. The file helps ensure AI suggestions align with your codebase, reducing manual corrections. For large projects, organize AGENTS.md hierarchically across directories—use a high-level root file with an overview and place detailed instructions in subfolder-specific AGENTS.md files, allowing the nearest file to take precedence. Best practices include being concise with important rules first, using imperative language with specific code examples, avoiding duplication with linter configs, and keeping instructions current. Note that Anthropic still uses CLAUDE.md instead of AGENTS.md but you can reference AGENTS.md within it. Most AI IDE tools can automatically generate and maintain this documentation.
GitHub - tech-leads-club/agent-skills9 hours ago ... The secure, validated skill registry for professional AI coding agents. Extend Antigravity, Claude Code, Cursor, Copilot and more with absolute confidence.github.com
Agent Skills is a security-hardened skill registry for professional AI coding agents like Claude Code, Cursor, Antigravity, and others. It offers verified, tested capabilities that extend agent functionality through packaged instructions and resources—similar to plugins for your AI assistant. The platform addresses marketplace vulnerabilities by providing 100% open-source skills with static analysis, human-curated prompts, and security scanning via Snyk before publishing. Featured skills include tlc-spec-driven for spec-driven development with persistent memory across sessions, aws-advisor for architecture and security guidance, and security-best-practices for vulnerability detection and secure-by-default fixes. Installation is managed through an interactive CLI (npx @tech-leads-club/agent-skills) that lets you select skills, choose target agents, and install globally or locally. An MCP server is also available to expose the skills catalog directly to AI agents with progressive disclosure for efficient browsing and loading.
Agent Skill for Git workflow best practices - branching, commits, PR ...24 hours ago ... ✓ Claude Code (Anthropic); ✓ Cursor; ✓ GitHub Copilot; ✓ Other skills-compatible AI agents. Skills are portable packages of procedural knowledge that work ...github.com
This is a Git workflow skill package for AI agents like Claude Code and Cursor. It provides structured procedural knowledge for version control best practices including Git Flow and GitHub Flow branching strategies, Conventional Commits standards, pull request workflows, CI/CD integration, and advanced Git operations. The skill can be installed via marketplace, npm, composer, or git clone, and automatically triggers when users work on branching strategies, commit conventions, PR configurations, and merge conflict resolution. It includes practical commands like /pr-finish for automating pull request completion and comprehensive reference documentation on commit conventions, collaborative workflows, and CI/CD patterns—directly relevant for developers using Claude Code and Cursor who want structured Agent Skills to enhance their AI-assisted coding workflows.