Help us improve
Share bugs, ideas, or general feedback.
npx claudepluginhub vm0-ai/team-skills --plugin dev-serverHow this skill is triggered — by the user, by Claude, or both
Slash command
/dev-server:dev-authThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Authenticate with local development server and get CLI token.
Sets up Clerk local dev workflow: dev instance config, test user seeding, hot reload in Next.js, and npm scripts for HTTPS/tunneling. Use for local auth testing.
Installs Vercel CLI, authenticates via interactive login or token, links local projects, verifies API access, and pulls env vars for Vercel setup.
Authenticates users with Zeabur via browser-based login or token-based login for CI/CD. Checks auth status and logs out.
Share bugs, ideas, or general feedback.
Authenticate with local development server and get CLI token.
/dev-start first)Check if dev server is accessible via the Caddy reverse proxy:
if curl -k -s --connect-timeout 3 https://www.vm7.ai:8443/ > /dev/null 2>&1; then
echo "✅ Dev server is accessible at https://www.vm7.ai:8443"
else
echo "❌ Dev server is not accessible"
echo "Please run /start first or check if server is running"
exit 1
fi
Check and ensure all required environment variables are set in turbo/apps/web/.env.local:
PROJECT_ROOT=$(git rev-parse --show-toplevel)
ENV_FILE="$PROJECT_ROOT/turbo/apps/web/.env.local"
# Check NEXT_PUBLIC_APP_URL
if ! grep -q "^NEXT_PUBLIC_APP_URL=" "$ENV_FILE" 2>/dev/null; then
echo "⚠️ NEXT_PUBLIC_APP_URL not found, adding it..."
echo "NEXT_PUBLIC_APP_URL=http://localhost:3000" >> "$ENV_FILE"
echo "✅ Added NEXT_PUBLIC_APP_URL to .env.local"
echo "⚠️ Note: Dev server needs restart to pick up this change"
fi
# Check NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY
if ! grep -q "^NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=" "$ENV_FILE" 2>/dev/null; then
echo "❌ NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY not found in .env.local"
echo "Please run: script/sync-env.sh"
exit 1
fi
# Check CLERK_SECRET_KEY
if ! grep -q "^CLERK_SECRET_KEY=" "$ENV_FILE" 2>/dev/null; then
echo "❌ CLERK_SECRET_KEY not found in .env.local"
echo "Please run: script/sync-env.sh"
exit 1
fi
echo "✅ All required environment variables are present"
Build and install the CLI globally:
PROJECT_ROOT=$(git rev-parse --show-toplevel)
cd "$PROJECT_ROOT/turbo/apps/cli" && pnpm build && pnpm link --global
PROJECT_ROOT=$(git rev-parse --show-toplevel)
cd "$PROJECT_ROOT" && npx tsx e2e/cli-auth-automation.ts $(printenv VM0_API_URL)
This script:
vm0 auth login with the current VM0_API_URL$(hostname)+clerk_test@vm0.ai~/.vm0/config.jsoncat ~/.vm0/config.json
✅ CLI authentication successful!
Auth token saved to: ~/.vm0/config.json
You can now use the CLI with local dev server:
- vm0 auth status
- vm0 project list
If authentication fails:
/dev-logsturbo/apps/web/.env.local