Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

Angular Developer

Generates Angular code and architectural guidance following official style guides for signals, forms, routing, DI, and testing.

Dev & CodingIntermediate42945AI score 9/10Last updated: Sep 22, 2026

What it does

  • Detects the project's Angular version first so guidance matches available APIs.
  • Applies strict rules for ng new: explicit version → npx @angular/cli@<version>, existing CLI → ng new, otherwise → npx @angular/cli@latest.
  • Routes the model to topic-specific reference docs: components, inputs/outputs, host elements, naming conventions, signals (computed, linkedSignal, resource, effect), HttpClient and httpResource, Signal/Reactive/Template forms, dependency injection, pipes, Angular Aria accessibility patterns, routing and guards, Tailwind and animations, testing (Vitest, harnesses, E2E), CLI and migrations.
  • Requires running ng build after generation and fixing any compile errors.

Who it's for

  • Frontend engineers building or maintaining Angular applications.
  • Teams modernizing to Angular v20+ naming and v22 Signal Forms.
  • Anyone who wants Claude Code to scaffold Angular code consistently.

Examples

  • "Create a new Angular app with a signup form" → picks the right ng new command, builds the form with Signal Forms, verifies with ng build.
  • "Refactor this component to signal inputs and outputs" → follows inputs/outputs reference patterns.
  • "Add lazy-loaded admin routes with an auth guard" → configures routes, CanActivate/CanMatch, and router tests.

· · · Install guide · · ·

Try it now, no install

Paste this into Claude to use the skill without installing anything.

Read the instructions in this file and follow them to help me:
https://raw.githubusercontent.com/aiskillstore/marketplace/HEAD/pending/angular/angular-developer/SKILL.md

What I want: (describe your task here)

If Claude can't open the link, open it yourself and paste the contents instead.

If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.

Install in the Claude app (no terminal)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download ZIP
Install in Claude Code

Let Claude do it — paste this into Claude Code

Install the skill I found on Claude Skill Mart.
Copy the pending/angular/angular-developer folder from the GitHub repo aiskillstore/marketplace into my ~/.claude/skills/angular-developer/.
When it's done, tell me in one line what this skill can do.

Install with a command instead

git clone https://github.com/aiskillstore/marketplace.git /tmp/aiskillstore && mkdir -p ~/.claude/skills && cp -r /tmp/aiskillstore/pending/angular/angular-developer ~/.claude/skills/

This is a third-party skill. Check the source repository before installing.

  1. Open a terminal.
  2. Clone the repo: git clone https://github.com/aiskillstore/marketplace.git /tmp/aiskillstore
  3. Create the skills folder: mkdir -p ~/.claude/skills
  4. Copy the whole skill folder, including references/: cp -r /tmp/aiskillstore/pending/angular/angular-developer ~/.claude/skills/
  5. Verify the reference docs exist: ls ~/.claude/skills/angular-developer/references
  6. Restart Claude Code and try a prompt like "scaffold an Angular service that calls my API".
  7. Make sure Node.js is installed; the Angular CLI is optional since npx is used as a fallback.