rugged-gemini: Skill for Claude Code

.gemini/skills/angular-idioms/SKILL.md

angular-idioms is a skill for Claude Code, Gemini CLI from irahardianto/rugged-gemini. It costs 0 tokens per session (417 once invoked), scanned A, original, MIT.

A guide to common patterns for Angular 17 and newer, Google’s framework for building web applications. It covers standalone components, signals for local state, RxJS for asynchronous data, dependency injection, typed forms, and testing.

In plain words
What is it for?
Use it when building or reviewing Angular components, managing synchronous or asynchronous data, adding dependency injection, creating typed reactive forms, or setting up tests.
Why use it?
It helps developers structure Angular code consistently and use newer Angular features appropriately. This can reduce confusion when choosing between Angular’s different ways to manage state, forms, and dependencies.

Skill for Claude CodeGemini CLI

Written for Claude Code and Gemini CLI: paths in frontmatter, but also installed under .gemini/.

This is irahardianto/rugged-gemini's own configuration. It tells Claude Code and Gemini CLI how to work on rugged-gemini itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything rugged-gemini configures →

Reuse

Borrowing it

Nothing to install: this file belongs to irahardianto/rugged-gemini. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/irahardianto/rugged-gemini/main/.gemini/skills/angular-idioms/SKILL.md
Clone the repo
git clone --depth 1 https://github.com/irahardianto/rugged-gemini

Made for: Claude Code, Gemini CLI.

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-idioms

README.md
[![agentmods](https://agentmods.dev/badge/skills/irahardianto/rugged-gemini/angular-idioms.svg)](https://agentmods.dev/skills/irahardianto/rugged-gemini/angular-idioms)
Your own site
<a href="https://agentmods.dev/skills/irahardianto/rugged-gemini/angular-idioms"><img src="https://agentmods.dev/badge/skills/irahardianto/rugged-gemini/angular-idioms.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 417 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00000 $0.00417
Opus 5 $0.00000 $0.00209
Sonnet 5 $0.00000 $0.00083
Haiku 4.5 $0.00000 $0.00042

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

Security

Grade A, and why

angular-idioms 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 8d 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.

.gemini/skills/angular-idioms/SKILL.md · 58 lines

What it actually says

Angular Idioms and Patterns

Angular (17+) rewards signals, standalone components, and reactive patterns. Idiomatic Angular = typed, modular, RxJS-aware.

Scope: Angular-specific patterns. For TypeScript: @.gemini/skills/typescript-idioms/SKILL.md.

Standalone Components (Default)

  1. Standalone components — no NgModules for new components:
    @Component({
      selector: 'app-task-list',
      standalone: true,
      imports: [CommonModule, TaskCardComponent],
      template: `<app-task-card *ngFor="let task of tasks()" [task]="task" />`
    })
    export class TaskListComponent {
      tasks = signal<Task[]>([]);
    }
    

Signals (17+)

  1. Signals for synchronous state — prefer over BehaviorSubject for component state.
  2. computed for derived state. effect for side effects.
  3. RxJS for async streams — HTTP, WebSocket, complex event handling.

Dependency Injection

  1. inject() function over constructor injection in standalone components.
  2. Provide at appropriate level — component, route, or root.

Reactive Forms

  1. Reactive forms over template-driven for complex forms.
  2. Typed forms (FormControl<string>) — always.

Testing

Jasmine/Karma or Jest. Angular Testing Library for component tests.

Formatting and Static Analysis

Tool Purpose Command
Prettier Formatting npx prettier --write .
ESLint + angular-eslint Linting npx ng lint

Related

  • TypeScript Idioms @.gemini/skills/typescript-idioms/SKILL.md
  • Frontend Design @.gemini/skills/frontend-design/SKILL.md
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. 8d ago First seen · 58 lines · 0 tokens per session scan A df1d43cb0488

Subscribe to this mod's changes

angular-idioms is a skill published in the GitHub repository irahardianto/rugged-gemini (5 stars, last pushed 3mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 417 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-31.

Related

Other skills, from other repositories

visual-ralph

Visual Ralph orchestration for frontend UI from generated references, static references, or live URL targets, using $ralph with built-in visual verdict and pixel-diff evidence until the implementation matches and leaves a reproducible design system.

Yeachan-Heo/oh-my-codex · 50 tokens

debug-optimize-lcp

Guides debugging and optimizing Largest Contentful Paint (LCP) using Chrome DevTools MCP tools. Use this skill whenever the user asks about LCP performance, slow page loads, Core Web Vitals optimization, or wants to understand why their page's main content takes too long to appear. Also use when the user mentions…

ChromeDevTools/chrome-devtools-mcp · 99 tokens

repro-admin

Reproduce an EmDash admin UI bug. Attach a container, start the demo dev server, drive the admin with agent-browser using the dev-bypass session, and capture the reproduction as screenshots plus a replayable transcript.

emdash-cms/emdash · 48 tokens

create-site

Creates a new Power Pages code site (SPA) using React, Angular, Vue, or Astro. Guides through the full process from initial concept to deployed site: requirements discovery, scaffolding, component planning, design, implementation, validation, and deployment. Use when the user wants to create, build, or scaffold a new…

microsoft/power-platform-skills · 73 tokens

prototype-web

A clickable, high-fidelity web product prototype with navigation, a hero section, feature cards, steps, social proof, and optional pricing. It is designed to resemble a finished landing page while remaining a prototype.

nexu-io/html-anything · 24 tokens

menu-transitions-rtl

Animate react-horizontal-scrolling-menu scrolling and build right-to-left menus: noPolyfill defaults to true since v8, so transitionDuration (default 500), a custom-easing-function transitionBehavior, and per-call ScrollOptions { duration, boundary } on scrollToItem/scrollNext/scrollPrev are silently ignored unless…

asmyshlyaev177/react-horizontal-scrolling-menu · 137 tokens