Angular New App
A skill that scaffolds a new Angular application with the Angular CLI and enforces modern Angular code-generation practices afterwards.
Dev & CodingBeginner★ 429⑂ 45AI score 8/10Last updated: Sep 22, 2026
What it does
- Verifies the Angular CLI is installed (
which ng/where ng/gcm ng) and offersnpm install -g @angular/cliif not. - Scaffolds with
npx ng new <app-name> --interactive=false --ai-config=..., adding flags like--style,--routing,--ssr,--prefixbased on requirements. - Loads the generated AI config file so subsequent code follows current Angular conventions.
- Requires
ng generatefor components, services, pipes, directives, guards, interceptors, resolvers, enums and classes, and tracks the emitted file paths. - Adds Tailwind v4 in one step via
npx ng add tailwindcss.
Who it's for
- Frontend developers starting a fresh Angular project.
- Claude Code users who want generated Angular files to land in the right place.
- Leads standardizing project bootstrap across an Angular team.
Examples
- "Create an Angular dashboard with SSR and SCSS" →
npx ng new dashboard --ssr --style=scss --routing --interactive=false. - "Add a user-list component and an auth guard" →
ng generate component user-listandng generate guard auth, then fill in the logic. - "Set up Tailwind" →
npx ng add tailwindcss, then use utility classes immediately.
· · · 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-new-app/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-new-app folder from the GitHub repo aiskillstore/marketplace into my ~/.claude/skills/angular-new-app/. 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 && mkdir -p ~/.claude/skills && cp -r marketplace/pending/angular/angular-new-app ~/.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 - Create the skills folder:
mkdir -p ~/.claude/skills - Copy the skill:
cp -r marketplace/pending/angular/angular-new-app ~/.claude/skills/ - Confirm Node.js and npm are available:
node -v,npm -v - Restart Claude Code and ask it to "create a new Angular app" to trigger the skill.