cloudrun-development

Deploy and manage persistent backend services on Tencent CloudBase Run.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/mrpersimmon/xiao-han-studio --skill cloudrun-development-mrpersimmon
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: cloudrun-development
Source: https://github.com/mrpersimmon/xiao-han-studio/tree/main/.agents/skills/cloudbase/references/cloudrun-development
Command: npx skills add https://github.com/mrpersimmon/xiao-han-studio --skill cloudrun-development-mrpersimmon

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

Cloudrun-development helps you deploy and operate backend services on Tencent CloudBase Run reliably, especially when you need a long-lived service endpoint rather than short-lived functions.

Core Features & Use Cases

  • Service deployment for long connections: Supports WebSocket/SSE and other streaming or persistent service patterns.
  • Mode selection (Function vs Container): Guides you to choose the correct deployment model, including when a Dockerfile or custom runtime is required.
  • Agent service support: Provides the deployment workflow for running an AI agent as a CloudBase Run service.

Quick Start

Deploy a CloudBase Run backend in Function mode or Container mode by stating the service name, the absolute target path of your project, and whether you want PUBLIC, VPC-only, or mini-program internal access.

Frequently Asked Questions about cloudrun-development

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

FAQPage Schema
How do I deploy WebSocket or SSE backend services on CloudBase Run?

To deploy WebSocket or SSE backend services on CloudBase Run, you need to configure a long-lived service endpoint with explicit PORT listening. This Skill guides you through the initialization and deployment sequencing for persistent streaming patterns.

When should I use Function mode versus Container mode for CloudBase Run deployment?

Choose Container mode for CloudBase Run deployment when your project requires a custom runtime or a Dockerfile, and use Function mode for standard serverless execution. This Skill helps you select the correct model based on your runtime requirements.

Do I need a Dockerfile to deploy an AI agent service on CloudBase Run?

You need a Dockerfile to deploy an AI agent service on CloudBase Run if you use Container mode for custom runtime environments. This Skill provides the deployment workflow for running agents as persistent Run services across both modes.

What's the best way to configure access control for a CloudBase Run backend?

The best way to configure access control for a CloudBase Run backend is to specify PUBLIC, VPC-only, or mini-program internal access during initialization. This Skill sets the correct routing and access configuration based on your stated service requirements.

Why does my CloudBase Run service require explicit PORT listening and stateless design?

CloudBase Run services require explicit PORT listening and stateless design to ensure safe deployment sequencing and reliable scaling. This Skill enforces these requirements to properly manage persistent backend services without runtime conflicts.

How do I inspect and locally run a CloudBase Run service in Function mode?

To inspect and locally run a CloudBase Run service in Function mode, you use the local run and inspection workflow provided. This Skill supports initialization, local execution, and validation before you proceed to full deployment.