অনুসন্ধান সক্রিয়

স্কিল খুঁজুন

আপনার এজেন্টের জন্য উপযুক্ত সক্ষমতা খুঁজে নিন।

জনপ্রিয় অনুসন্ধান
ফলাফল
2,636
এই অনুসন্ধানের সাথে মিলে যাওয়া স্কিল
পৃষ্ঠা
19
132টির মধ্যে
কীওয়ার্ড
typescript
নাম, ট্যাগ বা বিবরণ দিয়ে খুঁজুন
llm-ai
1K

deepgram-sdk-patterns

Apply production-ready Deepgram SDK patterns for TypeScript and Python. Use when implementing Deepgram integrations, refactoring SDK usage, or establishing team coding standards for Deepgram. Trigger with phrases like "deepgram SDK patterns", "deepgram best practices", "deepgram code patterns", "idiomatic deepgram", "deepgram typescript".

jeremylongshore
jeremylongshore
data-ai
open
llm-ai
1K

fireflies-sdk-patterns

Apply production-ready Fireflies.ai SDK patterns for TypeScript and Python. Use when implementing Fireflies.ai integrations, refactoring SDK usage, or establishing team coding standards for Fireflies.ai. Trigger with phrases like "fireflies SDK patterns", "fireflies best practices", "fireflies code patterns", "idiomatic fireflies".

jeremylongshore
jeremylongshore
data-ai
open
llm-ai
1K

vastai-sdk-patterns

Apply production-ready Vast.ai SDK patterns for TypeScript and Python. Use when implementing Vast.ai integrations, refactoring SDK usage, or establishing team coding standards for Vast.ai. Trigger with phrases like "vastai SDK patterns", "vastai best practices", "vastai code patterns", "idiomatic vastai".

jeremylongshore
jeremylongshore
data-ai
open
llm-ai
1K

groq-sdk-patterns

Apply production-ready Groq SDK patterns for TypeScript and Python. Use when implementing Groq integrations, refactoring SDK usage, or establishing team coding standards for Groq. Trigger with phrases like "groq SDK patterns", "groq best practices", "groq code patterns", "idiomatic groq".

jeremylongshore
jeremylongshore
data-ai
open
code-quality
1K

typescript

TypeScript coding standards and conventions including file naming rules

forcedotcom
forcedotcom
testing-security
open
data-engineering
987

typescript-bun-drizzle-quality

Build or review Bun fullstack TypeScript code with Drizzle-backed SQL. Use for backend or cross-layer changes touching API/domain logic, schema or query design, migrations, runtime/type debugging, and boundary validation between contracts, business rules, and persistence.

databuddy-analytics
databuddy-analytics
data-ai
open
architecture-patterns
987

vertical-slices

Design, implement, and review software using vertical slices (feature-first architecture) instead of horizontal layers. Use when creating a new feature, refactoring layered code (controllers/services/repositories), defining clear API-domain-data boundaries, improving slice-level testability, or reducing cross-module coupling in backend or fullstack TypeScript projects.

databuddy-analytics
databuddy-analytics
development
open
backend
987

golem-db-app-ts

Building a TypeScript Golem application with PostgreSQL database integration. Use when creating TypeScript agents that store and query data using golem:rdbms/postgres, defining HTTP endpoints, and configuring environment variables.

golemcloud
golemcloud
development
open
git-workflows
987

sdk-development

Working on the Rust or TypeScript SDKs in sdks/. Use when modifying SDK code, adding SDK features, or testing SDK changes with the main Golem platform.

golemcloud
golemcloud
devops
open
knowledge-base
987

desloppify

Reduce codebase slop by deleting code, flattening abstractions, and replacing custom helpers/types/assertions with native SDK/npm helpers or straightforward schemas (for example Zod). Use when asked to simplify, delete code, or "desloppify" TypeScript/Bun/Nuxt code.

databuddy-analytics
databuddy-analytics
documentation
open
code-quality
983

basic-syntax

If-else formatting, spacing, function parameters, and conditional rendering rules for the Trezor Suite codebase. Use when writing or reviewing TypeScript/React code.

trezor
trezor
testing-security
open
code-quality
983

typescript

TypeScript-specific conventions including ts-expect-error usage, unknown vs any, const assertions, and type vs interface preferences. Use when writing TypeScript code.

trezor
trezor
testing-security
open
testing
983

defensive-programming

Type safety practices including exhaustive checks, explicit return types, and Result-based error handling. Use when writing TypeScript logic that handles multiple cases or error conditions.

trezor
trezor
testing-security
open
architecture-patterns
971

event-sourcing-state

Event-sourced application state pattern for TypeScript apps. Prefer bounded event logs plus pure derivation functions over mirrored mutable lifecycle flags. Use when state transitions are driven by events and bugs can be reproduced from a saved event stream.

remorses
remorses
development
open
architecture-patterns
971

zustand-centralized-state

Centralized state management pattern using Zustand vanilla stores. One immutable state atom, functional transitions via setState(), and a single subscribe() for all reactive side effects. Based on Rich Hickey's "Simple Made Easy" principles: prefer values over mutable state, derive instead of cache, centralize transitions, and push side effects to the edges. Resource co-location in the same store is also valid when lifecycle management is safer that way. Also covers state encapsulation: keeping state local to its owner (closures, plugins, factory functions) so it doesn't leak across the app, reducing the blast radius of mutations. Also covers event sourcing: keeping a bounded event buffer and deriving state with pure functions instead of mutable flags, making event handlers easy to test and reason about. Use this skill when building any stateful TypeScript application (servers, extensions, CLIs, relays) to keep state simple, testable, and easy to reason about. ALWAYS read this skill when a project uses zustan

remorses
remorses
development
open
package-distribution
971

npm-package

Opinionated TypeScript npm package template for ESM packages. Enforces src→dist builds with tsc, strict TypeScript defaults, explicit exports, and publish-safe package metadata. Use this when creating or updating any npm package in this repo.

remorses
remorses
development
open
git-workflows
971

goke

goke is a zero-dependency, type-safe CLI framework for TypeScript. CAC replacement with Standard Schema support (Zod, Valibot, ArkType). Use goke when building CLI tools — it handles commands, subcommands, options, type coercion, help generation, and more. Schema-based options give you automatic type inference, coercion from strings, and help text generation. ALWAYS read this skill when a repo uses goke for its CLI.

remorses
remorses
devops
open
automation-tools
940

tsdown

Bundle TypeScript and JavaScript libraries with blazing-fast speed powered by Rolldown. Use when building libraries, generating type declarations, bundling for multiple formats, or migrating from tsup.

sanity-io
sanity-io
tools
open
nosql-databases
937

redis-js

Work with the Upstash Redis JavaScript/TypeScript SDK for serverless Redis operations. Use for caching, session storage, rate limiting, leaderboards, full-text search (querying, filtering, aggregating with @upstash/redis search extension), and all Redis data structures. Supports automatic serialization/deserialization of JavaScript types. Search also available via @upstash/search-redis and @upstash/search-ioredis adapters for TCP clients.

upstash
upstash
databases
open
debugging
915

typescript-circular-dependency

Detect and resolve TypeScript/JavaScript circular import dependencies. Use when: (1) "Cannot access 'X' before initialization" at runtime, (2) Import returns undefined unexpectedly, (3) "ReferenceError: Cannot access X before initialization", (4) Type errors that disappear when you change import order, (5) Jest/Vitest tests fail with undefined imports that work in browser.

blader
blader
tools
open
আগের
পৃষ্ঠা 19 / 132
পরের