AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Typescript Best Practices

skill-cuonglph11-mini-chris-typescript-best-practices · by cuonglph11

Applies idiomatic TypeScript patterns for naming, modules, async code, and maintainability. Use when writing or refactoring TypeScript/TSX, organizing imports, defining classes or functions, or working with async/await and modules.

No reviews yet
0 installs
9 views
0.0% view→install

Install

$ agentstack add skill-cuonglph11-mini-chris-typescript-best-practices

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-cuonglph11-mini-chris-typescript-best-practices)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
5mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Typescript Best Practices? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

TypeScript Best Practices

Priority: P1 (Operational)

Implementation Guidelines

  • Naming: Classes and types = PascalCase; variables and functions = camelCase; constants = UPPER_SNAKE. Use I prefix for interfaces only when it adds clarity.
  • Functions: Arrow functions for callbacks; regular functions for top-level exports. Always type public API return types.
  • Modules: Prefer named exports. Import order: external → internal → relative.
  • Async: Use async/await; use Promise.all() for parallel work instead of raw Promises where appropriate.
  • Classes: Use explicit access modifiers; prefer composition; use readonly where appropriate.
  • Types: Use never for exhaustiveness; use assertion functions (asserts) for runtime checks.
  • Optional: Use ?: for optional properties, not | undefined when the intent is “may be absent.”
  • Imports: Use import type for type-only imports to improve tree-shaking.

Anti-Patterns

  • No default exports: Use named exports.
  • No implicit return types on public API: Specify return types.
  • No unused variables: Enable noUnusedLocals (and noUnusedParameters where applicable).
  • No require: Use ES module import.
  • No empty interfaces: Use a type alias or add at least one member.
  • No any: Use strict types or unknown with explicit narrowing/casting.
  • Mocking in tests: Use jest.Mocked and cast with value as unknown as T; avoid any.
  • No lint disables: Do not use eslint-disable or ts-ignore; fix the underlying issue.

Additional Resources

  • [reference.md](reference.md) — Project structure, TSConfig, barrel exports.
  • [examples.md](examples.md) — Immutable interfaces, exhaustiveness, assertion functions, DI, import order.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.