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

Angular New App

A skill that scaffolds a new Angular application with the Angular CLI and enforces modern Angular code-generation practices afterwards.

Dev & CodingBeginner42945AI score 8/10Last updated: Sep 22, 2026

What it does

  • Verifies the Angular CLI is installed (which ng / where ng / gcm ng) and offers npm install -g @angular/cli if not.
  • Scaffolds with npx ng new <app-name> --interactive=false --ai-config=..., adding flags like --style, --routing, --ssr, --prefix based on requirements.
  • Loads the generated AI config file so subsequent code follows current Angular conventions.
  • Requires ng generate for 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

  1. "Create an Angular dashboard with SSR and SCSS" → npx ng new dashboard --ssr --style=scss --routing --interactive=false.
  2. "Add a user-list component and an auth guard" → ng generate component user-list and ng generate guard auth, then fill in the logic.
  3. "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)
  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-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.

  1. Open a terminal.
  2. Clone the repo: git clone https://github.com/aiskillstore/marketplace.git
  3. Create the skills folder: mkdir -p ~/.claude/skills
  4. Copy the skill: cp -r marketplace/pending/angular/angular-new-app ~/.claude/skills/
  5. Confirm Node.js and npm are available: node -v, npm -v
  6. Restart Claude Code and ask it to "create a new Angular app" to trigger the skill.