together-gpu-clusters
On-demand and reserved GPU clusters (H100, H200, B200) on Together AI with Kubernetes or Slurm orchestration, shared storage, credential management, and cluster scaling for ML and HPC jobs. Reach for it when the user needs multi-node compute or infrastructure control rather than a managed model endpoint.
What this skill does
# Together GPU Clusters ## Overview Use Together AI GPU clusters when the user needs infrastructure control instead of a managed inference product. Typical fits: - distributed training - multi-node inference - HPC or Slurm workloads - custom Kubernetes jobs - attached shared storage and cluster lifecycle management ## When This Skill Wins - Provision a cluster and manage it over time - Choose between on-demand and reserved capacity - Choose Kubernetes or Slurm as the orchestration layer - Manage shared volumes and credentials - Scale up, scale down, or troubleshoot node health ## Hand Off To Another Skill - Use `together-dedicated-endpoints` for managed single-model hosting - Use `together-dedicated-containers` for containerized inference without owning the full cluster - Use `together-sandboxes` for short-lived remote Python execution - Use `together-fine-tuning` for managed training jobs instead of raw cluster operations ## Quick Routing - **Cluster creation, scaling, credentials, deletion** - Start with [scripts/manage_cluster.py](scripts/manage_cluster.py) or [scripts/manage_cluster.ts](scripts/manage_cluster.ts) - Read [references/api-reference.md](references/api-reference.md) - **Shared storage lifecycle** - Use [scripts/manage_storage.py](scripts/manage_storage.py) - Read [references/api-reference.md](references/api-reference.md) - **Kubernetes vs Slurm operations** - Read [references/cluster-management.md](references/cluster-management.md) - **Troubleshooting node health, PVCs, or scheduling** - Read [references/cluster-management.md](references/cluster-management.md) - **tcloud CLI workflows** - Read [references/tcloud-cli.md](references/tcloud-cli.md) ## Workflow 1. Decide whether the workload really needs cluster-level control. 2. Choose on-demand vs reserved billing based on run duration and baseline utilization. 3. Choose Kubernetes vs Slurm based on orchestration requirements and team tooling. 4. Select region, GPU type, driver version, and shared storage plan. 5. Provision first, then layer in access credentials, workload deployment, scaling, and health checks. ## High-Signal Rules - Python scripts require the Together v2 SDK (`together>=2.0.0`). If the user is on an older version, they must upgrade first: `uv pip install --upgrade "together>=2.0.0"`. - Prefer managed products unless the user explicitly needs raw infrastructure control. - Treat storage lifecycle separately from cluster lifecycle; volumes can outlive clusters. - When creating a cluster with new shared storage, prefer inline `shared_volume` over creating a volume separately and attaching via `volume_id`. Separately created volumes may land in a different datacenter partition than the cluster, causing a "does not exist in the datacenter" error even when the volume shows as available. - GPU stock-outs (409 "Out of stock") are common. Always call `list_regions()` first and be prepared to try multiple regions. - The API requires `cuda_version` and `nvidia_driver_version` as separate fields in addition to the combined `driver_version` string. Pass them via `extra_body` in the Python SDK. - Credentials retrieval is part of provisioning. Do not stop at cluster creation if the user needs to run workloads immediately. - Slurm and Kubernetes operational patterns differ materially; read the cluster-management reference before improvising. - For repeated cluster operations, start from the scripts instead of rebuilding request shapes. - Slurm startup scripts (worker/login init, worker/controller prolog and epilog, extra `slurm.conf`) are **Slinky v1.0 only**. A non-zero exit from a worker prolog or epilog drains the node, and calling Slurm commands (`squeue`, `scontrol`, `sacctmgr`) inside any prolog/epilog can deadlock the scheduler. ## Resource Map - **Cluster API reference**: [references/api-reference.md](references/api-reference.md) - **Operational guide**: [references/cluster-management.md](references/cluster-management.md) - **Operational troubleshooting**: [references/cluster-management.md](references/cluster-management.md) - **CLI guide**: [references/tcloud-cli.md](references/tcloud-cli.md) - **Python cluster management**: [scripts/manage_cluster.py](scripts/manage_cluster.py) - **TypeScript cluster management**: [scripts/manage_cluster.ts](scripts/manage_cluster.ts) - **Python storage management**: [scripts/manage_storage.py](scripts/manage_storage.py) ## Official Docs - [GPU Clusters Overview](https://docs.together.ai/docs/gpu-clusters-overview) - [GPU Clusters Quickstart](https://docs.together.ai/docs/gpu-clusters-quickstart) - [Clusters API](https://docs.together.ai/reference/clusters-create) - [Slurm Startup Scripts](https://docs.together.ai/docs/slurm-startup-scripts) - [Instant GPU Clusters](https://www.together.ai/instant-gpu-clusters)
Related in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.