angular

angular is a skill for Claude Code, Codex from G1Joshi/Agent-Skills. It costs 19 tokens per session (502 once invoked), scanned A, original, MIT.

A TypeScript framework for building structured web applications for desktop and mobile browsers.

In plain words
What is it for?
Use it for enterprise web applications and large single-page applications with shared team conventions.
Why use it?
It includes routing, forms, HTTP tools, and a consistent project structure, which helps large teams maintain long-lived applications.

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/g1joshi/agent-skills/angular
Any agent
npx skills add G1Joshi/Agent-Skills --skill angular
Clone the repo
git clone --depth 1 https://github.com/G1Joshi/Agent-Skills

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 angular

README.md
[![agentmods](https://agentmods.dev/badge/skills/g1joshi/agent-skills/angular.svg)](https://agentmods.dev/skills/g1joshi/agent-skills/angular)
Your own site
<a href="https://agentmods.dev/skills/g1joshi/agent-skills/angular"><img src="https://agentmods.dev/badge/skills/g1joshi/agent-skills/angular.svg" alt="Measured on agentmods" height="20"></a>
Per session 19 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 502 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.00019 $0.00502
Opus 5 $0.00010 $0.00251
Sonnet 5 $0.00004 $0.00100
Haiku 4.5 $0.00002 $0.00050

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

Security

Grade A, and why

angular 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 yesterday.

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.

skills/frameworks/angular/SKILL.md · 78 lines

What it actually says

Angular

Angular is a platform for building mobile and desktop web applications. Angular 19 (2025) has completely reinvented itself with Signals, Standalone Components, and optional Zone.js.

When to Use

  • Enterprise Applications: Strict structure, opinionated, and "batteries-included" (Router, Forms, HTTP).
  • Large Teams: TypeScript and strict patterns make it easier for large teams to collaborate.
  • Long-term Maintenance: Angular's update story is excellent (CLI automates migrations).

Quick Start (Signals)

import { Component, signal, computed } from "@angular/core";

@Component({
  selector: "app-counter",
  standalone: true,
  template: `
    <p>Count: {{ count() }}</p>
    <p>Double: {{ double() }}</p>
    <button (click)="increment()">Increment</button>
  `,
})
export class CounterComponent {
  count = signal(0);
  double = computed(() => this.count() * 2);

  increment() {
    this.count.update((c) => c + 1);
  }
}

Core Concepts

Signals

The new reactivity primitive. Fine-grained reactivity that allows Angular to drop Zone.js and only update the exact text node that changed.

Standalone Components

No more NgModule. Components import their dependencies directly.

Deferrable Views (@defer)

Built-in syntax to lazy-load parts of templates.

@defer (on viewport) {
<heavy-chart />
} @placeholder {
<p>Loading...</p>
}

Best Practices (2025)

Do:

  • Use Signals: Prefer signal() over BehaviorSubject for component state.
  • Use inject(): Prefer the inject(Service) function over constructor dependency injection.
  • Go Zoneless: Enable provideExperimentalZonelessChangeDetection() for better performance.

Don't:

  • Don't use NgModule: Unless maintaining legacy code.
  • Don't use CommonModule: Use new control flow syntax (@if, @for) instead of *ngIf, *ngFor.

References

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. yesterday First seen · 78 lines · 19 tokens per session scan A 2e65560fc7e9

Subscribe to this mod's changes

angular is a skill published in the GitHub repository G1Joshi/Agent-Skills (12 stars, last pushed 6mo ago), licensed MIT. It adds 19 tokens to every session and 502 once invoked, about $0.0001 per session on Opus 5. 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-09-03.

Related

Other skills, from other repositories

typescript

LobeHub TypeScript style and type-safety guide. Use when editing TS/TSX/MTS, fixing types, choosing interface vs type, avoiding any/object, import type, async flow, or ts-expect-error.

lobehub/lobehub · 48 tokens

sveltekit-and-svelte5-runes

Complete architecture patterns, state management with Svelte 5 Runes ($state, $derived, $effect, $props), SvelteKit SSR/streaming pipelines, form actions, and production anti-patterns.

hamzabellouch/agent-skills · 53 tokens

electron-crossplatform-performance

Production architecture, multi-process IPC security, V8 memory management, native node modules, window lifecycle optimization, and cross-platform desktop execution using Electron. Use when building, hardening, or tuning performance for enterprise Electron apps across Windows, macOS, and Linux.

hamzabellouch/agent-skills · 57 tokens

prisma-orm-patterns-and-migrations

Best practices for Prisma ORM schema design, high-performance query optimization, preventing N+1 problems, zero-downtime database migrations, connection pooling, and multi-tenant data modeling. Use when building Node.js/TypeScript applications with Prisma.

hamzabellouch/agent-skills · 58 tokens

typescript-pro

Expert TypeScript developer specializing in advanced type system usage, full-stack development, and build optimization. Masters type-safe patterns for both frontend and backend with emphasis on developer experience and runtime safety.

saeed-vayghan/gemini-agent-skills · 40 tokens

javascript-typescript-typescript-scaffold

You are a TypeScript project architecture expert specializing in scaffolding production-ready Node.js and frontend applications. Generate complete project structures with modern tooling (pnpm, Vite, N.

rmyndharis/antigravity-skills · 43 tokens