Types

Type checking and type generation

Showing 25-48 of 6292 skills
triggerdotdev

trigger-authoring-tasks

by triggerdotdev

Covers writing backend Trigger.dev tasks with @trigger.dev/sdk: defining task() and schemaTask(), the run function and its ctx, retries, waits, queues and concurrency, idempotency keys, run metadata, logging, triggering other tasks (and the Result shape), scheduled/cron tasks, and the essentials of trigger.config.ts. Load this whenever you are authoring or editing code inside a /trigger directory, defining a task, or writing backend code that triggers tasks. Realtime/React hooks and AI chat are covered by separate skills.

Automation 16.1K 2mo ago
triggerdotdev

trigger-authoring-chat-agent

by triggerdotdev

Author and run a durable AI chat agent with chat.agent from @trigger.dev/sdk/ai: the per-turn run loop, why you MUST spread ...chat.toStreamTextOptions() first, returning a StreamTextResult vs calling chat.pipe(), the two server actions (chat.createStartSessionAction + auth.createPublicToken), and wiring useChat to useTriggerChatTransport. Load this when building, modifying, or debugging a chat backend (the agent task or its lifecycle hooks) or its React transport, when declaring typed tools or custom data parts, or when migrating a plain AI SDK streamText route to chat.agent.

Auth 16.1K 2mo ago
Kilo-Org

effect

by Kilo-Org

Work with Effect v4 / effect-smol TypeScript code in this repo

API Dev 27K 4mo ago
Jeffallan

python-pro

by Jeffallan

Use when building Python 3.11+ applications requiring type safety, async programming, or robust error handling. Generates type-annotated Python code, configures mypy in strict mode, writes pytest test suites with fixtures and mocking, and validates code with black and ruff. Invoke for type hints, async/await patterns, dataclasses, dependency injection, logging configuration, and structured error handling.

Code Gen 11.2K 4mo ago
Jeffallan

mcp-developer

by Jeffallan

Use when building, debugging, or extending MCP servers or clients that connect AI systems with external tools and data sources. Invoke to implement tool handlers, configure resource providers, set up stdio/HTTP/SSE transport layers, validate schemas with Zod or Pydantic, debug protocol compliance issues, or scaffold complete MCP server/client projects using TypeScript or Python SDKs.

API Dev 11.2K 4mo ago
microsoft

fix-errors

by microsoft

Guidelines for fixing unhandled errors from the VS Code error telemetry dashboard. Use when investigating error-telemetry issues with stack traces, error messages, and hit/user counts. Covers tracing data flow through call stacks, identifying producers of invalid data vs. consumers that crash, enriching error messages for telemetry diagnosis, and avoiding common anti-patterns like silently swallowing errors.

Debugging 189.7K 5mo ago
microsoft

tool-rename-deprecation

by microsoft

'Ensure renamed built-in tool references preserve backward compatibility. Use when renaming a toolReferenceName, tool set referenceName, or any tool identifier. Run on ANY change to tool registration code. Covers legacyToolReferenceFullNames for tools and legacyFullNames for tool sets.'

Code Review 189.7K 6mo ago
openclaw

openclaw-refactor-docs

by openclaw

Refactor an existing OpenClaw docs page with source-audited preservation, restructuring, and verification.

CLI Tools 389.1K 1mo ago
openclaw

feishu-perm

by openclaw

Feishu collaborator and permission workflows. Activate when the user explicitly asks to inspect or change sharing, permissions, or collaborators.

Types 389.1K 1mo ago
twentyhq

syncable-entity-types-and-constants

by twentyhq

Define types, entities, and central constant registrations for syncable entities in Twenty's workspace migration system. Use when creating new syncable entities, defining TypeORM entities, flat entity types, or registering in central constants (ALL_ENTITY_PROPERTIES_CONFIGURATION_BY_METADATA_NAME, ALL_ONE_TO_MANY_METADATA_RELATIONS, ALL_MANY_TO_ONE_METADATA_FOREIGN_KEY, ALL_MANY_TO_ONE_METADATA_RELATIONS).

Code Gen 56.4K 6mo ago
twentyhq

syncable-entity-builder-and-validation

by twentyhq

Create validation logic and migration action builders for syncable entities in Twenty. Use when implementing business rule validation, uniqueness checks, foreign key validation, or building workspace migration actions for syncable entities. Validators never throw and never mutate.

Types 56.4K 6mo ago
twentyhq

syncable-entity-cache-and-transform

by twentyhq

Create cache services and transformation utilities for syncable entities in Twenty. Use when implementing entity-to-flat conversions, input DTO transpilation to universal flat entities, or cache recomputation for syncable entities.

Code Gen 56.4K 6mo ago
twentyhq

syncable-entity-integration

by twentyhq

Wire syncable entity services into NestJS modules, create service layer and resolvers for Twenty entities. Use when registering builders, validators, and action handlers in modules, creating business services, or exposing entities via GraphQL API with proper exception handling.

API Dev 56.4K 6mo ago
twentyhq

syncable-entity-testing

by twentyhq

Create comprehensive integration tests for syncable entities in Twenty. Use when writing integration tests for metadata entities, covering validator exceptions, input transpilation errors, and CRUD operations. Tests are MANDATORY for all syncable entities.

Testing 56.4K 6mo ago
metabase

typescript-review

by metabase

Review TypeScript and JavaScript code changes for compliance with Metabase coding standards, style violations, and code quality issues. Use when reviewing pull requests or diffs containing TypeScript/JavaScript code.

Accessibility 49.1K 1mo ago
facebook

flow

by facebook

Use when you need to run Flow type checking, or when seeing Flow type errors in React code.

Debugging 247.9K 7mo ago
metabase

metabase-data-app-actions

by metabase

Use when a Metabase data app needs to trigger a write or mutation — submitting a form, updating a row, deleting an entry, running a saved action, or any "do something" interaction. Covers invoking an existing action via useAction, parameter typing, response handling, and the critical post-action refresh of any UI data the action may have changed.

Database 49.1K 1mo ago
lobehub

add-setting-env

by lobehub

Add server-side environment variables that control default values for user settings.

Code Gen 82.3K 1mo ago
lobehub

zustand

by lobehub

'LobeHub Zustand store conventions. Use when editing src/store, store slices, public/internal actions, dispatch actions, flattenActions, optimistic updates, selectors, maps, or class action migration.'

Code Gen 82.3K 3mo ago
lobehub

store-data-structures

by lobehub

'LobeHub Zustand store data-shape patterns. Use when designing store state, list/detail splits, normalized maps, reducers, messagesMap, topicsMap, or choosing shared type sources.'

Comments 82.3K 3mo ago
lobehub

desktop

by lobehub

Electron desktop development guide — IPC handlers, controllers, preload scripts, window/menu management.

Code Gen 82.3K 3mo ago
nrwl

nx-workspace

by nrwl

"Explore and understand Nx workspaces. USE WHEN answering questions about the workspace, projects, or tasks. ALSO USE WHEN an nx command fails or you need to check available targets/configuration before running a task. EXAMPLES: 'What projects are in this workspace?', 'How is project X configured?', 'What depends on library Y?', 'What targets can I run?', 'Cannot find configuration for task', 'debug nx task failure'."

CLI Tools 29.3K 2mo ago
nrwl

nx-workspace

by nrwl

"Explore and understand Nx workspaces. USE WHEN answering any questions about the nx workspace, the projects in it or tasks to run. EXAMPLES: 'What projects are in this workspace?', 'How is project X configured?', 'What targets can I run?', 'What's affected by my changes?', 'Which projects depend on library Y?', or any questions about Nx workspace structure, project configuration, or available tasks."

CLI Tools 29.3K 7mo ago
getsentry

frontend-data-fetching

by getsentry

Fetch data in Sentry's frontend with TanStack Query and apiOptions. Use when adding or editing React code in static/ that calls the API — useQuery/useMutation/useInfiniteQuery, apiOptions, queryOptions/mutationOptions, fetchMutation, reading response headers/pagination, or conditional fetching. Trigger on "fetch data", "add an API call", "useQuery", "useMutation", "apiOptions", "queryFn", "pagination headers", "X-Hits", or "why is my query type wrong".

Processing 44.7K 1mo ago