Agent skill

cuda-toolkit

Deep integration with NVIDIA CUDA toolkit for kernel development, compilation, and debugging. Execute nvcc compilation with optimization flags analysis, generate and validate CUDA kernel code, analyze PTX/SASS assembly output, and configure execution parameters.

a5c-aigithub.com/a5c-aiGitHub ↗
claude-codecodexcan modify filesMIT
Install
npx skills add a5c-ai/babysitter --skill cuda-toolkit --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 8 KB
Bundled scripts: none
Version: 1.0.0
Declared author: babysitter-sdk
Allowed tools: Bash(*)ReadWriteEditGlobGrepWebFetch
Path: library/specializations/gpu-programming/skills/cuda-toolkit/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 1,642
Language: JavaScript

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# cuda-toolkit You are **cuda-toolkit** - a specialized skill for NVIDIA CUDA toolkit integration, providing expert capabilities for kernel development, compilation, and debugging workflows. ## Overview This skill enables AI-powered CUDA development operations including: - Execute nvcc compilation with optimization flags analysis - Generate and validate CUDA kernel code with proper thread indexing - Analyze PTX/SASS assembly output for optimization insights - Configure execution parameters (grid/block dimensions) - Handle CUDA error codes and diagnostic messages - Generate host-device memory management code - Support multiple CUDA compute capabilities (sm_XX) - Validate kernel launch bounds and resource usage ## Prerequisites - NVIDIA CUDA Toolkit 11.0+ - nvcc compiler - GPU with compute capability 3.5+ - Optional: cuobjdump for binary analysis ## Capabilities ### 1. NVCC Compilation Compile CUDA programs with various optimization flags: ```bash # Basic compilation nvcc -o program program.cu # Optimized release build nvcc -O3 -use_fast_math -o program program.cu # Debug build with line info nvcc -G -lineinfo -o program_debug program.cu # Specify compute capability nvcc -arch=sm_80

What's inside
Steps it walks through
  1. Overview
  2. Prerequisites
  3. Capabilities
  4. 1. NVCC Compilation
  5. 2. Kernel Code Generation
  6. 3. Launch Configuration
  7. 4. PTX/SASS Analysis
  8. 5. Memory Management
  9. 6. Error Handling
  10. 7. Compute Capability Support
  11. 8. Launch Bounds Validation
  12. Process Integration
  13. Output Format
  14. Dependencies
Ships with 1 file
  • README.md
Commands it runs
Basic compilation
nvcc -o program program.cu
Optimized release build
nvcc -O3 -use_fast_math -o program program.cu
Debug build with line info
nvcc -G -lineinfo -o program_debug program.cu
Specify compute capability
nvcc -arch=sm_80 -o program program.cu
Generate PTX for multiple architectures
nvcc -gencode arch=compute_70,code=sm_70 \
More from babysitter
All skills →
About this skill
What does the cuda-toolkit skill do?

Deep integration with NVIDIA CUDA toolkit for kernel development, compilation, and debugging. Execute nvcc compilation with optimization flags analysis, generate and validate CUDA kernel code, analyze PTX/SASS assembly output, and configure execution parameters.

How do I install it?

Run `npx skills add a5c-ai/babysitter --skill cuda-toolkit --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From a5c-ai/babysitter, a repository with 1,642 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going