🅰️
FrontendTypeScript

Angular Modern APIs

by mgechev

Angular Modern APIs is a Frontend skill for Claude Code, published by mgechev in skillgrade.

684 stars48 forkson mgechev/skillgradeAdded 2026/08/23+1% in starsRepository updated 2026/08/20
agentclaude-codecodexevalgemini-cliskill
Install in seconds
Install Angular Modern APIs
Copy Angular Modern APIs into your Claude Code skills folder. Run the command in your terminal, or review the source on GitHub before installing.
terminal
npx degit https://github.com/mgechev/skillgrade/tree/main/examples/angular-modern ~/.claude/skills/angular-modern

Requires Node.js. Downloads this skill only — not the rest of the repository — into your Claude Code skills folder.

Without Node.js

git clone https://github.com/mgechev/skillgrade.git

Clones the whole repository, then copy the skill’s own directory into your skills folder yourself.

In this catalog

Source file
examples/angular-modern/SKILL.md in mgechev/skillgrade
Installs to
~/.claude/skills/angular-modern
Collection
One of 5 skills cataloged from this repository
Category
Frontend567 skills

What Angular Modern APIs does

Angular Modern APIs defines mandatory Angular coding patterns for components. Use it when writing or reviewing Angular code that should use signals, inject(), and built-in control flow.

Angular Modern APIs is cataloged under Frontend on DirSkills. Angular Modern APIs comes from a repository tagged agent, claude-code, codex, eval and gemini-cli.

Documentation

README

Angular Modern APIs

This skill describes the mandatory coding standards for Angular components in our codebase.

Rules

All Angular components must follow these rules:

  1. Use signal-based inputs — Use input() and output() instead of @Input() and @Output() decorators
  2. Use inject() for DI — Use inject() function instead of constructor parameter injection
  3. Use built-in control flow — Use @if, @for, @switch instead of *ngIf, *ngFor, *ngSwitch

Examples

Signal inputs (correct)

import { Component, input, output } from '@angular/core';

@Component({ ... })
export class UserProfileComponent {
  name = input.required<string>();
  age = input(0);
  saved = output<void>();
}

inject() for DI (correct)

This is the opening of the README. Read the full README on GitHub.

Frequently asked about Angular Modern APIs

  • What else does mgechev publish alongside Angular Modern APIs?

    Angular Modern APIs is one of 5 skills that DirSkills catalogs from mgechev/skillgrade, the repository it ships in. Its siblings there include Code Formatter, Skillgrade and Skillgrade Graders. Each one is a separate skill with its own page in this directory, installs the same way Angular Modern APIs does, and is maintained by mgechev in that same repository. The rest of the collection is listed on the mgechev/skillgrade page.

  • How does Angular Modern APIs compare to other Frontend skills?

    Angular Modern APIs ranks #413 by stars among the 567 Frontend skills in this catalog. The most-starred ones next to it are Angular Developer, Android Clean Architecture and Accessibility. DirSkills ranks by the star count of the repository each skill ships in, so that order reflects how popular those repositories are rather than any review of Angular Modern APIs against them. Open each page to compare what they document and how they install.