setup-project

setup-project is a skill for Claude Code, Codex from SAP/fundamental-ngx. It costs 0 tokens per session (2,047 once invoked), scanned A, original, Apache-2.0.

A setup guide for creating an Angular web project with Fundamental NGX, a library of SAP Fiori interface components, installed and themed. It also creates a working first component.

In plain words
What is it for?
Use it to start a new Angular project or add Fundamental NGX to an existing one. It helps configure routing, Sass styles, the Fiori theme, dependencies, and the initial component.
Why use it?
It removes the manual setup work and checks that the required Node.js and Angular tools are available. It also accounts for a known installation problem that can leave styles or configuration unfinished.

Skill for Claude CodeCodex

About the project

Fundamental Library for Angular is an SAP-maintained Angular component library implementing SAP's design system and wrapping UI5 Web Components. Angular developers use its typed UI components and higher-level composites to build SAP-style web interfaces. Catalogue entries provide skills, agents, instructions, and a rule for working with the library.

SAP/fundamental-ngx · 294 stars · on GitHub

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/sap/fundamental-ngx/setup-project
Any agent
npx skills add SAP/fundamental-ngx --skill setup-project
Clone the repo
git clone --depth 1 https://github.com/SAP/fundamental-ngx

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for setup-project

README.md
[![agentmods](https://agentmods.dev/badge/skills/sap/fundamental-ngx/setup-project.svg)](https://agentmods.dev/skills/sap/fundamental-ngx/setup-project)
Your own site
<a href="https://agentmods.dev/skills/sap/fundamental-ngx/setup-project"><img src="https://agentmods.dev/badge/skills/sap/fundamental-ngx/setup-project.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,047 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found 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.00000 $0.02047
Opus 5 $0.00000 $0.01024
Sonnet 5 $0.00000 $0.00409
Haiku 4.5 $0.00000 $0.00205

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

Security

Grade A, and why

setup-project 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 5d 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.

.claude/skills/setup-project/SKILL.md · 210 lines

How it starts

The opening of the file, as written. The whole thing — 210 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Setup Project: $ARGUMENTS

If $ARGUMENTS is empty, ask: (1) project name, (2) preferred SAP Fiori theme (default: horizon).

Phase 1: Check Prerequisites

node --version   # must be ≥ 18.19
ng version       # Angular CLI must be installed

If Angular CLI is missing:

npm install -g @angular/cli

Report both versions. If Node < 18.19, stop and tell the user to upgrade Node before continuing.

Phase 2: Create Angular Project

If the user does not already have a project:

ng new [project-name] \
  --routing \
  --style=scss \
  --ssr=false \
  --package-manager=npm
cd [project-name]

If the user has an existing project, ask for its root path and cd there, then skip to Phase 3.

Phase 3: Install fundamental-ngx

Attempt ng add first:

ng add @fundamental-ngx/core

ng add installs peer dependencies and patches angular.json. However, it is known to fail with "Can not add index to parent of type array" on the budget update step, and may silently skip the styles patch even when it reports success. After it runs:

  1. Check that angular.json "styles" array was updated (see Phase 4). If not, apply the patch manually.
  2. Check that package.json now lists fundamental-styles and @sap-theming/theming-base-content. If not, install manually.

If ng add fails entirely (exit code 1) or the environment is offline, install manually:

npm install \
  @fundamental-ngx/core \
  @fundamental-ngx/platform \
  @fundamental-ngx/cdk \
  @fundamental-ngx/i18n \
  @angular/cdk \
  fundamental-styles \
  @sap-theming/theming-base-content

Note: @fundamental-ngx/platform is not installed by ng add @fundamental-ngx/core. If you plan to use platform form components (fdp-*), install it too.

Phase 4: Configure Theme

Ask the user which theme they want, or use the argument. Map to file paths:

Theme name CSS variable file
horizon (default) sap_horizon/css_variables.css
horizon-dark sap_horizon_dark/css_variables.css
quartz sap_fiori_3/css_variables.css
quartz-dark sap_fiori_3_dark/css_variables.css
hcb sap_hcb/css_variables.css
hcw sap_hcw/css_variables.css

Read the full file on GitHub · 210 lines

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. 5d ago First seen · 210 lines · 0 tokens per session scan A de89812fcc4f

Subscribe to this mod's changes

setup-project is a skill published in the GitHub repository SAP/fundamental-ngx (294 stars, last pushed today), licensed Apache-2.0. It costs nothing until one of its globs matches a file; then it loads 2,047 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

angular-best-practices

Official Angular v22 coding best practices — signals, standalone, native control flow, zoneless, host bindings, Signal Forms, inject(), and accessibility (WCAG AA / AXE). Use whenever writing, generating, or reviewing Angular/TypeScript code in this repo.

anousss007/ng-blatui · 60 tokens

ng-blatui

Use the ng-blatui Angular UI library in an app — install, import components (bui-prefixed, signal-based, zoneless, SSR-safe), theme with Tailwind v4 + oklch tokens, localize dates/numbers/labels, and discover the full catalog via the registry, api.json, llms.txt or the ng-blatui-mcp MCP server. Invoke when building…

anousss007/ng-blatui · 108 tokens

neuralng-angular

Build or update Angular 22+ interfaces with NeuralNg when exact component selection, imports, forms, accessibility, SSR, icons, or theming guidance is needed.

hasanaydin7/NeuralTech · 38 tokens

igniteui-angular-figma-to-app

Translate Figma app screens designed using the Indigo.Design UI Kits into production Angular applications with Ignite UI for Angular. The Indigo.Design UI Kits are Figma component libraries available in four design-system variants — Material, Fluent, Bootstrap, and Indigo — each with light and dark themes. Designers…

IgniteUI/igniteui-angular · 210 tokens

igniteui-angular-generate-from-image-design

Implement Angular application views from design images using Ignite UI Angular components. Uses MCP servers (igniteui-cli, igniteui-theming, angular-cli) to discover components, generate themes, and follow best practices. Triggers when the user provides a design image (screenshot, mockup, wireframe) and wants it built…

IgniteUI/igniteui-angular · 124 tokens

igniteui-angular-theming

Generates and customizes Ignite UI for Angular themes including color palettes, typography, elevations, and component-level styles using the Sass theming system and the igniteui-theming MCP server. Use when users ask to theme, restyle, or style Ignite UI components, change colors or the color palette, switch between…

IgniteUI/igniteui-angular · 130 tokens