Token导航 LogoToken导航TokenDH.com
开发操作浏览器github未标认证来源可访问许可证需确认审计异常

tidbxtidbx 命令行

Agent Skill

tidbx 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

445

周安装

18

GitHub Stars

24

下载量

140
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:tidbx(tidbx 命令行)
来源仓库:https://github.com/pingcap/agent-rules
仓库路径:skills/tidbx
安装命令:
npx skills add https://github.com/pingcap/agent-rules --skill tidbx
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/pingcap/agent-rules --skill tidbx

简介

用于处理 GitHub 仓库、Issue 和 Pull Request 协作信息。

  • 适合围绕代码变更、仓库状态进行整理和分析。
  • 可结合项目上下文理解代码修改意图和影响范围。
  • 安装命令:npx skills add https://github.com/pingcap/agent-rules --skill tidbx
  • 安装前建议确认权限范围和维护状态。

SKILL.md

TiDB Cloud Provisioning (TiDB X)

Provision TiDB Cloud Serverless (now branded as TiDB X) clusters and related resources using the workflows below. Use the command patterns in the references file as implementation details, but keep the focus on the provisioning outcome and required inputs.

Note: TiDB Cloud Serverless has been renamed to TiDB X. Keep both terms in user-facing guidance for clarity. Note: Many users say "instance" when they mean "cluster." Treat "instance" as a synonym for "cluster."

Reminder: Use the CLI for TiDB Cloud (TiDB X) auth/setup, listing regions/projects, and cluster/instance CRUD (Create, Read/list, Update, Delete). Before any CRUD action, ensure the user completes ticloud setup and authentication (see Provisioning Setup below).

Provisioning Setup

Complete setup before any provisioning or lifecycle operations.

Setup Status (TiDB Cloud component)

  • ○ ticloud installed
  • ○ authenticated

When verifying setup, remind users to follow this order: install → login → verify with ticloud auth whoami. Use the checklist to show users what they should do next and where they are in the setup flow.

Checklist template (update after each check, and reflect command results):

Setup Status (TiDB Cloud component)
- ○ ticloud installed
- ○ authenticated

After command -v ticloud succeeds, mark install complete:

Setup Status (TiDB Cloud component)
- ● ticloud installed
- ○ authenticated

After ticloud auth whoami succeeds, mark auth complete:

Setup Status (TiDB Cloud component)
- ● ticloud installed
- ● authenticated

Install CLI

For macOS/Linux:

curl https://raw.githubusercontent.com/tidbcloud/tidbcloud-cli/main/install.sh | sh

After install, verify:

command -v ticloud

Use command -v ticloud to confirm installation before marking it complete.

Update checklist:

Setup Status (TiDB Cloud component)
- ● ticloud installed
- ○ authenticated

Authenticate

Always check auth first:

ticloud auth whoami

If not logged in, run:

ticloud auth login --insecure-storage

Wait for the user to complete the browser flow, then re-check:

ticloud auth whoami

Update checklist:

Setup Status (TiDB Cloud component)
- ● ticloud installed
- ● authenticated

Network/DNS Issues

If ticloud auth whoami fails due to network/DNS (e.g., cannot reach iam.tidbapi.com):

  • Explain that the environment needs network access for the CLI.
  • Ask the user to enable network access for the agent environment, or run the command locally and share the output.

If setup errors persist, point the user to the official docs:

Table Formatting (ASCII)

Use terminal-friendly ASCII tables for any list output (regions, projects, clusters, branches).

  • Use ASCII borders with +, -, and |.
  • Use fixed-width columns; left-align all text.
  • Refine the table formatting so columns align cleanly and remain readable.
  • Keep headers short and descriptive.
  • Do not use Unicode box-drawing characters.
  • Always emphasize command output that users should execute later.
  • For single-line commands, use bold inline formatting. Example: Run this: ticloud auth login --insecure-storage

Example format:

+----------------+-----------------------+---------------------------+--------+
| Display Name   | Cluster ID            | Region                    | State  |
+----------------+-----------------------+---------------------------+--------+
| test-skill     | 10913591479486949552  | alicloud-ap-southeast-1   | ACTIVE |
+----------------+-----------------------+---------------------------+--------+

Core Workflows

Create a Cluster

  • Do not present a setup checklist for cluster creation steps (region/project/cluster name). If a status is needed, label it as "Create Flow" rather than "Setup Status."
  • Run ticloud serverless region and present the full list in a terminal-friendly ASCII bordered table (fixed-width columns in a code block) with selectable option numbers before asking for a region.
  • If the user doesn’t know the project ID, run ticloud project list and present the results in the same ASCII bordered table format before asking. Keep the project ID as a third column.
  • Ask in this order: region (after listing options). Do not ask for project ID or cluster name until the region is chosen. After region selection, ask for project ID (after listing projects if needed). Only after project selection, ask for the cluster display name as the final confirmation step.
  • Confirm the required parameters (region, project, cluster name).
  • If the user wants a .env, direct them to the TiDB Cloud console download for the cluster.
  • Use the serverless create command pattern from references/ticloud.md.
  • When creating a cluster, do not run the create command twice. Wait up to 60 seconds for completion before returning control.
  • Verify creation by listing clusters and present results in an ASCII bordered table rather than raw JSON. If the environment is non-interactive, use ticloud serverless list -p <project-id> -o json and render a table from the JSON.

Delete a Cluster

  • Require explicit user confirmation before delete operations.
  • Use the serverless delete command pattern from references/ticloud.md.
  • After deletion, list the remaining clusters and present results in an ASCII bordered table rather than raw JSON. If the environment is non-interactive, use ticloud serverless list -p <project-id> -o json and render a table from the JSON.

List Clusters

  • If the user doesn’t know the available projects, list projects first, then ask which project to use.
  • Ask which project the user wants to list before running ticloud serverless list.
  • If the user doesn’t know the project ID, run ticloud project list and present results in the ASCII bordered table format.
  • For non-interactive environments, use ticloud serverless list -p <project-id> -o json and render a table from the JSON.

Describe a Cluster

  • Confirm the target cluster (name or cluster ID).
  • Use ticloud serverless list -p <project-id> -o json and filter by cluster ID or display name.
  • Present details in a two-column ASCII table (Field, Value) with refined alignment.

Create or Delete a Branch

  • Confirm the target cluster and branch name.
  • Use the branch commands from references/ticloud.md.
  • List branches to verify changes.

List Branches

  • Follow the hierarchy: project → cluster → branch.
  • If the user doesn’t know the available projects, list projects first.
  • If the user doesn’t know the project ID, run ticloud project list and present results in the ASCII bordered table format.
  • If the user doesn’t know the cluster ID, list clusters for the selected project and present results in the ASCII bordered table format.
  • Ask which cluster the user wants to list before running ticloud serverless branch list.
  • For non-interactive environments, use ticloud serverless branch list --cluster-id <cluster-id> -o json and render a table from the JSON.

Manage SQL Users

  • Use the TiDB Cloud console for .env downloads, SQL user management, and database creation. Do not create/update/delete SQL users via CLI.
  • Use this console URL pattern (fill in IDs, and prefill org/project IDs when known): https://tidbcloud.com/clusters/<cluster-id>/overview?orgId=<org-id>&projectId=<project-id>.
  • Never read or display stored passwords (do not cat .env).
  • When guiding console creation, use a short step list:

1. Open the console link 2. Create the SQL user 3. Download the .env

Safety Checks

  • Always run ticloud auth whoami before any action.
  • Require explicit user confirmation before delete operations.
  • For ticloud operations that take time, wait 60 seconds before returning control.

References

  • Command patterns and placeholders: references/ticloud.md

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.13%
按下载量换算52

Claude

29.17%
按下载量换算41

Cursor

16.89%
按下载量换算24

Gemini CLI

10.15%
按下载量换算14

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

可疑

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills