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

Angular Architect

Builds Angular 17+ features with standalone components, signals, NgRx state, RxJS patterns, bundle optimization, and TestBed tests.

Dev & CodingIntermediate11,5781,117AI score 9/10Last updated: Aug 7, 2026

What it does

  • Generates Angular 17+ standalone components using signals (input.required, output, computed) with OnPush change detection.
  • Configures advanced routing: lazy loading, guards, resolvers.
  • Scaffolds NgRx actions, reducers, selectors, effects, and entity adapters.
  • Applies safe RxJS patterns such as takeUntilDestroyed and explicit stream error handling.
  • Handles performance and testing: trackBy, ng build --configuration production bundle checks, TestBed tests with a >85% coverage target.
  • Enforces MUST DO / MUST NOT DO rules to prevent leaked subscriptions, direct state mutation, and unjustified any.

Who it's for

  • Frontend developers on Angular 17+ projects or migrating away from NgModules.
  • Teams that want one consistent NgRx store blueprint across features.
  • Tech leads accountable for change detection, bundle size, and test coverage in enterprise apps.

Example uses

  1. "Create a standalone user-card component with signals and OnPush" → component plus a matching spec file.
  2. "Add an NgRx store for the users feature" → actions/reducer/selectors/effects set with Redux DevTools verification steps.
  3. "Split the admin route into a lazy-loaded chunk behind an auth guard" → route config, guard code, and a bundle-size check command.

· · · 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/Jeffallan/claude-skills/HEAD/skills/angular-architect/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 skills/angular-architect folder from the GitHub repo Jeffallan/claude-skills into my ~/.claude/skills/angular-architect/.
When it's done, tell me in one line what this skill can do.

Install with a command instead

git clone https://github.com/Jeffallan/claude-skills.git && mkdir -p ~/.claude/skills && cp -r claude-skills/skills/angular-architect ~/.claude/skills/

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

  1. Open your terminal.
  2. Clone the repository: git clone https://github.com/Jeffallan/claude-skills.git
  3. Create the skills directory: mkdir -p ~/.claude/skills
  4. Copy the whole skill folder (the references/ files matter): cp -r claude-skills/skills/angular-architect ~/.claude/skills/
  5. Verify with ls ~/.claude/skills/angular-architect — you should see SKILL.md and a references/ folder.
  6. Restart Claude Code and, inside an Angular project, ask something like "create a standalone component with signals" or "set up an NgRx store" to trigger the skill.