What problem does it solve? Before running computationally intensive scientific tasks, you often don't know whether the machine can handle parallel processing, GPU acceleration, or in-memory dataset loading. This Skill detects available system resources and produces a JSON report with strategic recommendations so you can choose the right computational approach upfront. ## Core Features & Use Cases - Hardware Detection: Identifies CPU cores, RAM, disk space, and GPUs across NVIDIA CUDA, AMD ROCm, and Apple Silicon Metal backends. - Strategic Recommendations: Generates guidance on parallel worker counts, memory strategies (Dask, Zarr), GPU libraries (PyTorch, JAX), and large data handling. - Use Case: Before analyzing a 50GB genomics dataset, run the detection script to learn that only 8GB of RAM is available, then follow the recommendation to use Dask for out-of-core processing instead of loading everything into pandas. ## Quick Start Run the resource detection script to generate a .claude_resources.json report and tell me which computational strategy to use for my analysis.