Standalone Install Note
If this environment only installed the current skill, start from the CloudBase main entry and use the published cloudbase/references/... paths for sibling skills.
- CloudBase main entry:
https://cnb.cool/tencent/cloud/cloudbase/cloudbase-skills/-/git/raw/main/skills/cloudbase/SKILL.md
- Current skill raw source:
https://cnb.cool/tencent/cloud/cloudbase/cloudbase-skills/-/git/raw/main/skills/cloudbase/references/cloudbase-platform/SKILL.md
Keep local references/... paths for files that ship with the current skill directory. When this file points to a sibling skill such as auth-tool or web-development, use the standalone fallback URL shown next to that reference.
Cross-cutting protocols (always load these when doing code changes or deployments in standalone mode):
- Change Safety Protocol:
https://cnb.cool/tencent/cloud/cloudbase/cloudbase-skills/-/git/raw/main/skills/cloudbase/references/cloudbase-platform/references/protocols/change-safety-protocol.md
- Deployment Gate:
https://cnb.cool/tencent/cloud/cloudbase/cloudbase-skills/-/git/raw/main/skills/cloudbase/references/cloudbase-platform/references/protocols/deployment-gate.md
Activation Contract
Use this first when
- The user asks which CloudBase capability, service, or tool to use, or needs a high-level understanding of hosting, storage, authentication, cloud functions, or database options.
- The task is about console navigation, cross-platform differences, permission models, or platform-level best practices before implementation.
Read before writing code if
- It is still unclear whether the task belongs to Web, mini program, cloud functions, storage, MySQL / NoSQL, or auth.
- The response needs platform selection, conceptual explanation, or control-plane navigation more than direct implementation steps.
Then also read
- Web app implementation ->
../web-development/SKILL.md (standalone fallback: https://cnb.cool/tencent/cloud/cloudbase/cloudbase-skills/-/git/raw/main/skills/cloudbase/references/web-development/SKILL.md)
- Web auth and provider setup ->
../auth-tool/SKILL.md (standalone fallback: https://cnb.cool/tencent/cloud/cloudbase/cloudbase-skills/-/git/raw/main/skills/cloudbase/references/auth-tool/SKILL.md), ../auth-web/SKILL.md (standalone fallback: https://cnb.cool/tencent/cloud/cloudbase/cloudbase-skills/-/git/raw/main/skills/cloudbase/references/auth-web/SKILL.md)
- Mini program development ->
../miniprogram-development/SKILL.md (standalone fallback: https://cnb.cool/tencent/cloud/cloudbase/cloudbase-skills/-/git/raw/main/skills/cloudbase/references/miniprogram-development/SKILL.md)
- WeChat Pay, Official Account OAuth, JSAPI Pay, or Native QR-code Pay through CloudBase Integration Center ->
../cloudbase-wechat-integration/SKILL.md (standalone fallback: https://cnb.cool/tencent/cloud/cloudbase/cloudbase-skills/-/git/raw/main/skills/cloudbase/references/cloudbase-wechat-integration/SKILL.md; official docs: https://docs.cloudbase.net/integration/introduce/index.md)
- Cloud functions ->
../cloud-functions/SKILL.md (standalone fallback: https://cnb.cool/tencent/cloud/cloudbase/cloudbase-skills/-/git/raw/main/skills/cloudbase/references/cloud-functions/SKILL.md)
- Official HTTP API clients ->
../http-api/SKILL.md (standalone fallback: https://cnb.cool/tencent/cloud/cloudbase/cloudbase-skills/-/git/raw/main/skills/cloudbase/references/http-api/SKILL.md)
- Document database ->
../no-sql-web-sdk/SKILL.md (standalone fallback: https://cnb.cool/tencent/cloud/cloudbase/cloudbase-skills/-/git/raw/main/skills/cloudbase/references/no-sql-web-sdk/SKILL.md) or ../no-sql-wx-mp-sdk/SKILL.md (standalone fallback: https://cnb.cool/tencent/cloud/cloudbase/cloudbase-skills/-/git/raw/main/skills/cloudbase/references/no-sql-wx-mp-sdk/SKILL.md)
- CloudBase PostgreSQL / PG ->
../postgresql-development/SKILL.md (standalone fallback: https://cnb.cool/tencent/cloud/cloudbase/cloudbase-skills/-/git/raw/main/skills/cloudbase/references/postgresql-development/SKILL.md)
- MySQL relational database / data modeling ->
../relational-database-tool/SKILL.md (standalone fallback: https://cnb.cool/tencent/cloud/cloudbase/cloudbase-skills/-/git/raw/main/skills/cloudbase/references/relational-database-tool/SKILL.md) or ../data-model-creation/SKILL.md (standalone fallback: https://cnb.cool/tencent/cloud/cloudbase/cloudbase-skills/-/git/raw/main/skills/cloudbase/references/data-model-creation/SKILL.md)
- Cloud storage ->
../cloud-storage-web/SKILL.md (standalone fallback: https://cnb.cool/tencent/cloud/cloudbase/cloudbase-skills/-/git/raw/main/skills/cloudbase/references/cloud-storage-web/SKILL.md)
Do NOT use for
- Direct implementation of web pages, auth flows, functions, or database operations when a more specific skill already fits.
- Low-level API parameter references or SDK recipes that belong in specialized skills.
Common mistakes / gotchas
- Treating this general skill as the default entry point for all CloudBase development.
- Staying here after the correct implementation skill is already clear.
- Mixing platform overview with platform-specific API shapes or SDK details.
- Using this overview skill as a detour in an existing application where the active auth, storage, and data files are already obvious.
- Making code or configuration changes without first following the Change Safety Protocol (
cloudbase-platform/references/protocols/change-safety-protocol.md).
- Starting any deployment, publish, custom domain, or CloudRun work without first completing the checks in
cloudbase-platform/references/protocols/deployment-gate.md.
- Confusing security domains with custom domains: These are two completely different tools for different purposes:
envDomainManagement (action: create/delete) = Security domains (安全域名) for CORS/request source validation - used for browser upload whitelisting. Does NOT accept certificateId.
manageGateway(action="bindCustomDomain") = Custom domains (自定义域名) for public HTTPS access with SSL certificates - requires domain and certificateId parameters.
When to use this skill
Use this skill for CloudBase platform knowledge when you need to:
- Understand CloudBase storage and hosting concepts
- Compare platform capabilities before implementation
- Understand cross-platform auth differences (Web vs Mini Program)
- Understand database permissions and access control
- Access CloudBase console management pages
This skill provides foundational knowledge that applies to all CloudBase projects, regardless of whether they are Web, Mini Program, or backend services.
How to use this skill (for a coding agent)
Understand platform differences
- Web and Mini Program have completely different authentication approaches
- Must strictly distinguish between platforms
- Never mix authentication methods across platforms
- If the workspace is already an application with TODOs or prebuilt handlers, do not stay in platform overview mode. Move quickly to the concrete implementation skill and the existing files that own the flow.
Follow best practices
- Use SDK built-in authentication features (Web)
- Understand natural login-free feature (Mini Program)
- Configure appropriate database permissions
- Use cloud functions for cross-collection operations
Use correct SDKs and APIs
- Different platforms require different SDKs for data models
- MySQL data models must use models SDK, not collection API
- PostgreSQL / CloudBase PG work must route to
postgresql-development; do not reuse NoSQL app.database() / db.collection(...) snippets or MySQL queryMysqlDatabase / manageMysqlDatabase for PG data paths
- Use
envQuery tool to get environment ID
- In an existing Web application with fixed structure, inspect the existing
src/lib/backend.*, src/lib/auth.*, src/lib/*service.*, and bound page handlers before broad concept reading.
Use the canonical CloudBase MCP setup from the main cloudbase guideline
- This platform overview intentionally does not duplicate the full MCP / mcporter config block
- For the canonical config snippet, CLI commands, and auth examples, read the main
cloudbase guideline first
- Keep the same core rules here: use MCP first, inspect tool schemas before execution, and do not hard-code Secret ID / Secret Key / Env ID in config
- Keep the auth split explicit: management-side login uses
auth, while application-side auth configuration uses queryAppAuth / manageAppAuth
CloudBase Platform Knowledge
Domain Management Tools: Clear Distinction
When working with domain-related tasks, use the correct tool based on the requirement:
| Requirement |
Tool |
Parameters |
Purpose |
| Security Domain (安全域名) |
envDomainManagement |
action, domains (array of host:port strings) |
CORS/request source validation for browser uploads. No certificate involved. |
| Custom Domain (自定义域名) |
manageGateway(action="bindCustomDomain") |
domain (string), certificateId (string) |
Public HTTPS access with SSL certificate. Requires certId from SSL console. |
| Delete Custom Domain |
manageGateway(action="deleteCustomDomain") |
domain (string) |
Remove custom domain binding. |
Key indicators for choosing the right tool:
- Task mentions "certificate ID" or "SSL" → Use
manageGateway(action="bindCustomDomain")
- Task mentions "浏览器上传" or "CORS" or "安全域名" → Use
envDomainManagement
- Task mentions "public access" or "HTTPS" with domain → Use
manageGateway
Recording Operation Results
When a task explicitly requires recording operation steps or results to a file (e.g., RESULT.json):
- Perform the tool calls first to get actual results
- Collect all operation steps with their success/failure status
- Write the complete record to the specified file in the required format
- Include both successful operations and failed attempts with error messages
Example structure for operation recording:
{
"steps": [
{"action": "listDomains", "success": true, "message": "Found 3 domains"},
{"action": "bindDomain", "success": false, "message": "Certificate not found"}
],
"summary": {
"totalAttempted": 2,
"succeeded": 1,
"failed": 1
}
}
Storage and Hosting
Static Hosting vs Cloud Storage:
- CloudBase static hosting and cloud storage are two different buckets
- Generally, publicly accessible files can be stored in static hosting, which provides a public web address
- Static hosting supports custom domain configuration (requires console operation)
- Cloud storage is suitable for files with privacy requirements, can get temporary access addresses via temporary file URLs
- If the task needs COS SDK polling, file metadata lookup, or temporary URLs for an uploaded object, use cloud storage tools (
manageStorage / queryStorage), not manageHosting(action="upload")
Static Hosting Domain:
- CloudBase static hosting domain and website document config can be obtained via
queryHosting(action="websiteConfig")
- Combine with static hosting file paths to construct final access addresses
- Important: If access address is a directory, it must end with
/
Cloud Storage Public URL:
- CRITICAL:
manageStorage(action=upload) and queryStorage(action=url) return temporaryUrl which is a temporary signed URL that expires (default 1 hour). Do NOT use this as a permanent public URL.
- To get the permanent public access URL for a cloud storage object:
- Call
envQuery(action=info) to get environment details
- Extract the storage CDN domain from
EnvInfo.Storages[0].CdnDomain (e.g., your-env-id.tcb.qcloud.la)
- Construct the public URL:
https://{CdnDomain}/{cloudPath}
- Example: If
CdnDomain is env-xxx.tcb.qcloud.la and cloudPath is uploads/avatar.jpg, the public URL is https://env-xxx.tcb.qcloud.la/uploads/avatar.jpg
- Note: The public URL is accessible only if the storage bucket ACL allows public read (default is
PRIVATE which requires signed URLs)
Environment and Authentication
SDK Initialization:
- CloudBase SDK initialization requires environment ID
- Can query environment ID via
envQuery tool
- If the user only provides an environment alias, nickname, or other short form, resolve it with
envQuery(action="list", alias=..., aliasExact=true) first and use the returned full EnvId
- Do not pass alias-like short forms directly into SDK init,
auth.set_env, console URLs, or generated config files
- For Web, always initialize synchronously:
import cloudbase from "@cloudbase/js-sdk"; const app = cloudbase.init({ env: "your-full-env-id" });
- Do not use dynamic imports like
import("@cloudbase/js-sdk") or async wrappers such as initCloudBase() with internal initPromise
- Then proceed with login using a verified method (username/password, phone, email, or WeChat)
Environment Management (via manageEnv):
The manageEnv tool provides full lifecycle management for CloudBase environments.
| Action |
Description |
Key Parameters |
listPackages |
Query available plans |
(none) |
create |
Create new environment (needs confirm) |
alias, packageId, resources, region, duration |
modifyPlan |
Change plan (upgrade/downgrade, needs confirm) |
envId, packageId |
renew |
Renew environment (needs confirm) |
envId, duration |
Creating an environment with specific resources:
manageEnv(action="create", alias="my-env", packageId="baas_personal",
resources=["flexdb","storage","function","postgresql"], confirm="yes")
resources (optional, create only): controls which CloudBase capabilities to enable:
flexdb — Document database (NoSQL)
storage — Cloud Storage
function — Cloud Functions
postgresql — PostgreSQL relational database (PG mode)
- Defaults to all enabled if omitted.
- ⚠️ All paid operations (create / modifyPlan / renew) require
confirm="yes".
Querying available packages before creating:
manageEnv(action="listPackages")
Changing plan (e.g. personal → standard):
manageEnv(action="modifyPlan", envId="your-env-id", packageId="baas_pf_standard", confirm="yes")
Renewing an environment:
manageEnv(action="renew", envId="your-env-id", duration=1, confirm="yes")
Authentication Best Practices
Important: Authentication methods for different platforms are completely different, must strictly distinguish!
Web Authentication
- Must use SDK built-in authentication: CloudBase Web SDK provides complete authentication features
- Recommended method: SMS login with
auth.getVerification(), for detailed, refer to web auth related docs
- Forbidden behavior: Do not use cloud functions to implement login authentication logic
- Session management: For route guards and login proof, use
auth.getSession() and require data.session; do not use deprecated getLoginState() or auth.getUser() / auth.getCurrentUser() as proof of real login.
- Provider and login-method setup: Use
queryAppAuth / manageAppAuth, not the MCP auth tool
- Anonymous login is disabled by default. The SDK initialized with
accessKey automatically creates an anonymous session. If the app uses AuthGuard or RLS for access control, ensure is_anonymous checks are in place when anonymous access is allowed.
- ⚠️ PG RLS: Use
auth.uid(), NOT current_user. When writing RLS policies for CloudBase PostgreSQL, the user identity must use auth.uid() (returns the JWT sub / actual user ID). Do NOT use current_user or current_setting(...) — these PostgreSQL built-in functions return the database role name (e.g. authenticated), not the CloudBase auth user ID. CloudBase PG provides four auth helper functions: auth.uid(), auth.role(), auth.email(), auth.jwt(). Verify availability with SELECT proname FROM pg_proc WHERE pronamespace = 'auth'::regnamespace.
Mini Program Authentication
- Login-free feature: Mini program CloudBase is naturally login-free, no login flow needed
- User identifier: In cloud functions, get
wxContext.OPENID via wx-server-sdk
- User management: Manage user data in cloud functions based on openid
- Forbidden behavior: Do not generate login pages or login flow code
Cloud Functions
- Node.js Cloud Functions:
- Node.js cloud functions need to include
package.json, declaring required dependencies
- Can use
manageFunctions(action="createFunction") to create functions
- Use
manageFunctions(action="updateFunctionCode") to deploy cloud functions
- Prioritize cloud dependency installation, do not upload node_modules
functionRootPath refers to the parent directory of function directories, e.g., cloudfunctions directory
Database Permissions
⚠️ CRITICAL: Always configure permissions BEFORE writing database operation code!
Permission Model:
- CloudBase database access has permissions
- Default basic permissions include:
- READONLY: Everyone can read, only creator/admin can write
- PRIVATE: Only creator/admin can read/write
- ADMINWRITE: Everyone can read, only admin can write (⚠️ NOT for Web SDK write!)
- ADMINONLY: Only admin can read/write
- CUSTOM: Fine-grained control with custom rules
Platform Compatibility (CRITICAL):
- ⚠️ Web SDK cannot use
ADMINWRITE or ADMINONLY for write operations
- ✅ For user-generated content in Web apps, use CUSTOM rules
- ✅ For admin-managed data (products, settings), use READONLY
- ✅ Cloud functions have full access regardless of permission type
Configuration Workflow:
Create collection → Configure security rules → Write code → Test
- Use
managePermissions(action="updateResourcePermission") to configure resource permissions
- If permissions were just changed, allow a short propagation window (typically 2-5 minutes) before retesting, but do not assume every failure is cache. Re-check the actual rule shape and active client write pattern first.
- See
no-sql-web-sdk/security-rules.md for detailed resourceType="noSqlDatabase" examples only; do not treat doc._openid, auth.openid, query-subset validation, or create / update / delete JSON templates as generic rules for functions, storage, or SQL tables
- Official references:
- General security rules overview:
https://cloud.tencent.com/document/product/876/41802
- NoSQL database security rules:
https://docs.cloudbase.net/database/security-rules
- Cloud function security rules:
https://docs.cloudbase.net/cloud-function/security-rules
- Storage security rules:
https://docs.cloudbase.net/storage/security-rules
Compatibility note:
- Canonical plugin name:
permissions
- Legacy plugin aliases
security-rule, security-rules, secret-rule, secret-rules, and access-control still resolve to the permissions plugin
- Legacy tools
readSecurityRule / writeSecurityRule are removed; prefer queryPermissions / managePermissions
Common Scenarios:
- E-commerce products:
READONLY (admin manages via cloud functions)
- Shopping carts:
CUSTOM with auth.uid check (users manage their own)
- Orders:
CUSTOM with ownership validation
- System logs:
PRIVATE or ADMINONLY
Cross-Collection Operations:
- If user has no special requirements, operations involving cross-database collections must be implemented via cloud functions
Role Management (MCP)
CloudBase MCP provides role management capabilities through the queryPermissions and managePermissions tools. These are equivalent to the CLI tcb role commands.
⚠️ CRITICAL: Role policies and resource permissions are two independent systems with NO automatic synchronization.
- Resource permissions (security rules) control access to specific resources (tables, collections, functions, storage)
- Roles (identity dimension) control policy bundles and member assignments
Available Actions
Query Operations (via queryPermissions):
| Action |
Description |
listRoles |
List all roles (system and custom) |
getRole |
Get detailed role information by roleId/roleIdentity/roleName |
Management Operations (via managePermissions):
| Action |
Description |
createRole |
Create a new custom role |
updateRole |
Update an existing role (add/remove policies or members) |
deleteRoles |
Delete one or more custom roles |
addRoleMembers |
Add members to a role |
removeRoleMembers |
Remove members from a role |
addRolePolicies |
Add policies to a role |
removeRolePolicies |
Remove policies from a role |
Usage Examples
List all roles:
queryPermissions(action="listRoles")
Get specific role details:
queryPermissions(action="getRole", roleId="role-xxx")
# or by identity
queryPermissions(action="getRole", roleIdentity="dev_role")
# or by name
queryPermissions(action="getRole", roleName="Developer")
Delete a custom role:
managePermissions(action="deleteRoles", roleIds=["role-xxx"])
Create a custom role:
managePermissions(action="createRole", roleName="Developer", roleIdentity="developer", policies=["FunctionsAccess"], memberUids=["user-uid-1"])
Update a role (add policies):
managePermissions(action="updateRole", roleId="role-xxx", addPolicies=["StoragesAccess"])
⚠️ Note: Only custom roles can be deleted. System roles are read-only.
See also: CLI equivalent commands in cloudbase-cli/references/permission.md
- Cloud Function Optimization:
- If involving cloud functions, while ensuring security, can minimize the number of cloud functions as much as possible
- For example: implement one cloud function for client-side requests, implement one cloud function for data initialization
Data Models
Get Data Model Operation Object:
- Mini Program: Need
@cloudbase/wx-cloud-client-sdk, initialize const client = initHTTPOverCallFunction(wx.cloud), use client.models
- Cloud Function: Need
@cloudbase/node-sdk@3.10+, initialize const app = cloudbase.init({env}), use app.models
- Web: Need
@cloudbase/js-sdk, initialize const app = cloudbase.init({env}), after login use app.models
Data Model Query:
- Can call MCP
manageDataModel tool to:
- Query model list
- Get model detailed information (including Schema fields)
- Get specific models SDK usage documentation
MySQL Data Model Invocation Rules:
- MySQL data models cannot use collection method invocation, must use data model SDK
- Wrong:
db.collection('model_name').get()
- Correct:
app.models.model_name.list({ filter: { where: {} } })
- Use
manageDataModel tool's docs method to get specific SDK usage
Console Management
After creating/deploying resources, provide corresponding console management page links. All console URLs follow the pattern: https://tcb.cloud.tencent.com/dev?envId=${envId}#/{path}.
The CloudBase console is updated frequently. If a live, logged-in console shows a different hash path from this document, prefer the live console path over stale documentation and then update this skill to match.
Core Function Entry Points
Overview (概览): https://tcb.cloud.tencent.com/dev?envId=${envId}#/overview
- Main dashboard showing environment status, resource usage, and quick access to key features
- Displays overview of all CloudBase services and their status
Template Center (模板中心): https://tcb.cloud.tencent.com/dev?envId=${envId}#/cloud-template/market
- Access project templates for React, Vue, Mini Program, UniApp, and backend frameworks
- AI Builder templates for rapid application generation
- Framework templates: React, Vue, Miniapp, UniApp, Gin, Django, Flask, SpringBoot, Express, NestJS, FastAPI
Document Database (文档型数据库): https://tcb.cloud.tencent.com/dev?envId=${envId}#/db/doc
- Manage NoSQL document database collections
- Collection Management:
https://tcb.cloud.tencent.com/dev?envId=${envId}#/db/doc/collection/${collectionName}
- View, edit, and manage collection data
- Configure security rules and permissions
- Data Model Management:
https://tcb.cloud.tencent.com/dev?envId=${envId}#/db/doc/model/${modelName}
- Create and manage data models with relationships
- View model schema and field definitions
MySQL Database (MySQL 数据库): https://tcb.cloud.tencent.com/dev?envId=${envId}#/db/mysql
- Manage MySQL relational database
- Table Management:
https://tcb.cloud.tencent.com/dev?envId=${envId}#/db/mysql/table/default/
- Create, modify, and manage database tables
- Execute SQL queries and manage table structure
- Important: Must enable MySQL database in console before use
Cloud Functions (云函数): https://tcb.cloud.tencent.com/dev?envId=${envId}#/scf
- Manage and deploy Node.js cloud functions
- Function List:
https://tcb.cloud.tencent.com/dev?envId=${envId}#/scf
- Function Detail:
https://tcb.cloud.tencent.com/dev?envId=${envId}#/scf/detail?id=${functionName}&NameSpace=${envId}
- View function code, logs, and configuration
- Manage function triggers and environment variables
- Monitor function invocations and performance
CloudRun (云托管): https://tcb.cloud.tencent.com/dev?envId=${envId}#/platform-run
- Manage containerized backend services
- Deploy services using Function mode or Container mode
- Configure service scaling, access types, and environment variables
- View service logs and monitoring data
Cloud Storage (云存储): https://tcb.cloud.tencent.com/dev?envId=${envId}#/storage
- Manage file storage buckets
- Upload, download, and organize files
- Configure storage permissions and access policies
- Generate temporary access URLs for private files
AI+: https://tcb.cloud.tencent.com/dev?envId=${envId}#/ai
- Access AI capabilities and services
- AI Builder for generating templates and code
- AI image recognition and other AI features
Static Website Hosting (静态网站托管): https://tcb.cloud.tencent.com/dev?envId=${envId}#/static-hosting
- Deploy and manage static websites
- Alternative URL:
https://console.cloud.tencent.com/tcb/hosting
- Configure custom domains and CDN settings
- View deployment history and access logs
Identity Authentication (身份认证): https://tcb.cloud.tencent.com/dev?envId=${envId}#/identity
- Configure authentication methods and user management
- Login Management:
https://tcb.cloud.tencent.com/dev?envId=${envId}#/identity/login-manage
- Enable/disable login methods (SMS, Email, Username/Password, WeChat, Custom Login)
- Configure SMS/Email templates
- Manage security domain whitelist
- Token Management:
https://tcb.cloud.tencent.com/dev?envId=${envId}#/identity/token-management
- Manage API Keys and Publishable Keys
- View and manage access tokens
Weida Low-Code (微搭低代码): https://tcb.cloud.tencent.com/dev?envId=${envId}#/lowcode/apps
- Access Weida low-code development platform
- Build applications using visual drag-and-drop interface
Logs & Monitoring (日志监控): https://tcb.cloud.tencent.com/dev?envId=${envId}#/devops/log
- View logs from cloud functions, CloudRun services, and other resources
- Monitor resource usage, performance metrics, and error rates
- Set up alerts and notifications
Environment Settings (环境配置): https://tcb.cloud.tencent.com/dev?envId=${envId}#/env/http-access
- Configure environment-level settings
- Manage security domains and CORS settings
- Configure environment variables and secrets
- View environment information and resource quotas
URL Construction Guidelines
- Base URL Pattern:
https://tcb.cloud.tencent.com/dev?envId=${envId}#/{path}
- Replace Variables: Always replace
${envId} with the actual environment ID queried via envQuery tool
- Alias Handling: If the conversation only contains an alias or shorthand, first resolve it with
envQuery(action="list", alias=..., aliasExact=true) and use the returned EnvId; if the alias is ambiguous or missing, ask the user to confirm before generating links
- Resource-Specific URLs: For specific resources (collections, functions, models), replace resource name variables with actual values
- Usage: After creating/deploying resources, provide these console links to users for management operations
Quick Reference
When directing users to console pages:
- Use the full URL with environment ID
- Explain what they can do on each page
- Provide context about why they need to access that specific page
- For configuration pages (like login management), guide users through the setup process
1---2name: cloudbase-platform3description: CloudBase platform overview and routing guide. This skill should be used when users need high-level capability selection, platform concepts, console navigation, or cross-platform best practices before choosing a more specific implementation skill.4---5
6## Standalone Install Note
7
8If this environment only installed the current skill, start from the CloudBase main entry and use the published `cloudbase/references/...` paths for sibling skills.
9
10- CloudBase main entry: `https://cnb.cool/tencent/cloud/cloudbase/cloudbase-skills/-/git/raw/main/skills/cloudbase/SKILL.md`
11- Current skill raw source: `https://cnb.cool/tencent/cloud/cloudbase/cloudbase-skills/-/git/raw/main/skills/cloudbase/references/cloudbase-platform/SKILL.md`
12
13Keep local `references/...` paths for files that ship with the current skill directory. When this file points to a sibling skill such as `auth-tool` or `web-development`, use the standalone fallback URL shown next to that reference.
14
15**Cross-cutting protocols** (always load these when doing code changes or deployments in standalone mode):
16- Change Safety Protocol: `https://cnb.cool/tencent/cloud/cloudbase/cloudbase-skills/-/git/raw/main/skills/cloudbase/references/cloudbase-platform/references/protocols/change-safety-protocol.md`
17- Deployment Gate: `https://cnb.cool/tencent/cloud/cloudbase/cloudbase-skills/-/git/raw/main/skills/cloudbase/references/cloudbase-platform/references/protocols/deployment-gate.md`
18
19## Activation Contract
20
21### Use this first when
22
23- The user asks which CloudBase capability, service, or tool to use, or needs a high-level understanding of hosting, storage, authentication, cloud functions, or database options.
24- The task is about console navigation, cross-platform differences, permission models, or platform-level best practices before implementation.
25
26### Read before writing code if
27
28- It is still unclear whether the task belongs to Web, mini program, cloud functions, storage, MySQL / NoSQL, or auth.
29- The response needs platform selection, conceptual explanation, or control-plane navigation more than direct implementation steps.
30
31### Then also read
32
33- Web app implementation -> `../web-development/SKILL.md` (standalone fallback: `https://cnb.cool/tencent/cloud/cloudbase/cloudbase-skills/-/git/raw/main/skills/cloudbase/references/web-development/SKILL.md`)
34- Web auth and provider setup -> `../auth-tool/SKILL.md` (standalone fallback: `https://cnb.cool/tencent/cloud/cloudbase/cloudbase-skills/-/git/raw/main/skills/cloudbase/references/auth-tool/SKILL.md`), `../auth-web/SKILL.md` (standalone fallback: `https://cnb.cool/tencent/cloud/cloudbase/cloudbase-skills/-/git/raw/main/skills/cloudbase/references/auth-web/SKILL.md`)
35- Mini program development -> `../miniprogram-development/SKILL.md` (standalone fallback: `https://cnb.cool/tencent/cloud/cloudbase/cloudbase-skills/-/git/raw/main/skills/cloudbase/references/miniprogram-development/SKILL.md`)
36- WeChat Pay, Official Account OAuth, JSAPI Pay, or Native QR-code Pay through CloudBase Integration Center -> `../cloudbase-wechat-integration/SKILL.md` (standalone fallback: `https://cnb.cool/tencent/cloud/cloudbase/cloudbase-skills/-/git/raw/main/skills/cloudbase/references/cloudbase-wechat-integration/SKILL.md`; official docs: `https://docs.cloudbase.net/integration/introduce/index.md`)
37- Cloud functions -> `../cloud-functions/SKILL.md` (standalone fallback: `https://cnb.cool/tencent/cloud/cloudbase/cloudbase-skills/-/git/raw/main/skills/cloudbase/references/cloud-functions/SKILL.md`)
38- Official HTTP API clients -> `../http-api/SKILL.md` (standalone fallback: `https://cnb.cool/tencent/cloud/cloudbase/cloudbase-skills/-/git/raw/main/skills/cloudbase/references/http-api/SKILL.md`)
39- Document database -> `../no-sql-web-sdk/SKILL.md` (standalone fallback: `https://cnb.cool/tencent/cloud/cloudbase/cloudbase-skills/-/git/raw/main/skills/cloudbase/references/no-sql-web-sdk/SKILL.md`) or `../no-sql-wx-mp-sdk/SKILL.md` (standalone fallback: `https://cnb.cool/tencent/cloud/cloudbase/cloudbase-skills/-/git/raw/main/skills/cloudbase/references/no-sql-wx-mp-sdk/SKILL.md`)
40- CloudBase PostgreSQL / PG -> `../postgresql-development/SKILL.md` (standalone fallback: `https://cnb.cool/tencent/cloud/cloudbase/cloudbase-skills/-/git/raw/main/skills/cloudbase/references/postgresql-development/SKILL.md`)
41- MySQL relational database / data modeling -> `../relational-database-tool/SKILL.md` (standalone fallback: `https://cnb.cool/tencent/cloud/cloudbase/cloudbase-skills/-/git/raw/main/skills/cloudbase/references/relational-database-tool/SKILL.md`) or `../data-model-creation/SKILL.md` (standalone fallback: `https://cnb.cool/tencent/cloud/cloudbase/cloudbase-skills/-/git/raw/main/skills/cloudbase/references/data-model-creation/SKILL.md`)
42- Cloud storage -> `../cloud-storage-web/SKILL.md` (standalone fallback: `https://cnb.cool/tencent/cloud/cloudbase/cloudbase-skills/-/git/raw/main/skills/cloudbase/references/cloud-storage-web/SKILL.md`)
43
44### Do NOT use for
45
46- Direct implementation of web pages, auth flows, functions, or database operations when a more specific skill already fits.
47- Low-level API parameter references or SDK recipes that belong in specialized skills.
48
49### Common mistakes / gotchas
50
51- Treating this general skill as the default entry point for all CloudBase development.
52- Staying here after the correct implementation skill is already clear.
53- Mixing platform overview with platform-specific API shapes or SDK details.
54- Using this overview skill as a detour in an existing application where the active auth, storage, and data files are already obvious.
55- Making code or configuration changes without first following the Change Safety Protocol (`cloudbase-platform/references/protocols/change-safety-protocol.md`).
56- Starting any deployment, publish, custom domain, or CloudRun work without first completing the checks in `cloudbase-platform/references/protocols/deployment-gate.md`.
57- **Confusing security domains with custom domains**: These are two completely different tools for different purposes:
58 - `envDomainManagement` (action: create/delete) = Security domains (安全域名) for CORS/request source validation - used for browser upload whitelisting. Does NOT accept certificateId.
59 - `manageGateway(action="bindCustomDomain")` = Custom domains (自定义域名) for public HTTPS access with SSL certificates - requires domain and certificateId parameters.
60
61## When to use this skill
62
63Use this skill for **CloudBase platform knowledge** when you need to:
64
65- Understand CloudBase storage and hosting concepts
66- Compare platform capabilities before implementation
67- Understand cross-platform auth differences (Web vs Mini Program)
68- Understand database permissions and access control
69- Access CloudBase console management pages
70
71**This skill provides foundational knowledge** that applies to all CloudBase projects, regardless of whether they are Web, Mini Program, or backend services.
72
73---
74
75## How to use this skill (for a coding agent)
76
771. **Understand platform differences**
78 - Web and Mini Program have completely different authentication approaches
79 - Must strictly distinguish between platforms
80 - Never mix authentication methods across platforms
81 - If the workspace is already an application with TODOs or prebuilt handlers, do not stay in platform overview mode. Move quickly to the concrete implementation skill and the existing files that own the flow.
82
832. **Follow best practices**
84 - Use SDK built-in authentication features (Web)
85 - Understand natural login-free feature (Mini Program)
86 - Configure appropriate database permissions
87 - Use cloud functions for cross-collection operations
88
893. **Use correct SDKs and APIs**
90 - Different platforms require different SDKs for data models
91 - MySQL data models must use models SDK, not collection API
92 - PostgreSQL / CloudBase PG work must route to `postgresql-development`; do not reuse NoSQL `app.database()` / `db.collection(...)` snippets or MySQL `queryMysqlDatabase` / `manageMysqlDatabase` for PG data paths
93 - Use `envQuery` tool to get environment ID
94 - In an existing Web application with fixed structure, inspect the existing `src/lib/backend.*`, `src/lib/auth.*`, `src/lib/*service.*`, and bound page handlers before broad concept reading.
95
964. **Use the canonical CloudBase MCP setup from the main `cloudbase` guideline**
97 - This platform overview intentionally does **not** duplicate the full MCP / mcporter config block
98 - For the canonical config snippet, CLI commands, and auth examples, read the main `cloudbase` guideline first
99 - Keep the same core rules here: use MCP first, inspect tool schemas before execution, and do not hard-code Secret ID / Secret Key / Env ID in config
100 - Keep the auth split explicit: management-side login uses `auth`, while application-side auth configuration uses `queryAppAuth` / `manageAppAuth`
101
102---
103
104# CloudBase Platform Knowledge
105
106### Domain Management Tools: Clear Distinction
107
108When working with domain-related tasks, use the correct tool based on the requirement:
109
110| Requirement | Tool | Parameters | Purpose |
111|-------------|------|------------|---------|
112| **Security Domain (安全域名)** | `envDomainManagement` | `action`, `domains` (array of host:port strings) | CORS/request source validation for browser uploads. No certificate involved. |
113| **Custom Domain (自定义域名)** | `manageGateway(action="bindCustomDomain")` | `domain` (string), `certificateId` (string) | Public HTTPS access with SSL certificate. Requires certId from SSL console. |
114| **Delete Custom Domain** | `manageGateway(action="deleteCustomDomain")` | `domain` (string) | Remove custom domain binding. |
115
116**Key indicators for choosing the right tool:**
117- Task mentions "certificate ID" or "SSL" → Use `manageGateway(action="bindCustomDomain")`
118- Task mentions "浏览器上传" or "CORS" or "安全域名" → Use `envDomainManagement`
119- Task mentions "public access" or "HTTPS" with domain → Use `manageGateway`
120
121### Recording Operation Results
122
123When a task explicitly requires recording operation steps or results to a file (e.g., `RESULT.json`):
124
1251. Perform the tool calls first to get actual results
1262. Collect all operation steps with their success/failure status
1273. Write the complete record to the specified file in the required format
1284. Include both successful operations and failed attempts with error messages
129
130Example structure for operation recording:
131```json
132{
133 "steps": [
134 {"action": "listDomains", "success": true, "message": "Found 3 domains"},
135 {"action": "bindDomain", "success": false, "message": "Certificate not found"}
136 ],
137 "summary": {
138 "totalAttempted": 2,
139 "succeeded": 1,
140 "failed": 1
141 }
142}
143```
144
145## Storage and Hosting
146
1471. **Static Hosting vs Cloud Storage**:
148 - CloudBase static hosting and cloud storage are two different buckets
149 - Generally, publicly accessible files can be stored in static hosting, which provides a public web address
150 - Static hosting supports custom domain configuration (requires console operation)
151 - Cloud storage is suitable for files with privacy requirements, can get temporary access addresses via temporary file URLs
152 - If the task needs COS SDK polling, file metadata lookup, or temporary URLs for an uploaded object, use cloud storage tools (`manageStorage` / `queryStorage`), not `manageHosting(action="upload")`
153
1542. **Static Hosting Domain**:
155 - CloudBase static hosting domain and website document config can be obtained via `queryHosting(action="websiteConfig")`
156 - Combine with static hosting file paths to construct final access addresses
157 - **Important**: If access address is a directory, it must end with `/`
158
1593. **Cloud Storage Public URL**:
160 - **CRITICAL**: `manageStorage(action=upload)` and `queryStorage(action=url)` return `temporaryUrl` which is a temporary signed URL that expires (default 1 hour). Do NOT use this as a permanent public URL.
161 - To get the permanent public access URL for a cloud storage object:
162 1. Call `envQuery(action=info)` to get environment details
163 2. Extract the storage CDN domain from `EnvInfo.Storages[0].CdnDomain` (e.g., `your-env-id.tcb.qcloud.la`)
164 3. Construct the public URL: `https://{CdnDomain}/{cloudPath}`
165 - Example: If `CdnDomain` is `env-xxx.tcb.qcloud.la` and `cloudPath` is `uploads/avatar.jpg`, the public URL is `https://env-xxx.tcb.qcloud.la/uploads/avatar.jpg`
166 - Note: The public URL is accessible only if the storage bucket ACL allows public read (default is `PRIVATE` which requires signed URLs)
167
168## Environment and Authentication
169
1701. **SDK Initialization**:
171 - CloudBase SDK initialization requires environment ID
172 - Can query environment ID via `envQuery` tool
173 - If the user only provides an environment alias, nickname, or other short form, resolve it with `envQuery(action="list", alias=..., aliasExact=true)` first and use the returned full `EnvId`
174 - Do not pass alias-like short forms directly into SDK init, `auth.set_env`, console URLs, or generated config files
175 - For Web, always initialize synchronously:
176 - `import cloudbase from "@cloudbase/js-sdk"; const app = cloudbase.init({ env: "your-full-env-id" });`
177 - Do **not** use dynamic imports like `import("@cloudbase/js-sdk")` or async wrappers such as `initCloudBase()` with internal `initPromise`
178 - Then proceed with login using a verified method (username/password, phone, email, or WeChat)
179
1802. **Environment Management (via manageEnv)**:
181 The `manageEnv` tool provides full lifecycle management for CloudBase environments.
182
183 | Action | Description | Key Parameters |
184 |--------|-------------|----------------|
185 | `listPackages` | Query available plans | (none) |
186 | `create` | Create new environment (needs confirm) | `alias`, `packageId`, `resources`, `region`, `duration` |
187 | `modifyPlan` | Change plan (upgrade/downgrade, needs confirm) | `envId`, `packageId` |
188 | `renew` | Renew environment (needs confirm) | `envId`, `duration` |
189
190 **Creating an environment with specific resources:**
191 ```
192 manageEnv(action="create", alias="my-env", packageId="baas_personal",
193 resources=["flexdb","storage","function","postgresql"], confirm="yes")
194 ```
195
196 - **`resources`** (optional, create only): controls which CloudBase capabilities to enable:
197 - `flexdb` — Document database (NoSQL)
198 - `storage` — Cloud Storage
199 - `function` — Cloud Functions
200 - `postgresql` — PostgreSQL relational database (PG mode)
201 - Defaults to all enabled if omitted.
202 - ⚠️ **All paid operations** (create / modifyPlan / renew) require `confirm="yes"`.
203
204 **Querying available packages before creating:**
205 ```
206 manageEnv(action="listPackages")
207 ```
208
209 **Changing plan (e.g. personal → standard):**
210 ```
211 manageEnv(action="modifyPlan", envId="your-env-id", packageId="baas_pf_standard", confirm="yes")
212 ```
213
214 **Renewing an environment:**
215 ```
216 manageEnv(action="renew", envId="your-env-id", duration=1, confirm="yes")
217 ```
218
219## Authentication Best Practices
220
221**Important: Authentication methods for different platforms are completely different, must strictly distinguish!**
222
223### Web Authentication
224- **Must use SDK built-in authentication**: CloudBase Web SDK provides complete authentication features
225- **Recommended method**: SMS login with `auth.getVerification()`, for detailed, refer to web auth related docs
226- **Forbidden behavior**: Do not use cloud functions to implement login authentication logic
227- **Session management**: For route guards and login proof, use `auth.getSession()` and require `data.session`; do not use deprecated `getLoginState()` or `auth.getUser()` / `auth.getCurrentUser()` as proof of real login.
228- **Provider and login-method setup**: Use `queryAppAuth` / `manageAppAuth`, not the MCP `auth` tool
229- **Anonymous login is disabled by default.** The SDK initialized with `accessKey` automatically creates an anonymous session. If the app uses AuthGuard or RLS for access control, ensure `is_anonymous` checks are in place when anonymous access is allowed.
230- **⚠️ PG RLS: Use `auth.uid()`, NOT `current_user`.** When writing RLS policies for CloudBase PostgreSQL, the user identity must use `auth.uid()` (returns the JWT `sub` / actual user ID). Do NOT use `current_user` or `current_setting(...)` — these PostgreSQL built-in functions return the database role name (e.g. `authenticated`), not the CloudBase auth user ID. CloudBase PG provides four auth helper functions: `auth.uid()`, `auth.role()`, `auth.email()`, `auth.jwt()`. Verify availability with `SELECT proname FROM pg_proc WHERE pronamespace = 'auth'::regnamespace`.
231
232### Mini Program Authentication
233- **Login-free feature**: Mini program CloudBase is naturally login-free, no login flow needed
234- **User identifier**: In cloud functions, get `wxContext.OPENID` via wx-server-sdk
235- **User management**: Manage user data in cloud functions based on openid
236- **Forbidden behavior**: Do not generate login pages or login flow code
237
238## Cloud Functions
239
2401. **Node.js Cloud Functions**:
241 - Node.js cloud functions need to include `package.json`, declaring required dependencies
242 - Can use `manageFunctions(action="createFunction")` to create functions
243 - Use `manageFunctions(action="updateFunctionCode")` to deploy cloud functions
244 - Prioritize cloud dependency installation, do not upload node_modules
245 - `functionRootPath` refers to the parent directory of function directories, e.g., `cloudfunctions` directory
246
247## Database Permissions
248
249**⚠️ CRITICAL: Always configure permissions BEFORE writing database operation code!**
250
2511. **Permission Model**:
252 - CloudBase database access has permissions
253 - Default basic permissions include:
254 - **READONLY**: Everyone can read, only creator/admin can write
255 - **PRIVATE**: Only creator/admin can read/write
256 - **ADMINWRITE**: Everyone can read, **only admin can write** (⚠️ NOT for Web SDK write!)
257 - **ADMINONLY**: Only admin can read/write
258 - **CUSTOM**: Fine-grained control with custom rules
259
2602. **Platform Compatibility** (CRITICAL):
261 - ⚠️ **Web SDK cannot use `ADMINWRITE` or `ADMINONLY` for write operations**
262 - ✅ For user-generated content in Web apps, use **CUSTOM** rules
263 - ✅ For admin-managed data (products, settings), use **READONLY**
264 - ✅ Cloud functions have full access regardless of permission type
265
2663. **Configuration Workflow**:
267 ```
268 Create collection → Configure security rules → Write code → Test
269 ```
270 - Use `managePermissions(action="updateResourcePermission")` to configure resource permissions
271 - If permissions were just changed, allow a short propagation window (typically 2-5 minutes) before retesting, but do not assume every failure is cache. Re-check the actual rule shape and active client write pattern first.
272 - See `no-sql-web-sdk/security-rules.md` for detailed `resourceType="noSqlDatabase"` examples only; do not treat `doc._openid`, `auth.openid`, query-subset validation, or `create` / `update` / `delete` JSON templates as generic rules for functions, storage, or SQL tables
273 - Official references:
274 - General security rules overview: `https://cloud.tencent.com/document/product/876/41802`
275 - NoSQL database security rules: `https://docs.cloudbase.net/database/security-rules`
276 - Cloud function security rules: `https://docs.cloudbase.net/cloud-function/security-rules`
277 - Storage security rules: `https://docs.cloudbase.net/storage/security-rules`
278
279Compatibility note:
280- Canonical plugin name: `permissions`
281- Legacy plugin aliases `security-rule`, `security-rules`, `secret-rule`, `secret-rules`, and `access-control` still resolve to the `permissions` plugin
282- Legacy tools `readSecurityRule` / `writeSecurityRule` are removed; prefer `queryPermissions` / `managePermissions`
283
2844. **Common Scenarios**:
285 - **E-commerce products**: `READONLY` (admin manages via cloud functions)
286 - **Shopping carts**: `CUSTOM` with `auth.uid` check (users manage their own)
287 - **Orders**: `CUSTOM` with ownership validation
288 - **System logs**: `PRIVATE` or `ADMINONLY`
289
2905. **Cross-Collection Operations**:
291 - If user has no special requirements, operations involving cross-database collections must be implemented via cloud functions
292
293## Role Management (MCP)
294
295CloudBase MCP provides role management capabilities through the `queryPermissions` and `managePermissions` tools. These are equivalent to the CLI `tcb role` commands.
296
297**⚠️ CRITICAL: Role policies and resource permissions are two independent systems with NO automatic synchronization.**
298
299- Resource permissions (security rules) control access to specific resources (tables, collections, functions, storage)
300- Roles (identity dimension) control policy bundles and member assignments
301
302### Available Actions
303
304**Query Operations** (via `queryPermissions`):
305| Action | Description |
306|--------|-------------|
307| `listRoles` | List all roles (system and custom) |
308| `getRole` | Get detailed role information by roleId/roleIdentity/roleName |
309
310**Management Operations** (via `managePermissions`):
311| Action | Description |
312|--------|-------------|
313| `createRole` | Create a new custom role |
314| `updateRole` | Update an existing role (add/remove policies or members) |
315| `deleteRoles` | Delete one or more custom roles |
316| `addRoleMembers` | Add members to a role |
317| `removeRoleMembers` | Remove members from a role |
318| `addRolePolicies` | Add policies to a role |
319| `removeRolePolicies` | Remove policies from a role |
320
321### Usage Examples
322
323**List all roles:**
324```
325queryPermissions(action="listRoles")
326```
327
328**Get specific role details:**
329```
330queryPermissions(action="getRole", roleId="role-xxx")
331# or by identity
332queryPermissions(action="getRole", roleIdentity="dev_role")
333# or by name
334queryPermissions(action="getRole", roleName="Developer")
335```
336
337**Delete a custom role:**
338```
339managePermissions(action="deleteRoles", roleIds=["role-xxx"])
340```
341
342**Create a custom role:**
343```
344managePermissions(action="createRole", roleName="Developer", roleIdentity="developer", policies=["FunctionsAccess"], memberUids=["user-uid-1"])
345```
346
347**Update a role (add policies):**
348```
349managePermissions(action="updateRole", roleId="role-xxx", addPolicies=["StoragesAccess"])
350```
351
352> ⚠️ Note: Only custom roles can be deleted. System roles are read-only.
353
354See also: CLI equivalent commands in `cloudbase-cli/references/permission.md`
355
3563. **Cloud Function Optimization**:
357 - If involving cloud functions, while ensuring security, can minimize the number of cloud functions as much as possible
358 - For example: implement one cloud function for client-side requests, implement one cloud function for data initialization
359
360## Data Models
361
3621. **Get Data Model Operation Object**:
363 - **Mini Program**: Need `@cloudbase/wx-cloud-client-sdk`, initialize `const client = initHTTPOverCallFunction(wx.cloud)`, use `client.models`
364 - **Cloud Function**: Need `@cloudbase/node-sdk@3.10+`, initialize `const app = cloudbase.init({env})`, use `app.models`
365 - **Web**: Need `@cloudbase/js-sdk`, initialize `const app = cloudbase.init({env})`, after login use `app.models`
366
3672. **Data Model Query**:
368 - Can call MCP `manageDataModel` tool to:
369 - Query model list
370 - Get model detailed information (including Schema fields)
371 - Get specific models SDK usage documentation
372
3733. **MySQL Data Model Invocation Rules**:
374 - MySQL data models cannot use collection method invocation, must use data model SDK
375 - **Wrong**: `db.collection('model_name').get()`
376 - **Correct**: `app.models.model_name.list({ filter: { where: {} } })`
377 - Use `manageDataModel` tool's `docs` method to get specific SDK usage
378
379## Console Management
380
381After creating/deploying resources, provide corresponding console management page links. All console URLs follow the pattern: `https://tcb.cloud.tencent.com/dev?envId=${envId}#/{path}`.
382
383The CloudBase console is updated frequently. If a live, logged-in console shows a different hash path from this document, prefer the live console path over stale documentation and then update this skill to match.
384
385### Core Function Entry Points
386
3871. **Overview (概览)**: `https://tcb.cloud.tencent.com/dev?envId=${envId}#/overview`
388 - Main dashboard showing environment status, resource usage, and quick access to key features
389 - Displays overview of all CloudBase services and their status
390
3912. **Template Center (模板中心)**: `https://tcb.cloud.tencent.com/dev?envId=${envId}#/cloud-template/market`
392 - Access project templates for React, Vue, Mini Program, UniApp, and backend frameworks
393 - AI Builder templates for rapid application generation
394 - Framework templates: React, Vue, Miniapp, UniApp, Gin, Django, Flask, SpringBoot, Express, NestJS, FastAPI
395
3963. **Document Database (文档型数据库)**: `https://tcb.cloud.tencent.com/dev?envId=${envId}#/db/doc`
397 - Manage NoSQL document database collections
398 - **Collection Management**: `https://tcb.cloud.tencent.com/dev?envId=${envId}#/db/doc/collection/${collectionName}`
399 - View, edit, and manage collection data
400 - Configure security rules and permissions
401 - **Data Model Management**: `https://tcb.cloud.tencent.com/dev?envId=${envId}#/db/doc/model/${modelName}`
402 - Create and manage data models with relationships
403 - View model schema and field definitions
404
4054. **MySQL Database (MySQL 数据库)**: `https://tcb.cloud.tencent.com/dev?envId=${envId}#/db/mysql`
406 - Manage MySQL relational database
407 - **Table Management**: `https://tcb.cloud.tencent.com/dev?envId=${envId}#/db/mysql/table/default/`
408 - Create, modify, and manage database tables
409 - Execute SQL queries and manage table structure
410 - **Important**: Must enable MySQL database in console before use
411
4125. **Cloud Functions (云函数)**: `https://tcb.cloud.tencent.com/dev?envId=${envId}#/scf`
413 - Manage and deploy Node.js cloud functions
414 - **Function List**: `https://tcb.cloud.tencent.com/dev?envId=${envId}#/scf`
415 - **Function Detail**: `https://tcb.cloud.tencent.com/dev?envId=${envId}#/scf/detail?id=${functionName}&NameSpace=${envId}`
416 - View function code, logs, and configuration
417 - Manage function triggers and environment variables
418 - Monitor function invocations and performance
419
4206. **CloudRun (云托管)**: `https://tcb.cloud.tencent.com/dev?envId=${envId}#/platform-run`
421 - Manage containerized backend services
422 - Deploy services using Function mode or Container mode
423 - Configure service scaling, access types, and environment variables
424 - View service logs and monitoring data
425
4267. **Cloud Storage (云存储)**: `https://tcb.cloud.tencent.com/dev?envId=${envId}#/storage`
427 - Manage file storage buckets
428 - Upload, download, and organize files
429 - Configure storage permissions and access policies
430 - Generate temporary access URLs for private files
431
4328. **AI+**: `https://tcb.cloud.tencent.com/dev?envId=${envId}#/ai`
433 - Access AI capabilities and services
434 - AI Builder for generating templates and code
435 - AI image recognition and other AI features
436
4379. **Static Website Hosting (静态网站托管)**: `https://tcb.cloud.tencent.com/dev?envId=${envId}#/static-hosting`
438 - Deploy and manage static websites
439 - Alternative URL: `https://console.cloud.tencent.com/tcb/hosting`
440 - Configure custom domains and CDN settings
441 - View deployment history and access logs
442
44310. **Identity Authentication (身份认证)**: `https://tcb.cloud.tencent.com/dev?envId=${envId}#/identity`
444 - Configure authentication methods and user management
445 - **Login Management**: `https://tcb.cloud.tencent.com/dev?envId=${envId}#/identity/login-manage`
446 - Enable/disable login methods (SMS, Email, Username/Password, WeChat, Custom Login)
447 - Configure SMS/Email templates
448 - Manage security domain whitelist
449 - **Token Management**: `https://tcb.cloud.tencent.com/dev?envId=${envId}#/identity/token-management`
450 - Manage API Keys and Publishable Keys
451 - View and manage access tokens
452
45311. **Weida Low-Code (微搭低代码)**: `https://tcb.cloud.tencent.com/dev?envId=${envId}#/lowcode/apps`
454 - Access Weida low-code development platform
455 - Build applications using visual drag-and-drop interface
456
45712. **Logs & Monitoring (日志监控)**: `https://tcb.cloud.tencent.com/dev?envId=${envId}#/devops/log`
458 - View logs from cloud functions, CloudRun services, and other resources
459 - Monitor resource usage, performance metrics, and error rates
460 - Set up alerts and notifications
461
46213. **Environment Settings (环境配置)**: `https://tcb.cloud.tencent.com/dev?envId=${envId}#/env/http-access`
463 - Configure environment-level settings
464 - Manage security domains and CORS settings
465 - Configure environment variables and secrets
466 - View environment information and resource quotas
467
468### URL Construction Guidelines
469
470- **Base URL Pattern**: `https://tcb.cloud.tencent.com/dev?envId=${envId}#/{path}`
471- **Replace Variables**: Always replace `${envId}` with the actual environment ID queried via `envQuery` tool
472- **Alias Handling**: If the conversation only contains an alias or shorthand, first resolve it with `envQuery(action="list", alias=..., aliasExact=true)` and use the returned `EnvId`; if the alias is ambiguous or missing, ask the user to confirm before generating links
473- **Resource-Specific URLs**: For specific resources (collections, functions, models), replace resource name variables with actual values
474- **Usage**: After creating/deploying resources, provide these console links to users for management operations
475
476### Quick Reference
477
478When directing users to console pages:
479- Use the full URL with environment ID
480- Explain what they can do on each page
481- Provide context about why they need to access that specific page
482- For configuration pages (like login management), guide users through the setup process