All authors
stanfish06 avatar

Claude Skills by stanfish06

github.com/stanfish06
1,560 skillsA× 1,495B× 30C× 12D× 20F× 30 installs524 views
RadiologistA

Expert-thinking profile for Radiologist (clinical / diagnostic imaging interpretation): Reasons from modality–question fit, contrast kinetics, and ACR Appropriateness Criteria (1–9); applies BI-RADS, LI-RADS, PI-RADS, and Lung-RADS with Fleischner/incidental-findings algorithms; integrates PACS/RIS/DICOM/IHE workflows, CTDIvol/DLP/DIR dose stewardship, and critical-results communication while treating...

researchgoreact
0
8
Rare Disease RnaseqA

Blood RNA-seq expression-outlier detection for rare-disease diagnostics. Cases scored against a control reference panel; outliers ranked and filtered by a haploinsufficient disease-gene panel.

developmentpythongo
0
8
RayA

Distributed Python compute with Ray — @ray.remote tasks/actors for cluster-scale parallelism, Ray Data for large-batch preprocessing, Ray Train for distributed model training (DDP/FSDP/DeepSpeed), Ray Tune for scalable hyperparameter search, and Ray Serve for model serving. Use when scaling a Python workload (docking screens, million-cell atlas preprocessing, hyperparameter sweeps, multi-GPU training) from a laptop to a multi-node cluster with minimal code changes. Ray Tune can use optuna as ...

devopspythongo
0
8
RdkitA

Cheminformatics toolkit for fine-grained molecular control. SMILES/SDF parsing, descriptors (MW, LogP, TPSA), fingerprints, substructure search, 2D/3D generation, similarity, reactions. For standard workflows with simpler interface, use datamol (wrapper around RDKit). Use rdkit for advanced control, custom sanitization, specialized algorithms.

businesspythonrust
0
8
React And Nextjs Data VisualizationA

Integrate data visualizations into React and Next.js applications. Use when the user needs chart components, UML-like or architecture diagram components, React integration patterns, Next.js client or server boundaries, hydration-safe rendering, lazy loading, framework-aware performance, scroll-driven visual stories, or export guidance.

developmentgoshell
0
8
React Best PracticesA

React and Next.js performance optimization guidelines from Vercel Engineering. Use when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance patterns. Triggers on tasks involving React components, Next.js pages, data fetching, bundle optimization, or performance improvements.

developmentjavascriptgo
0
8
React Three Fiber GameA

Build React-hosted 3D browser games with React Three Fiber. Use when the user wants pmndrs-based scene composition, shared React state, and 3D HUD integration inside a React app.

developmentshellreact
0
8
Reaction Engineering SpecialistA

Expert-thinking profile for Reaction Engineering Specialist (kinetics / reactor design / catalysis / RTD & calorimetry / thermal-hazard & scale-up): Reasons from rate laws, stoichiometry, residence-time distributions, and coupled heat-rate balances through LHHW and Michaelis-Menten kinetics, Thiele/effectiveness and Weisz-Prater diffusion criteria, tracer RTD models, and RC1/ARC calorimetry while treating thermal runaway, hot spots, catalyst deactivation...

researchpythonrust
0
8
Read FileA

Read any data file (CSV, JSON, Parquet, Avro, Excel, spatial, SQLite) or remote URL (S3, HTTPS). Use when user references a data file, asks "what's in this file", or wants to preview/profile a dataset. Not for source code.

databasesbashsql
0
8
Reconciler LogicA

Implement reconcilers and watchers for grafana-app-sdk apps — write `TypedReconciler[*MyKind]` reconcile functions, apply generation-based skip patterns, do conflict-safe status updates via `resource.UpdateObject`, configure `BasicReconcileOptions` (namespace, label/field filters, finalizer management), use `Watcher` for event-style handling, reconcile `UnmanagedKinds` (resources your app doesn't own), and register the whole thing in `app.go`. Use when writing a reconciler, implementing the r...

businessgobash
0
8
Redesign Existing ProjectsA

Upgrades existing websites and apps to premium quality. Audits current design, identifies generic AI patterns, and applies high-end design standards without breaking functionality. Works with any CSS framework or vanilla CSS.

designgospring
0
8
Redis ClusteringA

Redis Cluster and replication guidance covering hash tags for multi-key operations, avoiding CROSSSLOT errors, and reading from replicas to scale read-heavy workloads. Use when designing keys for a sharded Redis Cluster, debugging CROSSSLOT errors on MGET / SDIFF / pipelines, configuring a multi-key transaction in a cluster, or routing reads to replicas for caches, analytics, or dashboards.

devopspythongo
0
8
Redis ConnectionsA

Redis client and connection guidance covering connection pooling, multiplexing, pipelining, client-side caching with RESP3, avoiding slow commands (KEYS, SMEMBERS, HGETALL), and tuning socket timeouts. Use when configuring a Redis client (redis-py, Jedis, Lettuce, NRedisStack), batching commands for throughput, eliminating per-request connection creation, iterating large keyspaces with SCAN, enabling client-side caching for read-heavy workloads, or setting connect and read timeouts.

devopspythongo
0
8
Redis CoreA

Core Redis modeling guidance — choose the right data structure (String, Hash, List, Set, Sorted Set, JSON, Stream, Vector Set) and use consistent colon-separated key names. Use when designing a Redis data model, caching objects, deciding between Hash and JSON, building counters, leaderboards, membership sets, or session stores, or when reviewing/cleaning up Redis key naming.

code-qualitypythonjava
0
8
Redis ObservabilityA

Redis observability guidance — which metrics to monitor (memory, connections, hit ratio, ops/sec, rejected connections), which built-in commands to reach for during incident triage (SLOWLOG, INFO, MEMORY DOCTOR, CLIENT LIST, FT.PROFILE), and when to use the Redis Insight GUI. Use when setting up monitoring or alerts for a Redis instance, diagnosing a performance regression, profiling a slow FT.SEARCH query, or wiring Redis metrics into Prometheus, Datadog, or similar.

devopspythondebugging
0
8
Redis SearchA

Redis Search guidance covering FT.CREATE schema design, field type selection (TEXT, TAG, NUMERIC, GEO, GEOSHAPE, VECTOR, JSON path), DIALECT 2 query syntax, FT.SEARCH / FT.AGGREGATE / FT.HYBRID command selection, vector similarity with HNSW or FLAT, hybrid retrieval combining lexical and vector ranking, RAG pipelines, zero-downtime index updates via aliases, and debugging with FT.PROFILE and FT.EXPLAIN. Use when defining a search index on Hash or JSON documents, writing FT.SEARCH queries with...

ai-agentspythongo
0
8
Redis SecurityA

Redis security guidance covering authentication (requirepass and ACL users), TLS, ACL-based least-privilege access control, restricting network exposure via bind and protected-mode, firewall rules, and disabling dangerous commands. Use when deploying Redis to production, defining ACL users for an application, configuring TLS connections, locking down a Redis instance behind a firewall, or auditing a Redis deployment for security hardening.

securitypythongo
0
8
Redis Semantic CacheA

Redis LangCache guidance for semantic caching of LLM responses on Redis Cloud — calling search/set via the SDK or REST API, tuning the similarity threshold, separating caches per task type, and filtering with custom attributes. Use when caching LLM completions or RAG answers to cut API cost and latency, building a cache-aside layer in front of OpenAI / Anthropic / etc., tuning hit rate vs precision, or splitting one app's LLM workloads into multiple LangCache caches.

ai-agentspythongo
0
8
Regenerative Medicine ScientistA

Expert-thinking profile for Regenerative Medicine Scientist (wet-lab / translational CGT, tissue engineering & ATMP CMC): Reasons from potency assurance, 361 vs 351/ATMP pathways, USP <1043> ancillary tiers, G-Rex/closed CAR-T manufacture, MSC matrix potency, and ISO 10993/dECM scaffolds while treating comparability-without-bioassay and CFU-F-as-potency as first-class failure modes.

developmentgoreact
0
8
Regulatory Affairs ScientistA

Expert-thinking profile for Regulatory Affairs Scientist (regulatory / drug & biologic development (IND–MAA)): Reasons from CTD/eCTD Modules 1–5 traceability, FDA Type B/EOP and EMA PRIME/scientific-advice strategy, ICH Q8–Q12 lifecycle CMC, and expedited pathways (BTD/RMAT/accelerated approval); treats RTF, clinical-hold CMC gaps, ignored meeting minutes, and eCTD validation failures as first-class failure modes.

businessgorails
0
8
Rehabilitation ScientistA

Expert-thinking profile for Rehabilitation Scientist (clinical / biomechanics lab / implementation-science rehabilitation research): Reasons from ICF/disablement models, COSMIN MCID/MDC triangulation, TIDieR-Rehab/CONSORT 2025 trial design, gait lab and PROMIS outcomes, motor-learning mechanisms, and RE-AIM implementation science; treats natural recovery, therapist allegiance, and lab-vs-function confounds as first-class failure modes.

researchpythonrust
0
8
Reinforcement Learning ResearcherA

Expert-thinking profile for Reinforcement Learning Researcher (computational / deep RL & sim-to-real): Reasons from MDP/POMDP and Bellman operators through DQN/PPO/SAC/TD3, MuJoCo/Atari/Procgen/Brax benchmarks, offline RL (CQL/IQL), reward-hacking diagnostics, Gymnasium/CleanRL/SB3 stacks, and NeurIPS/ICML/CoRL seed-stratified evaluation with bootstrap CIs.

ai-agentsrustgo
0
8
Reliability EngineerA

Expert-thinking profile for Reliability Engineer (physics-of-failure / accelerated life testing (HALT/HASS/ALT) / Weibull & censored field analytics / RCM-FMECA / functional safety (ISO...): Reasons from failure mechanisms, time-to-failure distributions, censored field data, and stress-strength interference through FMECA, physics-of-failure models (Coffin-Manson, Arrhenius, Peck), Weibull and Crow-AMSAA growth analysis, and demonstration tests while treating mixture populations, wrong acceler...

code-qualitypythongo
0
8
Remote BrowserA

Controls an isolated Browser Use Cloud browser from a sandboxed machine with the current Browser Use CLI.

toolspythongo
0
8
Remote Sensing ScientistA

Expert-thinking profile for Remote Sensing Scientist (Earth observation / optical-SAR- LiDAR / atmospheric & geometric correction / change detection / Olofsson validation): Reasons from sensor physics, atmospheric state, surface BRDF, and sampling geometry through Sen2Cor/LaSRC/6S atmospheric correction, sub-pixel coregistration, SAR radiometric terrain correction, and Olofsson area-adjusted accuracy while treating misregistration, NDVI saturation, BRDF anisotropy, mixed pixels, and...

devopspythonrust
0
8
Render Background WorkersA

Sets up and configures background workers on Render for queue-based job processing. Use when the user needs to process async jobs, consume from a queue, run Celery/Sidekiq/BullMQ/Asynq/Oban workers, handle graceful shutdown with SIGTERM, wire a worker to Key Value (Redis), or choose between workers and cron jobs for background work. Trigger terms: background worker, async jobs, queue consumer, Celery, Sidekiq, BullMQ, Asynq, Oban, job processing, SIGTERM, graceful shutdown.

databasespythongo
0
8
Render BlueprintsA

Authors and validates render.yaml Blueprints for Render infrastructure. Use when the user needs to write or edit a render.yaml, wire services together with fromDatabase/fromService/fromGroup, set up projects and environments for multi-service apps, configure preview environments, validate against the schema, or fix immutable field errors. Trigger terms: render.yaml, Blueprint, IaC, fromDatabase, fromService, envVarGroups, previews, projects, environments.

devopspythonrust
0
8
Render CliD

Installs and uses the Render CLI for deploys, logs, SSH, psql, Blueprint validation, and automation. Use when the user needs to run Render CLI commands, script deploys in CI/CD, authenticate with an API key, query services non-interactively, or troubleshoot CLI auth issues. Trigger terms: render CLI, render login, render deploys, render logs, render ssh, render psql, render blueprints validate, render skills, RENDER_API_KEY, non-interactive, CI/CD deploy.

devopsgoshell
0
8
Render Cron JobsA

Configures and troubleshoots scheduled tasks on Render using cron job services. Use when the user needs to run something on a schedule, write a cron expression, set up a periodic job, migrate from Heroku Scheduler, choose between cron jobs and background workers, or fix a cron that isn't firing. Trigger terms: cron job, scheduled task, periodic job, cron expression, schedule, run every, timer, Heroku Scheduler migration.

devopspythongo
0
8
Render DebugA

Debug failed Render deployments by analyzing logs, metrics, and database state. Identifies errors (missing env vars, port binding, OOM, etc.) and suggests fixes. Use when deployments fail, services won't start, or users mention errors, logs, or debugging.

devopsgobash
0
8
Render DeployD

Deploy applications to Render by analyzing codebases, generating render.yaml Blueprints, and providing Dashboard deeplinks. Use when the user wants to deploy, host, publish, or set up their application on Render's cloud platform.

devopsgobash
0
8
Render DisksA

Attaches and manages persistent disks on Render services—mount paths, sizing, snapshots, file transfers, and single-instance constraints. Use when the user needs persistent storage, file uploads, a custom database on disk, CMS media storage, or needs to understand why their service can't scale horizontally or use zero-downtime deploys. Trigger terms: persistent disk, disk, storage, mount path, sizeGB, SSD, file uploads, snapshots, disk restore, ephemeral filesystem.

databasespythonrust
0
8
Render DockerA

Builds and deploys Docker containers on Render—Dockerfiles, multi-stage builds, Blueprint Docker fields, private registries, layer caching, and platform constraints. Use when the user mentions Docker, Dockerfile, container images, multi-stage builds, container registry, GHCR, ECR, BuildKit, dockerContext, runtime docker or image, or optimizing Docker builds on Render.

securitypythonrust
0
8
Render DomainsA

Configures custom domains and TLS certificates on Render—DNS setup, CNAME records, apex domains, wildcard domains, and certificate troubleshooting. Use when the user needs to add a custom domain, configure DNS, set up HTTPS/TLS, troubleshoot certificate issuance, disable the onrender.com subdomain, or add a wildcard domain. Trigger terms: custom domain, DNS, CNAME, TLS, SSL, HTTPS, certificate, apex domain, wildcard domain, onrender.com, domain verification.

testingrustgo
0
8
Render Env VarsA

Configures environment variables, secrets, and env groups on Render. Use when the user needs to set env vars, wire secrets between services, create env groups, use generateValue, set sync: false, or troubleshoot missing or incorrect environment variable values in Blueprints or the Dashboard.

developmentpythonrust
0
8
Render KeyvalueA

Provisions and configures Render Key Value (Redis-compatible Valkey 8) instances for caching, session storage, and job queues. Use when the user needs Redis, Key Value, Valkey, a cache, session store, job queue backend, or needs to configure maxmemory policy, ipAllowList, connection strings, or internal vs external access. Trigger terms: Key Value, Redis, Valkey, cache, session store, REDIS_URL, maxmemory, ipAllowList, allkeys-lru, noeviction.

securitypythongo
0
8
Render McpA

Connects and configures the Render MCP server for AI coding tools—setup per tool (Cursor, Claude Code, Codex), authentication, workspace selection, tool catalog, and troubleshooting. Use when MCP is not configured, list_services() fails, the user asks about Render MCP setup, or an action skill needs MCP but it's not connected yet. Trigger terms: MCP, Render MCP, list_services, MCP setup, MCP server, API key, Bearer token, mcp.render.com, workspace selection.

devopsgoshell
0
8
Render MonitorA

Monitor Render services in real-time. Check health, performance metrics, logs, and resource usage. Use when users want to check service status, view metrics, monitor performance, or verify deployments are healthy.

devopsgobash
0
8
Render NetworkingA

Connects Render services over the private network—internal DNS, service discovery, and cross-service communication. Use when the user needs to wire services together, resolve internal hostnames, troubleshoot connectivity between services, configure environment isolation, or understand which services can reach each other.

code-qualitygoaws
0
8
Render PostgresA

Sets up and optimizes Managed PostgreSQL on Render—connection strings (internal vs external), creation constraints, storage autoscaling, connection limits, high availability, read replicas, backups, and MCP inspection. Use when the user mentions Postgres, PostgreSQL, Render database, connection string, DATABASE_URL, backups, snapshots, replicas, HA, disk storage, connection pooling, or troubleshooting DB connectivity.

databasesgosql
0
8
Render Private ServicesA

Configures Render private services—internal-only apps that accept traffic exclusively from other Render services over the private network. Use when the user needs an internal API, microservice, gRPC server, sidecar, or any service that should not be publicly accessible. Also use when choosing between a private service and a background worker. Trigger terms: private service, pserv, internal service, internal API, microservice, gRPC, not public, private network service.

devopspythongo
0
8
Render ScalingA

Scales Render services—configures autoscaling targets, chooses instance types, sets manual instance counts, and optimizes cost. Use when the user needs to handle more traffic, set up autoscaling, pick the right instance type, reduce costs, or troubleshoot scaling behavior like slow scale-down or stuck instances.

devopsgoapi
0
8
Render Static SitesA

Deploys and configures static sites on Render's global CDN—build commands, publish paths, SPA routing, redirects, custom headers, and PR previews. Use when the user needs to deploy a static site, set up a React/Vue/Hugo/Gatsby frontend, configure SPA fallback routing, add redirect rules, customize response headers, or choose between a static site and a web service for their frontend. Trigger terms: static site, CDN, SPA, single-page app, React deploy, Vue deploy, Hugo, Gatsby, Docusaurus, Jek...

developmentpythongo
0
8
Render Web ServicesA

Configures Render web services—port binding, TLS, health checks, custom domains, auto-deploy, PR previews, persistent disks, and deploy lifecycle. Use when the user needs to set up a web service, fix health check failures, add a custom domain, configure zero-downtime deploys, or troubleshoot port binding issues.

devopsgodocker
0
8
Renewable Energy ScientistA

Expert-thinking profile for Renewable Energy Scientist (field measurement / techno- economic modeling / grid-integrated renewables): Reasons from resource-to-energy conversion, P50/P90 yield risk, LCOE/LCA boundaries, IEC monitoring, and grid constraints while troubleshooting PV soiling/PID/clipping, wind wakes/icing/yaw, hydro drought, geothermal scaling, and biomass feedstock variability.

businessrustgo
0
8
Replay Qa ApiA

Use when calling Replay QA's REST API directly from Codex. Covers bearer-token setup, Replay recording prerequisites, project creation from Replay recordings or target URLs, polling, bug retrieval, journeys, test runs, explorations, and fix workflow discipline.

securitybashgit
0
8
ReplayioA

Use when you need to record or inspect an agent browser run in Replay, test a local app with the host agent browser using Replay Chromium, or use the Replay MCP server for deeper debugging of an uploaded recording.

toolsgoshell
0
8
Report TemplateA

Publication-quality PDF report generation using Typst templates. Produces professional scientific reports with colored section bands, styled tables, figure captions, callout boxes, and page headers/footers.

ai-agentspython
0
8
Reports Pdfs And Slide AutomationA

Lay out and export data-rich reports and documents. Use when the user needs report structure, figure packaging, PDFs, PowerPoint or Google Slides automation, or programmatic insertion of visualizations, UML-like diagrams, or architecture diagrams into documents.

designjavascripttypescript
0
8
Reproductive BiologistA

Expert-thinking profile for Reproductive Biologist (clinical / research): Reasons from the HPG axis, gametogenesis, embryo development, and endometrial receptivity through WHO 6th semen analysis, LC-MS/MS hormone assays, EmbryoScope morphokinetics, PGT-A, and ASRM/ESHRE guidelines while treating mis-timed cycle-day sampling, incubator CO2/pH drift, sperm DNA fragmentation, and embryo...

researchgoreact
0
8