angular-new-app

A skill for creating a new Angular application with the Angular command-line tool. It checks whether the Angular CLI is available and uses Angular guidance for the new app.

In plain words
What is it for?
Use it when starting a new Angular app. It checks for the CLI, asks about installing it if needed, and creates the application with Angular's project generator.
Why use it?
It gives a defined starting process for creating an Angular project and avoids proceeding when the required command-line tool is missing.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/punkadillo/figma-code-composer/angular-new-app
Any agent
npx skills add punkadillo/figma-code-composer --skill angular-new-app
Clone the repo
git clone --depth 1 https://github.com/punkadillo/figma-code-composer

Made for: Claude Code, Codex.

Per session 43 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 966 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin 100% copy Near-identical to another mod in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00043 $0.00966
Opus 5 $0.00022 $0.00483
Sonnet 5 $0.00009 $0.00193
Haiku 4.5 $0.00004 $0.00097

Measured 2d ago against content hash 807120998cc2, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

angular-new-app scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 2d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Origin

This is a copy

100% identical to angular-new-app — 0 lines differ, which has more behind it and is treated as the original. This page carries a canonical link to it rather than competing with it.

.figma-pipeline/skills/angular-new-app/SKILL.md · 63 lines

What it actually says

Angular New App

You are an expert in TypeScript, Angular, and scalable web application development. You write functional, maintainable, performant, and accessible code following Angular and TypeScript best practices. You have access to tools to create new Angular apps.

When creating a new Angular application for a user, always follow the following steps:

  1. Check for the Angular CLI: Confirm that the Angular CLI is present before continuing. Here are some ways to confirm:

    • on *nix systems which ng
    • on Windows systems where ng, if powershell gcm ng

    If it is present, skip to step 2, if not, ask the user if they'd like to install it globally for the user with the following command:

    npm install -g @angular/cli

    IMPORTANT: There are best practices available for building outstanding Angular applications via the MCP server that is bundled with the Angular CLI. Available through ng mcp and the get_best_practices.

  2. Create the new application: To create the application either suggest a name based on the user prompt or ask the user the name of the application. Create the application with the following command:

    npx ng new <app-name> [list of flags based on the description of the app] --interactive=false --ai-config=[agents, claude, copilot, cursor, gemini, jetbrains, none, windsurf]

    Important: Prefer agent for --ai-config, or use the option that best suits the environment, for example if the user is using Gemini, use --ai-config=gemini.

    Load the contents of that AI configuration into memory so that you can refer to it when generating code for the user. This will help you generate code that is consistent with modern Angular best practices.

    Consider these commonly useful flags based on the user's requirements:

    • --style=scss|css|less — stylesheet format
    • --routing — add routing module
    • --ssr — enable server-side rendering
    • --prefix=<prefix> — component selector prefix
    • --skip-tests — only if the user explicitly requests it
  3. Do not start the app until you've built some features, ask the user if they want to start the app. You can always run npx ng build to check for errors and repair them.

  4. Remember the following guidelines for continuing to generate Angular application code:

    • To generate components, use the Angular CLI npx ng generate component <component-name>
    • To generate services, use the Angular CLI npx ng generate service <service-name>
    • To generate pipes, use the Angular CLI npx ng generate pipe <pipe-name>
    • To generate directives, use the Angular CLI npx ng generate directive <directive-name>
    • To generate interfaces, use the Angular CLI npx ng generate interface <interface-name>
    • To generate guards, use the Angular CLI npx ng generate guard <guard-name>
    • To generate interceptors, use the Angular CLI npx ng generate interceptor <interceptor-name>
    • To generate resolvers, use the Angular CLI npx ng generate resolver <resolver-name>
    • To generate enums, use the Angular CLI npx ng generate enum <enum-name>
    • To generate classes, use the Angular CLI npx ng generate class <class-name>

    IMPORTANT: Take note of the path returned from running the generate commands so that you know exactly where the new files are.

    Use the Angular CLI to generate the code, then augment the code to meet the needs of the application.

  5. To add tailwind, run npx ng add tailwindcss. After that, you do not have to do anything else, you can start using tailwind classes in your Angular application. Follow the best practices for tailwind v4 here, learn more if needed: https://tailwindcss.com/docs/upgrade-guide.

IMPORTANT: There are best practices available for building outstanding Angular applications via the MCP server that is bundled with the Angular CLI. Available through npx ng mcp and the get_best_practices.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 2d ago First seen · 63 lines · 43 tokens per session scan A 807120998cc2

Subscribe to this mod's changes

angular-new-app is a skill published in the GitHub repository punkadillo/figma-code-composer (3 stars, last pushed 14d ago), licensed MIT. It adds 43 tokens to every session and 966 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. It is 100% identical to angular-new-app, differing in 0 lines, and is treated as a copy.

Related

Other skills, from other repositories

figma-typings-audit

Upgrade @figma/plugin-typings and absorb what the new version exposes. Diffs the .d.ts between the installed and the target version (that package ships no changelog), sorts the changes into breakage / new API / silently-added fields, maps each onto the sandbox handlers, the hand-written Zod mirrors in shared, and the…

awdr74100/figwright · 133 tokens

deno

Skill "deno" from dhaupin/vant, covering deno, when to use, what to do, 1. common commands and 2. add dependencies.

dhaupin/vant · 8 tokens

monorepo-sync-types

Regenerate backend types and re-export them via packages/shared/types/ in a turborepo monorepo so both apps/web/ and apps/mobile/ consume a single typed surface. Supports Supabase (via supabase gen types typescript), neon-drizzle (via drizzle-kit introspect/pull + InferSelectModel/InferInsertModel re-exports — the…

lukedj78/dev-flow · 209 tokens

rn-fundamentals

Use at the start of any React Native or Expo task to lock in foundational choices: Expo managed workflow as default, latest Expo SDK with New Architecture ON, TypeScript, npm. Triggers on: "starting a new RN/Expo project", "what is the right architecture for an Expo app", "managed vs bare workflow", questions about…

lukedj78/dev-flow · 137 tokens

typescript-specifications

Structural verification for TypeScript and JavaScript — tsc --noEmit, linter (eslint/biome). Load when planning, implementing, or reviewing TypeScript/JavaScript code (.ts, .tsx, .js, .jsx; tsconfig.json, package.json).

danweinerdev/claude-sdd-planner · 60 tokens

typescript-developer

TypeScript best practices for writing clean, maintainable, type-safe code. ALWAYS use when working with TypeScript: (1) Creating or modifying ANY .ts/.tsx files, (2) Defining types, interfaces, schemas, models, or domain entities, (3) Writing functions, classes, or utilities, (4) Setting up validation with Zod…

sergeyzwezdin/huba · 153 tokens