cloudbase-agent
Compare original and translation side by side
🇺🇸
Original
English🇨🇳
Translation
ChineseCloudBase Agent SDK — Language Router
CloudBase Agent SDK — 语言路由
This skill supports TypeScript and Python. Determine the language first, then read the corresponding skill file. If the user does not explicitly specify which programming language to use, TypeScript must be enforced.
本技能支持TypeScript和Python。请先确定使用的语言,再阅读对应的技能文件。如果用户未明确指定编程语言,则默认使用TypeScript。
Step 1: Determine Language
步骤1:确定语言
| Signal | Language |
|---|---|
| User says "TypeScript", "Node.js", "TS" | TypeScript |
| User says "Python", "FastAPI", "pip" | Python |
| No clear signal | TypeScript |
| 标识 | 语言 |
|---|---|
| 用户提及“TypeScript”、“Node.js”、“TS” | TypeScript |
| 用户提及“Python”、“FastAPI”、“pip” | Python |
| 无明确标识 | TypeScript |
Step 2: Read the Language-Specific Skill File
步骤2:阅读对应语言的技能文件
- TypeScript → Read ts/skill.md — then follow ALL instructions in that file
- Python → Read py/skill.md — then follow ALL instructions in that file
⚠️ IMPORTANT: After determining the language, you MUST read the corresponding skill file above. Do NOT proceed with any code generation until you have read it. Each language skill file is self-contained with its own quick start, routing table, deployment instructions, and adapter guides.
- TypeScript → 阅读ts/skill.md — 随后严格遵循该文件中的所有指令
- Python → 阅读py/skill.md — 随后严格遵循该文件中的所有指令
**⚠️ 重要说明:**确定语言后,必须先阅读上述对应的技能文件。在未阅读该文件之前,请勿进行任何代码生成操作。每种语言的技能文件都包含独立的快速入门、路由表、部署指南和适配器说明。