coreweave-install-auth
Install and configure CoreWeave SDK/CLI authentication. Use when setting up a new CoreWeave integration, configuring API keys, or initializing CoreWeave in your project. Trigger with phrases like "install coreweave", "setup coreweave", "coreweave auth", "configure coreweave API key".
claude-code
Allowed Tools
ReadWriteEditBash(npm:*)Bash(pip:*)Grep
Provided by Plugin
coreweave-pack
Claude Code skill pack for CoreWeave (24 skills)
Installation
This skill is included in the coreweave-pack plugin:
/plugin install coreweave-pack@claude-code-plugins-plus
Click to copy
Instructions
CoreWeave Install & Auth
Overview
Set up CoreWeave SDK/CLI and configure authentication credentials.
Prerequisites
- Node.js 18+ or Python 3.10+
- Package manager (npm, pnpm, or pip)
- CoreWeave account with API access
- API key from CoreWeave dashboard
Instructions
Step 1: Install SDK
# Node.js
npm install @coreweave/sdk
# Python
pip install coreweave
Step 2: Configure Authentication
# Set environment variable
export COREWEAVE_API_KEY="your-api-key"
# Or create .env file
echo 'COREWEAVE_API_KEY=your-api-key' >> .env
Step 3: Verify Connection
// Test connection code here
Output
- Installed SDK package in node_modules or site-packages
- Environment variable or .env file with API key
- Successful connection verification output
Error Handling
| Error | Cause | Solution |
|---|---|---|
| Invalid API Key | Incorrect or expired key | Verify key in CoreWeave dashboard |
| Rate Limited | Exceeded quota | Check quota at https://docs.coreweave.com |
| Network Error | Firewall blocking | Ensure outbound HTTPS allowed |
| Module Not Found | Installation failed | Run npm install or pip install again |
Examples
TypeScript Setup
import { CoreWeaveClient } from '@coreweave/sdk';
const client = new CoreWeaveClient({
apiKey: process.env.COREWEAVE_API_KEY,
});
Python Setup
from coreweave import CoreWeaveClient
client = CoreWeaveClient(
api_key=os.environ.get('COREWEAVE_API_KEY')
)
Resources
Next Steps
After successful auth, proceed to coreweave-hello-world for your first API call.