npx claudepluginhub vm0-ai/team-skills --plugin dev-serverThis skill uses the workspace's default tool permissions.
Authenticate with local development server and get CLI token.
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
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