angular-new-app

A guided process for creating a new Angular application with the Angular command-line tool. Angular is a TypeScript framework for building web applications.

In plain words
What is it for?
Use it when starting an Angular app, checking whether the Angular command-line tool is available, and creating the project with the appropriate setup.
Why use it?
It gives new Angular projects a repeatable starting process and includes checks and guidance for current Angular and TypeScript practices.

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/loiane/specs-driven-development-spring-angular/angular-new-app
Any agent
npx skills add loiane/specs-driven-development-spring-angular --skill angular-new-app
Clone the repo
git clone --depth 1 https://github.com/loiane/specs-driven-development-spring-angular

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 919 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin 91% 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.00919
Opus 5 $0.00022 $0.00460
Sonnet 5 $0.00009 $0.00184
Haiku 4.5 $0.00004 $0.00092

Measured 2d ago against content hash aeb37f6a0f65, 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

91% identical to angular-new-app — 2 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.

.claude/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. Keep styling framework recommendations aligned with the workspace standards and avoid introducing extra CSS dependencies unless explicitly required.

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 aeb37f6a0f65

Subscribe to this mod's changes

angular-new-app is a skill published in the GitHub repository loiane/specs-driven-development-spring-angular (58 stars, last pushed 2mo ago), licensed MIT. It adds 43 tokens to every session and 919 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. It is 91% identical to angular-new-app, differing in 2 lines, and is treated as a copy.

Related

Other skills, from other repositories

obsidian-writer

Write well-formatted notes to the atmosphere-vault Obsidian knowledge base. Use this skill whenever creating or updating an ADR, runbook, plan, API doc, guide, session output, or any structured document that should land in the vault — even when the user doesn't say "Obsidian" explicitly. Delegates to…

Atmosphere/atmosphere · 93 tokens

llm-judge

AI quality judge that scores agent responses 0-10 across helpfulness, accuracy, completeness, and clarity. Use when evaluating multi-agent output or implementing LLM-as-judge quality gates.

Atmosphere/atmosphere · 43 tokens

spec-kitty-charter-doctrine

Run charter interview, generation, context, and sync workflows for project governance in Spec Kitty 3.x. Access doctrine artifacts programmatically via DoctrineService. Resolve agent profiles. Load action-scoped governance context iteratively, not all at once. Triggers: "interview for charter", "generate charter"…

Priivacy-ai/spec-kitty · 135 tokens

spec-kitty-mission-review

Review a fully merged Spec Kitty mission post-merge (all WPs done/approved) to verify spec→code fidelity, FR coverage, drift, risks, and security. Triggers: "review the merged mission", "post-merge mission review", "verify the completed mission", "audit the mission implementation", "mission-level acceptance review"…

Priivacy-ai/spec-kitty · 155 tokens

spec-kitty-mission-system

Understand how Spec Kitty missions work: the 4 built-in mission types, how they define workflows via step contracts and action indices, how missions and work packages relate, how templates are resolved through the 6-tier chain, and how doctrine artifacts (procedures, tactics, directives) compose mission behavior.…

Priivacy-ai/spec-kitty · 160 tokens

spec-kitty-runtime-next

Drive the canonical spec-kitty next --mission control loop for mission advancement. Load agent profiles at init, apply action-scoped doctrine context at each step boundary, and pull specific tactics/directives on demand. Triggers: "run the next step", "what should runtime do next", "advance the mission", "what is the…

Priivacy-ai/spec-kitty · 110 tokens