Types

Type checking and type generation

Showing 673-696 of 6297 skills
angular

reference-signal-forms

by angular

Explains the mental model and architecture of the code under packages/forms/signals. You MUST use this skill any time you plan to work with code in packages/forms/signals

Templates 101K 5mo ago
angular

reference-signal-forms

by angular

Explains the mental model and architecture of the code under packages/forms/signals. You MUST use this skill any time you plan to work with code in packages/forms/signals

API Dev 101K 7mo ago
proffesor-for-testing

QE Coverage Analysis

by proffesor-for-testing

"O(log n) sublinear coverage gap detection with risk-weighted analysis and intelligent test prioritization."

Code Review 466 6mo ago
meteor

modern-tools

by meteor

Use when working with tools-core utilities, rspack integration, or modern tooling. Covers logging, npm management, process spawning, git helpers, and Meteor app configuration APIs.

File Ops 44.8K 7mo ago
rcarmo

schedule

by rcarmo

Schedule a task to run later or on a recurring basis. Creates an IPC file that piclaw picks up to register the scheduled task.

Automation 828 6mo ago
CCOSTAN

homeassistant-dashboard-designer

by CCOSTAN

"Design, update, and refactor Home Assistant Lovelace dashboards (YAML views/partials) with a constrained, machine-safe design system: button-card-first structure, minimal card-mod styling, optional flex-horseshoe + mini-graph telemetry, strict grid/vertical-stack layout rules, centralized templates, deterministic ordering, and config validation. Use for Home Assistant dashboard work (especially config/dashboards/**), when refactoring views, adding infra/home/energy/environment panels, or translating Stitch design inspiration into safe Lovelace YAML."

Analytics 5.3K 6mo ago
browserbase

fetch

by browserbase

"Use this skill when the user wants to retrieve a URL without a full browser session: fetch HTML or JSON from static pages, inspect status codes or headers, follow redirects, or get page source for simple scraping. Prefer it over a browser when JavaScript rendering and page interaction are not needed. Supports proxies and redirect control."

API Dev 3.7K 5mo ago
whawkinsiv

technical-seo

by whawkinsiv

"Use this skill to perform comprehensive SEO audits, implement technical optimizations, improve on-page SEO, optimize for Core Web Vitals, and implement GEO (Generative Engine Optimization) for AI search engines."

Code Review 239 6mo ago
databricks-solutions

databricks-metric-views

by databricks-solutions

"Unity Catalog metric views: define, create, query, and manage governed business metrics in YAML. Use when building standardized KPIs, revenue metrics, order analytics, or any reusable business metrics that need consistent definitions across teams and tools."

Database 1.9K 6mo ago
databricks-solutions

spark-python-data-source

by databricks-solutions

Use when building custom Spark data source connectors for external systems (databases, APIs, message queues), implementing batch/streaming readers/writers, or creating data source plugins for systems without native Spark support. Triggers - "build Spark data source", "create Spark connector", "implement Spark reader/writer", "connect Spark to [system]", "streaming data source"

Processing 1.9K 6mo ago
databricks-solutions

databricks-zerobus-ingest

by databricks-solutions

"Build Zerobus Ingest clients for near real-time data ingestion into Databricks Delta tables via gRPC. Use when creating producers that write directly to Unity Catalog tables without a message bus, working with the Zerobus Ingest SDK in Python/Java/Go/TypeScript/Rust, generating Protobuf schemas from UC tables, or implementing stream-based ingestion with ACK handling and retry logic."

Processing 1.9K 6mo ago
databricks-solutions

databricks-dbsql

by databricks-solutions

Databricks SQL (DBSQL) advanced features and SQL warehouse capabilities. This skill MUST be invoked when the user mentions: "DBSQL", "Databricks SQL", "SQL warehouse", "SQL scripting", "stored procedure", "CALL procedure", "materialized view", "CREATE MATERIALIZED VIEW", "pipe syntax", " >", "geospatial", "H3", "ST_", "spatial SQL", "collation", "COLLATE", "ai_query", "ai_classify", "ai_extract", "ai_gen", "AI function", "http_request", "remote_query", "read_files", "Lakehouse Federation", "recursive CTE", "WITH RECURSIVE", "multi-statement transaction", "temp table", "temporary view", "pipe operator". SHOULD also invoke when the user asks about SQL best practices, data modeling patterns, or advanced SQL features on Databricks.

Processing 1.9K 6mo ago
databricks-solutions

databricks-spark-declarative-pipelines

by databricks-solutions

"Creates, configures, and updates Databricks Lakeflow Spark Declarative Pipelines (SDP/LDP) using serverless compute. Handles streaming tables, materialized views, CDC, SCD Type 2, and Auto Loader ingestion patterns. Use when building data pipelines, working with Delta Live Tables, ingesting streaming data, implementing change data capture, or when the user mentions SDP, LDP, DLT, Lakeflow pipelines, streaming tables, or bronze/silver/gold medallion architectures."

CI/CD 1.9K 6mo ago
zard-ui

angular-forms

by zard-ui

Build signal-based forms in Angular v21+ using the new Signal Forms API. Use for form creation with automatic two-way binding, schema-based validation, field state management, and dynamic forms. Triggers on form implementation, adding validation, creating multi-step forms, or building forms with conditional fields. Signal Forms are experimental but recommended for new Angular projects.

Email 1.1K 7mo ago
zard-ui

angular-ssr

by zard-ui

Implement server-side rendering and hydration in Angular v20+ using @angular/ssr. Use for SSR setup, hydration strategies, prerendering static pages, and handling browser-only APIs. Triggers on SSR configuration, fixing hydration mismatches, prerendering routes, or making code SSR-compatible.

API Dev 1.1K 7mo ago
zard-ui

angular-routing

by zard-ui

Implement routing in Angular v20+ applications with lazy loading, functional guards, resolvers, and route parameters. Use for navigation setup, protected routes, route-based data loading, and nested routing. Triggers on route configuration, adding authentication guards, implementing lazy loading, or reading route parameters with signals.

Processing 1.1K 7mo ago
zard-ui

angular-signals

by zard-ui

Implement signal-based reactive state management in Angular v20+. Use for creating reactive state with signal(), derived state with computed(), dependent state with linkedSignal(), and side effects with effect(). Triggers on state management questions, converting from BehaviorSubject/Observable patterns to signals, or implementing reactive data flows.

API Dev 1.1K 7mo ago
zard-ui

angular-directives

by zard-ui

Create custom directives in Angular v20+ for DOM manipulation and behavior extension. Use for attribute directives that modify element behavior/appearance, structural directives for portals/overlays, and host directives for composition. Triggers on creating reusable DOM behaviors, extending element functionality, or composing behaviors across components. Note - use native @if/@for/@switch for control flow, not custom structural directives.

Code Gen 1.1K 7mo ago
zard-ui

angular-di

by zard-ui

Implement dependency injection in Angular v20+ using inject(), injection tokens, and provider configuration. Use for service architecture, providing dependencies at different levels, creating injectable tokens, and managing singleton vs scoped services. Triggers on service creation, configuring providers, using injection tokens, or understanding DI hierarchy.

API Dev 1.1K 7mo ago
Aaronontheweb

serialization

by Aaronontheweb

Choose the right serialization format for .NET applications. Prefer schema-based formats (Protobuf, MessagePack) over reflection-based (Newtonsoft.Json). Use System.Text.Json with AOT source generators for JSON scenarios.

Code Gen 1.1K 7mo ago
Aaronontheweb

microsoft-extensions-configuration

by Aaronontheweb

Microsoft.Extensions.Options patterns including IValidateOptions, strongly-typed settings, validation on startup, and the Options pattern for clean configuration management.

Code Gen 1.1K 6mo ago
Aaronontheweb

akka-hosting-actor-patterns

by Aaronontheweb

Patterns for building entity actors with Akka.Hosting - GenericChildPerEntityParent, message extractors, cluster sharding abstraction, akka-reminders, and ITimeProvider. Supports both local testing and clustered production modes.

Code Gen 1.1K 7mo ago
knoopx

vhs

by knoopx

Creates terminal screenshots and GIFs using VHS tape files. Use when automating terminal recordings, capturing TUI screenshots, or generating demo GIFs.

CLI Tools 81 6mo ago
paulirish

build-free-types

by paulirish

This skill should be used when the user asks to "set up types without a build step", "use vanilla JS with types", "configure erasable syntax", or mentions "JSDoc type checking". It provides instructions for modern type safety using JSDoc in browsers and native TypeScript execution in Node.js.

Processing 4.4K 7mo ago