Angular Developer
Generates Angular code and architectural guidance following official style guides for signals, forms, routing, DI, and testing.
Dev & CodingIntermediate★ 429⑂ 45AI 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 andhttpResource, 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 buildafter 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 newcommand, builds the form with Signal Forms, verifies withng 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)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the 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.
- Open a terminal.
- Clone the repo:
git clone https://github.com/aiskillstore/marketplace.git /tmp/aiskillstore - Create the skills folder:
mkdir -p ~/.claude/skills - Copy the whole skill folder, including references/:
cp -r /tmp/aiskillstore/pending/angular/angular-developer ~/.claude/skills/ - Verify the reference docs exist:
ls ~/.claude/skills/angular-developer/references - Restart Claude Code and try a prompt like "scaffold an Angular service that calls my API".
- Make sure Node.js is installed; the Angular CLI is optional since
npxis used as a fallback.