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 pledgeandgrow/pledge-skills --skill angular-digit clone --depth 1 https://github.com/pledgeandgrow/pledge-skillsWrote 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/pledgeandgrow/pledge-skills/angular-di)<a href="https://agentmods.dev/skills/pledgeandgrow/pledge-skills/angular-di"><img src="https://agentmods.dev/badge/skills/pledgeandgrow/pledge-skills/angular-di.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.00166 | $0.01030 |
| Opus 5 | $0.00083 | $0.00515 |
| Sonnet 5 | $0.00033 | $0.00206 |
| Haiku 4.5 | $0.00017 | $0.00103 |
Grade A, and why
angular-di-docs 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 7d 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 — 102 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Angular Dependency Injection Expert (v22)
Official Documentation: https://angular.dev/guide/di GitHub: https://github.com/angular/angular
What is Angular DI?
Dependency Injection (DI) is a design pattern that organizes and shares code across an Angular application by supplying dependencies to a class instead of creating them inside it. Angular's DI system lets you provide values (services, configs, factories) and inject them where needed.
Quick Reference
| Topic | File |
|---|---|
| DI Overview (concepts, inject(), @Service) | overview.md |
| Creating and Using Services (@Service vs @Injectable, factory, autoProvided) | creating-services.md |
| Defining Dependency Providers (InjectionToken, useClass/useValue/useFactory/useExisting, multi, provider locations, library patterns) | providers.md |
| Injection Context (valid contexts, runInInjectionContext, assertInInjectionContext) | injection-context.md |
| Hierarchical Injectors (EnvironmentInjector, ElementInjector, resolution rules, modifiers, providers vs viewProviders) | hierarchical-injectors.md |
| Lazy Loading Services (injectAsync, prefetching, custom triggers) | lazy-loading.md |
| Lightweight Injection Tokens (tree-shaking optimization for libraries) | lightweight-tokens.md |
| DI in Action (ElementRef, HOST_TAG_NAME, forwardRef, circular deps) | di-in-action.md |
| Debugging and Troubleshooting DI (common pitfalls, error reference, workflow) | debugging.md |
Core Concepts
- @Service() — Modern shorthand for
@Injectable({ providedIn: 'root' }). Creates a tree-shakable singleton. - inject() — Function to request dependencies. Must be called in an injection context (constructor, field initializer, factory, or
runInInjectionContext). - InjectionToken — Unique object reference for non-class dependencies (configs, functions, primitives).
- Hierarchical Injectors — Angular has two injector trees:
EnvironmentInjector(app/route level) andElementInjector(component/DOM level). - Resolution Modifiers —
optional,self,skipSelf,hostcontrol how Angular searches the injector tree.
What ships with it
9 files 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.
- 7d ago First seen · 102 lines · 166 tokens per session scan A 926addcca9c0
angular-di-docs is a skill published in the GitHub repository pledgeandgrow/pledge-skills (10 stars, last pushed 1mo ago), licensed MIT. It adds 166 tokens to every session and 1,030 once invoked, about $0.0008 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-08-31.
Other skills, from other repositories
angular-development
Comprehensive Angular framework development covering components, directives, services, dependency injection, routing, and reactive programming based on official Angular documentation.
angular-expert
Expert knowledge in Angular framework, RxJS reactive programming, TypeScript, dependency injection, and enterprise application development. Use when the user mentions RxJS, TypeScript, dependency injection, reactive, frontend, or enterprise, or when the task involves Angular Fundamentals, RxJS Integration, Advanced…
angular-developer
Generates Angular code and provides architectural guidance. Trigger when creating projects, components, services, or HTTP communication, or for best practices on reactivity (signals, linkedSignal, resource, httpResource), forms, dependency injection, routing, SSR, accessibility (ARIA), animations, styling (component…
angular-new-app
Creates a new Angular app using the Angular CLI. This skill should be used whenever a user wants to create a new Angular application and contains important guidelines for how to effectively create a modern Angular application.
add-component
Add a new visualization component to Unovis end to end — the TypeScript core, the shared registry, the generated framework wrappers, a dev example, a gallery example, and docs. Use when asked to add/create a new component, chart type, plot, or diagram to the library, or to wire an existing core component through to…
add-gallery-example
Add an example to the Unovis gallery — a per-framework example directory under packages/shared/examples, registered in examples-list.tsx, with light/dark previews. Use when asked to add a gallery example, showcase a chart in the gallery, or create the gallery entry that accompanies a new component.