cloud-functions

Automate CloudBase cloud function development, deployment, and management across runtimes.

Updated Mar 10, 2026
One-click install
npx skills add https://github.com/xongtao/openclaw-backup --skill cloud-functions-xongtao
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: cloud-functions
Source: https://github.com/xongtao/openclaw-backup/tree/main/skills/cloudbase/references/cloud-functions
Command: npx skills add https://github.com/xongtao/openclaw-backup --skill cloud-functions-xongtao

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

CloudBase cloud functions provide a serverless platform to run code in response to events or HTTP requests, removing operational overhead for scaling and maintenance. This guide describes how to develop, deploy, log, invoke, and configure cloud functions with both Event and HTTP types, including runtime selection and scf_bootstrap usage.

Core Features & Use Cases

  • Event Functions (Node.js) and HTTP Functions (multi-language) development, deployment, and management
  • Runtime selection, deployment, logging, invocation, scf_bootstrap, SSE, WebSocket, and HTTP access configuration
  • Use cases include API backends, event-driven processing, and streaming or long-running HTTP services

Quick Start

Follow this guide to create, deploy, and monitor a CloudBase cloud function.

Frequently Asked Questions about cloud-functions

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

FAQPage Schema
How do I deploy CloudBase cloud functions using different runtimes?

To deploy CloudBase cloud functions, select from Node.js, Python, Go, or Java runtimes. Use MCP tools like manageFunctions to execute deployment workflows, and configure scf_bootstrap for HTTP Functions across these environments.

What is the difference between Event Functions and HTTP Functions in CloudBase?

Event Functions process asynchronous triggers using Node.js, while HTTP Functions handle direct HTTP requests across multiple runtimes. HTTP Functions also support SSE, WebSocket, and require scf_bootstrap for multi-language configuration.

Can I use WebSocket and SSE with CloudBase HTTP functions?

Yes, CloudBase HTTP functions fully support WebSocket and Server-Sent Events (SSE). You can build streaming or long-running HTTP services by configuring these protocols within your HTTP function's deployment setup.

How do I monitor logs and query deployed cloud functions?

Monitor logs and query deployed cloud functions using the queryFunctions MCP tool. This provides visibility into execution history and runtime output for both Event and HTTP functions across your selected runtimes.

Do I need scf_bootstrap to configure HTTP access for cloud functions?

Yes, scf_bootstrap is required for HTTP functions to configure HTTP access and define startup commands. It ensures the CloudBase platform correctly initializes multi-language runtimes like Go, Python, and Java for HTTP requests.

What are the limitations when using CloudBase serverless functions for event-driven processing?

Event Functions are limited to Node.js, while HTTP Functions support multi-language runtimes but require scf_bootstrap configuration. Serverless functions remove scaling overhead but necessitate careful runtime selection and HTTP access setup.