Agent skill
ray
Ray distributed computing framework. Use for scaling ML.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/ray
SKILL.md
Ray
Ray is the compute layer for AI. It powers ChatGPT training and massive scale workloads. v3.0 (2025) improves efficiency and adds an MCP Server for agents.
When to Use
- Distributed Training: Scaling PyTorch across 100 GPUs.
- Ray Serve: Serving LLMs with high throughput (vLLM integration).
- Hyperparameter Tuning: Ray Tune is the industry standard.
Core Concepts
Actors & Tasks
- Task: Stateless function (like Lambda).
- Actor: Stateful class (like a microservice).
Object Store
Shared memory across the cluster means zero-copy data sharing.
Best Practices (2025)
Do:
- Use
ray.data: For streaming massive datasets into trainers. - Use KubeRay: The Kubernetes operator for managing Ray clusters.
- Use Ray Serve: It supports "Model Composition" (chaining models).
Don't:
- Don't use for simple scripts: The overhead of starting a Ray cluster is 5-10s.
References
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?