Angular Architect
Builds Angular 17+ features with standalone components, signals, NgRx state, RxJS patterns, bundle optimization, and TestBed tests.
Dev & CodingIntermediate★ 11,578⑂ 1,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
takeUntilDestroyedand explicit stream error handling. - Handles performance and testing:
trackBy,ng build --configuration productionbundle 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
- "Create a standalone user-card component with signals and OnPush" → component plus a matching spec file.
- "Add an NgRx store for the users feature" → actions/reducer/selectors/effects set with Redux DevTools verification steps.
- "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)
- 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 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.
- Open your terminal.
- Clone the repository:
git clone https://github.com/Jeffallan/claude-skills.git - Create the skills directory:
mkdir -p ~/.claude/skills - Copy the whole skill folder (the
references/files matter):cp -r claude-skills/skills/angular-architect ~/.claude/skills/ - Verify with
ls ~/.claude/skills/angular-architect— you should seeSKILL.mdand areferences/folder. - 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.
View source on GitHub ↗License: MIT