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.
npx skills add kouroshez/coding-os --skill angulargit clone --depth 1 https://github.com/kouroshez/coding-osWrote 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.
[](https://agentmods.dev/skills/kouroshez/coding-os/angular)<a href="https://agentmods.dev/skills/kouroshez/coding-os/angular"><img src="https://agentmods.dev/badge/skills/kouroshez/coding-os/angular.svg" alt="Measured on agentmods" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00104 | $0.00893 |
| Opus 5 | $0.00052 | $0.00447 |
| Sonnet 5 | $0.00021 | $0.00179 |
| Haiku 4.5 | $0.00010 | $0.00089 |
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 4d 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.
How it starts
The opening of the file, as written. The whole thing — 80 lines — stays where its author put it; the contents beside it link to each section on GitHub.
REQUIRED BACKGROUND: You MUST also follow the core frontend-fundamentals skill (stack-agnostic UI patterns — three-state async, accessibility, SEO), a11y, and clean-code. This skill adds ONLY Angular-specific patterns on top.
angular
Layer contract (matches structure.tree)
| Layer | May import | Never |
|---|---|---|
*.component.ts |
feature service, child components, signals | HttpClient, shared mutable state, sibling services' internals |
*.service.ts |
HttpClient, other services, RxJS |
@Component APIs, the DOM, components |
core/ (error handler, guards, interceptors) |
services (for auth/config lookups) | feature components |
app.config.ts / app.routes.ts |
providers, route targets | business logic |
Components stay presentation-only — no HttpClient, no shared mutable state — so
they are testable in isolation and a data-source swap is a service-layer-only
change.
Standalone & bootstrap
- Every component is
standalone: trueand declares its ownimports. No@NgModuleanywhere in this stack. - The app boots via
bootstrapApplication(AppComponent, appConfig)inmain.ts(no logic). Application-wide providers live inapp.config.ts— the DI root. - Routes are a flat
Routesarray inapp.routes.ts; lazy-load non-trivial features withloadComponent.
State & change detection
- Drive the view with
signal/computed/effect; pair every component withChangeDetectionStrategy.OnPush. - A service owns shared/global state via signals exposed as
asReadonly(); the component reads them and never mutates global state directly. - Pass data in with typed
input(), changes out withoutput(); no two-way mutation of shared state from a child. ManualdetectChanges()in feature code signals a missing signal.
Services & DI
- Data access and side effects live in
@Injectable({ providedIn: "root" })services usingHttpClient+ RxJS — never in a component. - Inject with
inject()or constructor params; nevernewa service — that bypasses the injector and breaks test overrides. - Surface config through a typed service; never read globals (
window,import.meta.env) deep inside a component.
What ships with it
1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 4d ago First seen · 80 lines · 104 tokens per session scan A 5740ffeb9a89
angular is a skill published in the GitHub repository kouroshez/coding-os (6 stars, last pushed yesterday), licensed Apache-2.0. It adds 104 tokens to every session and 893 once invoked, about $0.0005 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.
Other skills, from other repositories
javascript-typescript
JavaScript and TypeScript development with ES6+, Node.js, React, and modern web frameworks. Use for frontend, backend, or full-stack JavaScript/TypeScript projects.
senior-frontend
Frontend development for React 19, Next.js 15, TypeScript, and Tailwind CSS v4 / Pengembangan frontend dengan React 19, Next.js 15, TypeScript, dan Tailwind CSS v4.
Angular — TypeScript Web Application Framework by Google
Angular is a TypeScript-based web application platform by Google providing dependency injection, declarative templates, a powerful CLI, and comprehensive libraries for routing, forms, and HTTP communication.
react-best-practices
React development guidelines with hooks, component patterns, state management, and performance optimization.
expo-app-design
Build beautiful cross-platform mobile apps with Expo Router, NativeWind, and React Native.
upgrading-expo
Guidelines for upgrading Expo SDK versions and fixing dependency issues.