What problem does it solve? Choosing the wrong CloudBase function model or misconfiguring deployment leads to broken runtimes, rejected requests, and wasted debugging time. This Skill guides you through creating, deploying, and operating CloudBase Event Functions and HTTP Functions with the correct code shape, packaging, and access configuration. ## Core Features & Use Cases - Function type routing: Decide between Event Functions (exports.main(event, context)) for SDK/timer triggers and HTTP Functions (web server on port 9000 with scf_bootstrap) for REST APIs, SSE, and WebSocket services. - Deployment via MCP tools: Create functions, update code, and manage configuration through manageFunctions and queryFunctions, with legacy tool-name translation and documented callCloudApi fallbacks. - Operations support: Query function logs, configure gateway access, merge environment variables safely, and set function security rules for public endpoints. - Use Case: You need a public REST endpoint for a mini program. The Skill walks you through writing a Node.js HTTP Function with the native http module, adding a matching scf_bootstrap, deploying with type: "HTTP", and updating the security rule so callers are not rejected with EXCEED_AUTHORITY. ## Quick Start Ask the agent to create and deploy a CloudBase HTTP Function named hello-http that listens on port 9000 and returns a JSON greeting.