Loading...
Loading...
Found 6,910 Skills
Plan and control time-step policies for transient simulations — couple CFL and physics-based stability limits with adaptive stepping, ramp initial transients through sharp gradients or phase changes, schedule output intervals and checkpoint cadence, and plan restart strategies for long-running jobs. Use when choosing dt for a new simulation, diagnosing adaptive time-step oscillations, deciding checkpoint frequency to minimize lost work, or setting up output schedules aligned with physical time scales, even if the user only says "my run is too slow" or "how often should I save."
Configure GitHub for Cyrus — gh CLI login and git config for PRs, with optional webhook setup to enable @mention responses in PR comments, automated rebases and merges, and auto-fixing based on CI failures (coming soon).
Add Sumsub Device Intelligence (the Fisherman module) to a web project that already verifies users with the Sumsub WebSDK. TRIGGER when the user asks to "add device intelligence", "enable device capture / fingerprinting in the WebSDK", "turn on Fisherman", "detect device fraud / multi-accounting in the verification flow", or asks how device risk labels get onto an applicant verified through the WebSDK. Covers the whole loop — enabling Capture device data on the level, the automatic in-SDK Fisherman lifecycle, the advanced self-rendered wiring, reading device signals (Devices tab, Device Check, risk labels, webhooks), sandbox testing, go-live checklist. SKIP for device intelligence on pages with NO WebSDK widget (login / signup / checkout) — use `sumsub-integrate-dint-standalone`; SKIP for the base WebSDK embed itself — use `sumsub-integrate-websdk`.
PbIdea Framework API Query Skill. Manually triggered by the /pbidea command. Covers: uo_json (JSON parsing/generation/conversion with DataWindow), uo_httpclient / uo_curl (HTTP client, upload and download), encryption and encoding (uo_crypto/uo_rsa/SM2/SM3/SM4/base64), database (uo_database/uo_recordset), WebSuite components such as uo_datawindowex, uo_bson, uo_csv, uo_compress, uo_thread, as well as objects in sciter, web, web_client, haikang, painter libraries.
Add or modify Commerce and external event subscriptions, configure event field extraction and filter rules in an Adobe Commerce app. Use when the user wants to set up event-driven workflows triggered by Commerce operations (such as order placement or catalog changes) or third-party systems. Requires a base app initialized with commerce-app-init.
Read-only automated QA sweep of a deployed stardust site on AEM Edge Delivery Services — validates routing, content fidelity vs the source capture, template conformance, rendered integrity (geometry, JS errors, broken images), visual regression vs baselines, metadata/SEO/JSON-LD, link integrity, accessibility (axe), and performance budgets, then emits a findings report with an allowlist for documented non-defects. Finds issues; never fixes them. Use when the user asks to "QA the site", "validate the migration", "check the live site for issues", "run a QA sweep/regression check", or invokes /stardust:qa <live-url>.
Turn an address into a point, and a point into everything that contains it, instead of recalling coordinates that do not exist. Eleven services covering forward geocoding of a US street address to latitude and longitude, reverse geocoding a lat/lon back to a street address, the Census tract, block FIPS code and GEOID behind an address or a coordinate, up to ten addresses resolved in one request, every Census layer through a point at once — county, county subdivision, place, urban area, CBSA and CSA, congressional district and both state legislative chambers — USPS-style address standardization for deduplicating messy address lists, the nearest named street to a GPS fix, the nearest airports with IATA and ICAO codes, ground elevation from USGS 3DEP, and great-circle distance and bearing between two coordinates. Reach for it whenever an invented coordinate or an invented census tract is the way the task fails: both are strings of plausible digits that no reader can check by eye, and the address-to-tract mapping exists in no model's weights. Use it for asks like "geocode this address", "what census tract is this in", "which congressional district covers these coordinates", "standardize this address list", "what street is this GPS fix on", "nearest airport to this point", "how high is this point", "how far apart are these two coordinates". Geocoding is US-only and says so rather than guessing. Browsing and searching the catalog are free, and with no wallet configured a call prints its price and the exact request instead of paying; real calls cost $0.003 to $0.008, settled in USDC on Base.
Digital pathology image processing toolkit for whole slide images (WSI). Use this skill when working with histopathology slides, processing H&E or IHC stained tissue images, extracting tiles from gigapixel pathology images, detecting tissue regions, segmenting tissue masks, or preparing datasets for computational pathology deep learning pipelines. Applies to WSI formats (SVS, TIFF, NDPI), tile-based analysis, and histological image preprocessing workflows.
TypeScript assertion function for runtime type narrowing with descriptive error messages. Based on tiny-invariant.
Guides the user through integrating Rust-based WASM frontend frameworks with Tauri v2, covering Leptos and Trunk setup, WASM compilation configuration, Cargo.toml dependencies, Trunk.toml bundler settings, and withGlobalTauri API access.
Write viral, persuasive, engaging tweets and threads. Uses web research to find viral examples in your niche, then models writing based on proven formulas and X algorithm optimization. Use when creating tweets, threads, or X content strategy.
Focused pattern for fetching data using URL parameters in Next.js. Covers creating dynamic routes ([id], [slug]) and accessing route parameters in server components to fetch data from APIs. Use when building pages that display individual items (product pages, blog posts, user profiles) based on a URL parameter. Complements nextjs-dynamic-routes-params with a simplified, common-case pattern.