Install
$ agentstack add skill-tencentcloudbase-cloudbase-skills-cloudbase-cli ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
CloudBase CLI
Manage CloudBase resources via tcb CLI — deterministic, scriptable, auditable. The preferred interface for AI agents in CI/CD, batch operations, and resource management.
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-cli/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 cloud-functions or cloudrun-development, use the standalone fallback URL shown next to that reference.
Cross-cutting protocols (load for deployment and change operations):
- 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
Core Principles
--helpfirst — never guess commands.
tcb CLI changes between versions. Before using any command for the first time, run tcb --help to check parameters and discover official doc links.
- Deployment Gate.
Before any deployment, publish, custom domain, or CloudRun operation, you must first complete the checks in cloudbase-platform/references/protocols/deployment-gate.md.
- Verify your work.
After deploying or modifying any resource, run the corresponding list/detail command to confirm the change took effect.
- Dry-run before destructive actions.
Use --dry-run for delete/overwrite operations. Show the preview to the user and wait for explicit confirmation before executing.
- Confirm environment first.
Always verify envId with the user before operations. Run tcb env use to avoid accidentally modifying production.
- Recover from errors, don't loop.
If a command fails after 2-3 attempts, check the exit code ($?), read the error message, consult tcb docs search, and try a different approach.
When to use this skill
Use when the user wants to manage CloudBase resources via command line:
- Deploy/debug cloud functions, web apps, CloudRun services
- Manage storage, hosting, databases (NoSQL/MySQL)
- Configure permissions, CORS, domains, routing
- CI/CD scripting, batch operations, terminal-based resource management
Do NOT use for
- SDK-based in-app integration (web/miniprogram/node) → use
cloud-functions,
no-sql-web-sdk, auth-web, etc.
- MCP tool calls for IDE-integrated workflows → use CloudBase MCP directly
- Console UI operations
- CloudBase Agent SDK development → use
cloudbase-agent-ts
How to use this skill (for a coding agent)
- Always load
references/core.mdfirst — it covers authentication,
environment switching, tcb docs queries, and error diagnosis.
- Route to the correct domain reference using the Routing table below.
- Load only the one reference file that matches the user's task.
Do not preload all references.
- Stop loading more context once you have the workflow and command
syntax for the current task.
- If the task shifts to SDK/in-app code, switch to the appropriate
SDK skill (e.g., cloud-functions, no-sql-web-sdk) instead.
Routing
| User Task | Read | |-----------|------| | Login, env switching, tcb docs, error diagnosis | references/core.md | | Deploy/debug cloud functions | references/functions.md | | Deploy web app (React/Vue/Next.js) | references/app.md | | Deploy CloudRun service | references/cloudrun.md | | Deploy static site | references/hosting.md | | Upload/download files, ACL rules | references/storage.md | | NoSQL (MongoDB) database operations | references/nosql.md | | MySQL database operations | references/mysql.md | | Roles, policies, access control | references/permission.md | | CORS, custom domains, routing rules | references/access.md |
Quick workflow
tcb login→ confirm envId with user →tcb env usetcb --helpto verify syntax- Execute the command (with
--dry-runfor destructive ops) - Verify the result with the corresponding
list/detailcommand - Report the outcome to the user
Minimum self-check
- [ ] Loaded
references/core.mdbefore any domain module? - [ ] Confirmed target envId with the user?
- [ ] Used
--helpfor unfamiliar commands? - [ ] Used
--dry-runbefore destructive operations? - [ ] Verified the result after each operation?
- [ ] Stayed within CLI scope — did not drift into SDK code?
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: TencentCloudBase
- Source: TencentCloudBase/cloudbase-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.