rsun-deploy

Deploys Ronsun projects to Cloudflare Workers, Cloudflare Pages, or Vercel with pre-flight checks.

Updated May 20, 2026
One-click install
npx skills add https://github.com/EZoneLai/claude-plugin-ronsunai-os --skill rsun-deploy-ezonelai
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: rsun-deploy
Source: https://github.com/EZoneLai/claude-plugin-ronsunai-os/tree/main/commands/rsun-deploy
Command: npx skills add https://github.com/EZoneLai/claude-plugin-ronsunai-os --skill rsun-deploy-ezonelai

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Deploying multiple projects across different platforms (Cloudflare Workers, Cloudflare Pages, Vercel) requires remembering which command and platform each project uses, and skipping build or safety checks can push broken code to production. ## Core Features & Use Cases - Automatic project detection: Infers the deployment target from the argument or current working directory and selects the correct command. - Platform routing: Uses npx wrangler deploy for rsun-worker, npx wrangler pages deploy for TRACKER on Cloudflare Pages, and git push origin main for Vercel-hosted Next.js projects. - Pre-flight checks: Verifies git status, recent commits, and a passing npm run build for Next.js projects, and confirms the parsePrefix function exists before deploying rsun-worker. - Use Case: You finish a feature in the ceyan-web repo and say "deploy" — the skill runs the build check, pushes to main, and lets Vercel handle the release. ## Quick Start Ask the assistant to deploy the current project, for example by saying "deploy the dashboard" or just "deploy" from within a project directory.

Frequently Asked Questions about rsun-deploy

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I deploy a Cloudflare Worker with wrangler?

Run npx wrangler deploy from the worker project directory to publish it directly to Cloudflare. This skill also verifies the parsePrefix function exists in src/index.js as a safety check before deploying rsun-worker.

How do I deploy a Next.js app to Vercel from the command line?

Push your commits to the main branch with git push origin main and Vercel automatically triggers a production deployment. This skill runs npm run build first to confirm the project compiles before pushing.

What is the difference between wrangler deploy and wrangler pages deploy?

wrangler deploy publishes a Cloudflare Worker, while wrangler pages deploy uploads a static site to Cloudflare Pages with a project name flag. TRACKER uses wrangler pages deploy with --project-name rsun-tracker, not the worker command.

Can I skip the build check before deploying?

The build check runs by default for Next.js projects and should not be skipped unless the user explicitly says to skip the build. Force pushes with git push --force are never allowed.

What happens if the deployment target cannot be determined?

The skill infers the target from the provided argument or the current working directory. If the target is still unclear, it asks the user instead of guessing which project to deploy.