Angular's Official Agent Skills Helps AI Coding Tools Write Modern Angular Google's Angular team has released a repository of Agent Skills that teach AI coding tools to write modern Angular v20 code instead of outdated patterns. The skills, designed for tools like Gemini CLI, enforce current conventions such as Signals and standalone components while avoiding deprecated syntax like `*ngIf` and `standalone: true`. The release addresses a common problem where AI coding agents suggest obsolete Angular patterns due to lack of current framework context. Google's Angular team has published angular/skills https://github.com/angular/skills , a dedicated repository of Agent Skills that teach AI coding agents to write modern, idiomatic Angular instead of the outdated patterns that models still reach for by default. Agent Skills are structured, domain-specific instruction files, an open format introduced by Anthropic, that load on demand to give an agent expertise for a particular task. The Angular collection currently ships two skills. The angular-developer skill generates code and provides architectural guidance across reactivity signals , linkedSignal , resource , forms, dependency injection, routing, SSR, accessibility, animations, styling, and testing, while a ngular-new-app scaffolds a fresh application using the Angular CLI. In practice the angular-developer skill enforces v20 conventions, preferring @if over ngIf and dropping the now redundant standalone: true flag. They are designed for agentic tools such as Gemini CLI and Antigravity, and the official documentation https://angular.dev/ai/agent-skills notes they keep an agent in sync with conventions like Signals and standalone components. The repository is a published snapshot rather than the source of truth, since contributions are made in the main angular/angular https://github.com/angular/angular repository and mirrored out automatically. The motivation is well documented. As Brandon Roberts explained https://dev.to/brandontroberts/angular-skills-agent-skills-for-ai-assisted-development-3jgg , coding agents "often suggest outdated Angular patterns, NgModules, @Input decorators, ngIf, and constructor injection" because they lack current context. Installation uses the community skills CLI: npx skills add