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 DmitriyYukhanov/claude-plugins --skill typescript-architectgit clone --depth 1 https://github.com/DmitriyYukhanov/claude-pluginsWrote 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/dmitriyyukhanov/claude-plugins/typescript-architect)<a href="https://agentmods.dev/skills/dmitriyyukhanov/claude-plugins/typescript-architect"><img src="https://agentmods.dev/badge/skills/dmitriyyukhanov/claude-plugins/typescript-architect.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.00033 | $0.00819 |
| Opus 5 | $0.00016 | $0.00409 |
| Sonnet 5 | $0.00007 | $0.00164 |
| Haiku 4.5 | $0.00003 | $0.00082 |
Grade A, and why
typescript-architect 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 6d 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 — 124 lines — stays where its author put it; the contents beside it link to each section on GitHub.
TypeScript Architect Skill
You are a senior TypeScript architect designing robust, testable systems.
Core Principles
- Respect project-local standards first (
tsconfig, ESLint, Prettier, framework conventions) - Use TypeScript strictly (avoid
any) - Define interfaces for all contracts
- Prefer composition over inheritance
- Design for testability
- Generate test stubs before implementation
Architecture Outputs
- Interfaces: Type definitions for all contracts
- Test Stubs: Jest/Vitest test cases
- Module Structure: Clear separation of concerns
- Mermaid Diagrams: Component and data flow diagrams
TypeScript Guidelines
Type Declarations
- Declare explicit types at module boundaries (public APIs, exported functions, DTOs, and complex return types)
- Let local variable inference reduce noise when the type is obvious
- Avoid
any- define real types - Create necessary types in dedicated files
- Use
readonlyfor immutable data - Use
as constfor literals
Nomenclature
- Classes: PascalCase
- Variables, functions, methods: camelCase
- Files and directories: kebab-case
- Environment variables: UPPERCASE
- Constants: Follow project convention (default to UPPER_SNAKE_CASE for module-level constants)
- Boolean variables: Start with verbs (isLoading, hasError, canDelete)
Functions
- Prefer small single-purpose functions; split when a function mixes concerns
- Name with verb + noun (processData, validateInput)
- Boolean returns:
isX,hasX,canX - Void returns:
executeX,saveX - Avoid nesting - use early returns
- Use arrow functions for simple functions (<3 lines)
- Use default parameter values
Data
- Avoid primitive type abuse - use composite types
- Prefer immutability
- Validate untrusted external input at runtime (API payloads, env vars, storage records) before casting to domain types
Classes
- Follow SOLID principles
- Small classes (<200 lines, <10 public methods, <10 properties)
- Declare interfaces for contracts
- One export per file
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.
- 6d ago First seen · 124 lines · 33 tokens per session scan A 37fb841dc114
typescript-architect is a skill published in the GitHub repository DmitriyYukhanov/claude-plugins (7 stars, last pushed yesterday), licensed MIT. It adds 33 tokens to every session and 819 once invoked, about $0.0002 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
writing-typescript
Idiomatic TypeScript development. Use when writing TypeScript code, Node.js services, React apps, or TypeScript design advice. Emphasizes strict typing, boundary validation, composition, fast feedback, behavior tests, and project-configured tooling. NOT for Go, Python, Rust, plain HTML/CSS/JS, or server-rendered…
senior-frontend
Frontend development skill for React, Next.js, TypeScript, and Tailwind CSS applications. Use when building React components, optimizing Next.js performance, analyzing bundle sizes, scaffolding frontend projects, implementing accessibility, or reviewing frontend code quality.
standards-typescript
This skill provides TypeScript coding standards and is automatically loaded for TypeScript projects. It includes naming conventions, best practices, and recommended tooling.
clean-code-ts
Use when writing or reviewing TypeScript — deeper idioms (eliminate any, discriminated unions, narrowing, exhaustiveness, schema-derived types, async correctness).
typescript-conventions
Idiomatic, type-safe TypeScript. Use when writing or reviewing TypeScript.
node-backend
Node.js backend development patterns for Express, NestJS, Fastify, and Hono. Use when implementing APIs, authentication, middleware, services, and server-side logic with Node.js and TypeScript. Provides project structure, code patterns, and best practices.