Skip to content
SunnyWriteUps
Go back

Angular skills

Edit page

What is an Agent Skill?

An Agent Skill is a self-contained package that typically includes:

When an AI agent recognizes that a task matches a skill, it loads that skill dynamically to improve the quality and consistency of its output. This approach is similar to how Anthropic’s Skills system works, but Angular provides framework-specific expertise. ([GitHub][2])


Current Skills

Angular currently maintains two official skills.

1. angular-developer

This is the primary development skill. It helps an AI assistant:

Instead of relying on outdated training data, the AI follows the latest Angular guidance. ([Angular][1])


2. angular-new-app

This skill focuses on bootstrapping a new Angular application.

It helps with:

The goal is to scaffold projects using Angular’s current recommendations without manually remembering every CLI option. ([Official Agent Skills Directory][3])


Installing the Skills

You can install the official Angular skills using the community skills CLI:

npx skills add https://github.com/angular/skills

Or install a specific skill:

npx skills add https://github.com/angular/skills --skill angular-developer

The CLI also supports listing available skills, installing globally, and targeting specific AI coding agents. ([npm][4])


Why This Matters

Traditionally, AI coding assistants rely on:

Agent Skills add a fourth layer: framework-maintained expertise.

This means the assistant can:

Because the skills are maintained alongside the framework, they can evolve as Angular evolves, without waiting for a new model release. ([Angular][1])


Relationship to .agent

These two pieces complement each other:

.agentangular/skills
Repository-specific instructionsReusable Angular expertise
Tells an AI how to contribute to the Angular repositoryTeaches an AI how to develop Angular applications
Used mainly inside the Angular repoCan be installed into any project

Think of it this way:

Together, they represent a broader trend toward making software projects AI-native by providing structured, machine-readable guidance directly to coding agents.


Edit page
Share this post on:

Previous Post
Welcome to Google I/O Connect The Future of Development is Here
Next Post
Build Your Own "Docs to MCP" Platform Turn Any Documentation into an AI-Queryable MCP Server