webflow-install-auth
Install and configure Webflow SDK/CLI authentication. Use when setting up a new Webflow integration, configuring API keys, or initializing Webflow in your project. Trigger with phrases like "install webflow", "setup webflow", "webflow auth", "configure webflow API key".
claude-code
Allowed Tools
ReadWriteEditBash(npm:*)Bash(pip:*)Grep
Provided by Plugin
webflow-pack
Claude Code skill pack for Webflow (24 skills)
Installation
This skill is included in the webflow-pack plugin:
/plugin install webflow-pack@claude-code-plugins-plus
Click to copy
Instructions
Webflow Install & Auth
Overview
Set up Webflow SDK/CLI and configure authentication credentials.
Prerequisites
- Node.js 18+ or Python 3.10+
- Package manager (npm, pnpm, or pip)
- Webflow account with API access
- API key from Webflow dashboard
Instructions
Step 1: Install SDK
# Node.js
npm install @webflow/sdk
# Python
pip install webflow
Step 2: Configure Authentication
# Set environment variable
export WEBFLOW_API_KEY="your-api-key"
# Or create .env file
echo 'WEBFLOW_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 Webflow dashboard |
| Rate Limited | Exceeded quota | Check quota at https://docs.webflow.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 { WebflowClient } from '@webflow/sdk';
const client = new WebflowClient({
apiKey: process.env.WEBFLOW_API_KEY,
});
Python Setup
from webflow import WebflowClient
client = WebflowClient(
api_key=os.environ.get('WEBFLOW_API_KEY')
)
Resources
Next Steps
After successful auth, proceed to webflow-hello-world for your first API call.