tencentcloudbase/skills

Production Ready Backend Development (CloudBase)Agent Skills

2 stars0 forksUpdated Jan 23, 2026
npx skills add tencentcloudbase/skills

README

CloudBase AI Agent Skills

This repository contains agent skills for CloudBase development, extracted from the CloudBase AI ToolKit.

Source

These skills are sourced from: config/.claude/skills/ in the CloudBase AI ToolKit repository.

Repository: TencentCloudBase/CloudBase-AI-ToolKit

Last Updated: 2026-01-23

Usage

Use add-skills

npx skills add tencentcloudbase/skills

For Claude Desktop / Cursor

  1. Copy the skills directory you need to your skills folder:

    • Claude Desktop: ~/.config/claude/skills/
    • Cursor: .cursor/skills/
  2. The skill will be automatically available in your AI assistant.

Example

To use the auth-tool skill:

# For Claude Desktop
cp -r skills/auth-tool ~/.config/claude/skills/

# For Cursor
cp -r skills/auth-tool .cursor/skills/

Available Skills

This repository contains 22 skills:

  • ai-model-nodejs (ai-model-nodejs) Use this skill when developing Node.js backend services or CloudBase cloud functions (Express/Koa/NestJS, serverless, backend APIs) that need AI capabilities. Features text generation (generateText), streaming (streamText), AND image generation (generateImage) via @cloudbase/node-sdk ≥3.16.0. Built-in models include Hunyuan (hunyuan-2.0-instruct-20251111 recommended), DeepSeek (deepseek-v3.2 recommended), and hunyuan-image for images. This is the ONLY SDK that supports image generation. NOT for browser/Web apps (use ai-model-web) or WeChat Mini Program (use ai-model-wechat).

  • ai-model-web (ai-model-web) Use this skill when developing browser/Web applications (React/Vue/Angular, static websites, SPAs) that need AI capabilities. Features text generation (generateText) and streaming (streamText) via @cloudbase/js-sdk. Built-in models include Hunyuan (hunyuan-2.0-instruct-20251111 recommended) and DeepSeek (deepseek-v3.2 recommended). NOT for Node.js backend (use ai-model-nodejs), WeChat Mini Program (use ai-model-wechat), or image generation (Node SDK only).

  • ai-model-wechat (ai-model-wechat) Use this skill when developing WeChat Mini Programs (小程序, 企业微信小程序, wx.cloud-based apps) that need AI capabilities. Features text generation (generateText) and streaming (streamText) with callback support (onText, onEvent, onFinish) via wx.cloud.extend.AI. Built-in models include Hunyuan (hunyuan-2.0-instruct-20251111 recommended) and DeepSeek (deepseek-v3.2 recommended). API differs from JS/Node SDK - streamText requires data wrapper, generateText returns raw response. NOT for browser/Web apps (use ai-model-web), Node.js backend (use ai-model-nodejs), or image generation (not supported).

  • auth-nodejs (auth-nodejs-cloudbase) Complete guide for CloudBase Auth using the CloudBase Node SDK – caller identity, user lookup, custom login tickets, and server-side best practices.

  • auth-tool (auth-tool-cloudbase) Use CloudBase Auth tool to configure and manage authentication providers for web applications - enable/disable login methods (SMS, Email, WeChat Open Platform, Google, Anonymous, Username/password, OAuth, SAML, CAS, Dingding, etc.) and configure provider settings via MCP tools callCloudApi.

  • auth-web (auth-web-cloudbase) CloudBase Auth v3 Web SDK - Quick Reference Guide

  • auth-wechat (auth-wechat-miniprogram) Complete guide for WeChat Mini Program authentication with CloudBase - native login, user identity, and cloud function integration.

  • cloud-functions (cloud-functions) Complete guide for CloudBase cloud functions development - runtime selection, deployment, logging, invocation, and HTTP access configuration.

  • cloud-storage-web (cloud-storage-web) Complete guide for CloudBase cloud storage using Web SDK (@cloudbase/js-sdk) - upload, download, temporary URLs, file management, and best practices.

  • cloudbase-platform (cloudbase-platform) CloudBase platform knowledge and best practices. Use this skill for general CloudBase platform understanding, including storage, hosting, authentication, cloud functions, database permissions, and data models.

  • cloudrun-development (cloudrun-development) CloudBase Run backend development rules (Function mode/Container mode). Use this skill when deploying backend services that require long connections, multi-language support, custom environments, or AI agent development.

  • data-model-creation (data-model-creation) Optional advanced tool for complex data modeling. For simple table creation, use relational-database-tool directly with SQL statements.

  • http-api (http-api-cloudbase) Use CloudBase HTTP API to access CloudBase platform features (database, authentication, cloud functions, cloud hosting, cloud storage, AI) via HTTP protocol from backends or scripts that are not using SDKs.

  • miniprogram-development (miniprogram-development) WeChat Mini Program de

...

Read full README

Statistics

Stars2
Forks0
Open Issues0
CreatedJan 22, 2026