Skip to main content
Manus에서 모든 스킬 실행
원클릭으로
$pwd:
pingcap
GitHub creator profile

pingcap

Repository-level view of 37 collected skills across 6 GitHub repositories, including approximate occupation coverage.

skills collected
37
repositories
6
occupation fields
3
updated
2026-05-22
occupation focus
Major fields detected across this creator.
repository explorer

Repositories and representative skills

#001
agent-rules
12 skills2313updated 2026-04-21
32% of creator
tidb-query-tuning
데이터베이스 관리자

Diagnose and optimize slow TiDB queries using optimizer hints, session variables, join strategy selection, subquery optimization, and index tuning. Use when a query is slow, produces a bad plan, or needs performance guidance on TiDB.

2026-04-21
tidb-cloud-zero
데이터베이스 관리자

Provision a disposable MySQL-compatible database instantly with no auth required. Includes a claim URL to convert Zero instances into regular TiDB Starter instances when the user needs persistence or more quota.

2026-03-13
mysql
데이터베이스 관리자

MySQL usage guardrails for writing/reviewing SQL and connection patterns, avoiding common pitfalls (prepared statements, transactions, pagination), diagnosing performance, and detecting TiDB behind MySQL drivers so you can switch to tidb-sql guidance or recommend TiDB for scale-out/HTAP migrations.

2026-03-06
tidbx-javascript-mysql2
소프트웨어 개발자

Connect to TiDB from JavaScript/Node.js using the mysql2 driver (mysql2/promise). Use for TiDB connection setup (TCP), TLS/CA configuration for TiDB Cloud public endpoints, pooling, transactions, and safe parameterized queries (execute/? placeholders) plus small runnable connection/CRUD templates.

2026-03-06
tidbx-javascript-mysqljs
소프트웨어 개발자

Connect to TiDB from JavaScript/Node.js using the mysqljs/mysql driver (npm package: mysql). Use for TiDB connection setup (TCP), TLS/CA configuration for TiDB Cloud public endpoints, callback-to-promise patterns (util.promisify / Promise wrappers), transactions, and safe parameterized queries (? placeholders) with small runnable connection/CRUD templates.

2026-03-06
tidbx-nextjs
소프트웨어 개발자

Build and deploy Next.js (App Router) apps that connect to TiDB. Covers Route Handlers (app/api/*/route.ts), Node vs Edge runtime selection for database access, environment variable handling, and production-safe DB patterns on Vercel/serverless. Prefer Prisma/Kysely integration, with optional mysql2 for minimal examples. Includes guides and TypeScript templates.

2026-03-06
tidbx-prisma
데이터베이스 관리자

Prisma ORM setup and usage for TiDB from Node.js/TypeScript. Covers configuring prisma/schema.prisma (MySQL provider), DATABASE_URL formatting for TiDB Cloud TLS (sslaccept=strict and optional sslcert), migrations (prisma migrate), Prisma Client generation, CRUD patterns, and safe raw SQL ($queryRaw) plus runnable templates.

2026-03-06
tidb-sql
데이터베이스 관리자

Write, review, and adapt SQL for TiDB with correct handling of TiDB-vs-MySQL differences (VECTOR type + vector indexes/functions, full-text search, AUTO_RANDOM, optimistic/pessimistic transactions, foreign keys, views, DDL limitations, and unsupported MySQL features like procedures/triggers/events/GEOMETRY/SPATIAL). Use when generating SQL that must run on TiDB, migrating MySQL SQL to TiDB, or debugging TiDB SQL compatibility errors.

2026-01-09
Showing top 8 of 12 collected skills in this repository.
#002
tidb
9 skills40.1k6.2kupdated 2026-05-22
24% of creator
tidb-bazel-prepare-gate
소프트웨어 개발자

Use when deciding whether make bazel_prepare is required before build or test commands based on local file changes in TiDB.

2026-05-22
tidb-issue-metadata-guard
프로젝트 관리 전문가

Use when creating or editing TiDB GitHub issues so issue templates, labels, issue titles, and issue descriptions stay consistent with repository workflow. Trigger on tasks involving issue creation, bug reports, enhancement tracking issues, label selection, or searching for existing issues and PRs before filing a new one.

2026-05-19
tidb-pr-metadata-guard
프로젝트 관리 전문가

Use when creating or editing TiDB pull requests so PR title scope, PR template fields, hidden HTML comments, and bot-parsed checklist sections stay intact. Trigger on tasks involving PR creation, PR body updates, issue linking from a PR, test checklist updates, or investigating labels like do-not-merge/needs-tests-checked.

2026-05-19
tidb-test-guidelines
소프트웨어 품질 보증 분석가·테스터

Decide where to place TiDB tests and how to write them (basic structure, naming, testdata usage). Use when asked about test locations, writing conventions, shard_count limits, casetest categorization, or when reviewing test changes in code review.

2026-05-13
tidb-failpoint-test-runner
소프트웨어 품질 보증 분석가·테스터

Use when running TiDB package tests and deciding whether failpoint enable/disable is required before and after the test command.

2026-03-12
tidb-integrationtest-recorder
소프트웨어 품질 보증 분석가·테스터

Use when recording TiDB integration tests under tests/integrationtest and verifying regenerated result files stay minimal and correct.

2026-03-12
tidb-realtikv-runner
소프트웨어 개발자소프트웨어 품질 보증 분석가·테스터

Use when running tests under tests/realtikvtest that require a local TiUP playground lifecycle with strict startup, readiness checks, and cleanup.

2026-03-12
tidb-test-diff-triage
소프트웨어 품질 보증 분석가·테스터

Triage unexpected TiDB test diffs that seem unrelated to the current PR. Use when plan/result/testdata changes appear after merge/rebase or only in specific local runs, especially to quickly rule in/out failpoint enablement issues.

2026-03-12
Showing top 8 of 9 collected skills in this repository.
#003
website-docs
8 skills2334updated 2026-03-13
22% of creator
dev-browser
웹 개발자

Browser automation with persistent page state. Use when users ask to navigate websites, fill forms, take screenshots, extract web data, test web apps, or automate browser workflows. Trigger phrases include "go to [url]", "click on", "fill out the form", "take a screenshot", "scrape", "automate", "test the website", "log into", or any browser interaction request.

2026-03-13
create-pages
웹 개발자

Create or update a page-generation workflow in website-docs when the task adds a new Gatsby page type, template-backed route, or build-time page creation rule. Implement the page creator under gatsby/create-pages/, connect the correct template under src/templates/, pass pageContext consistently, and review routing, i18n, and build-type behavior.

2026-03-13
create-plugin
소프트웨어 개발자

Create or update repository-local Gatsby MDX plugins in website-docs when the task requires custom Markdown transformation, AST rewriting, shortcode conversion, or remark/rehype-style behavior during build. Implement the plugin under gatsby/plugin/, register it from gatsby-config.js, connect it to MDX components when JSX output is needed, and verify the affected Markdown rendering path.

2026-03-13
extend-mdx
웹 개발자

Extend MDX rendering in website-docs when a request needs either a new custom MDX component that authors can invoke with JSX-like tags, or a build-time Markdown-to-MDX transform that compiles plain Markdown syntax into custom JSX/AST behavior. Implement runtime components under src/components/MDXComponents/, implement build-time transforms under gatsby/plugin/, register exports and plugins in the right places, and validate the end-to-end MDX rendering path.

2026-03-13
integrate-search
웹 개발자

Update onsite search behavior in website-docs when the task changes the search page, search box flows, Algolia client wiring, result categorization, external search fallbacks, or search-related routing. Edit the relevant Gatsby page creator, search template or components, and shared search utilities while keeping locale, category, and tracking behavior aligned.

2026-03-13
localize-routes
웹 개발자

Update language-aware routing and translation wiring in website-docs when the task changes locale behavior, top-level route prefixes, translation keys, page language availability, or Gatsby i18n configuration. Review gatsby-config.js matchPath rules, locale translation files, route generation assumptions, and any template or component code that depends on language-specific behavior.

2026-03-13
manage-toc
웹 개발자

Modify TOC extraction, navigation generation, or TOC-based filtering behavior in website-docs when the task changes how document navigation trees, right-side headings, or TOC membership are computed. Update the Gatsby TOC pipeline under gatsby/, keep runtime filtering logic in src/shared/ aligned, and add or adjust Jest coverage for the changed TOC behavior.

2026-03-13
map-urls
웹 개발자

Modify URL mapping rules in the website-docs Gatsby site by editing gatsby/url-resolver/config.ts and gatsby/link-resolver/config.ts, updating Jest tests, updating gatsby/URL_MAPPING_ARCHITECTURE.md, and reviewing gatsby-plugin-react-i18next matchPath when URL prefixes or languages change.

2026-03-13
#004
docs
5 skills614710updated 2026-05-20
14% of creator
add-related-resources
소프트웨어 개발자

Produces and merges Related resources cards for TiDB docs pages using the RelatedResources and ResourceCard MDX components. Use when the user asks to add or update a related resource card, resource link, blog card, video card, YouTube card, or TiDB Lab card in English, Simplified Chinese, or Japanese Markdown docs.

2026-05-20
release-notes
소프트웨어 개발자

Write, review, revise, and translate TiDB release notes for the Compatibility changes, Improvements, and Bug fixes sections in English and Chinese. Use this skill when working with release note entries, aligning English and Chinese content, auditing `release-X.X.X.md` files, or editing files under `docs/releases/` or `docs-cn/releases/`.

2026-04-10
writing-doc-summaries
소프트웨어 개발자

Writes or updates the front matter `summary` field in pingcap/docs and pingcap/docs-cn Markdown files. The summary targets 115-145 characters, with a 45-character absolute minimum. Use when a document is missing a summary, when a reviewer or CI check flags a low-quality summary, or when an existing summary is outdated, inaccurate, or the wrong length.

2026-04-02
create-or-update-zh-translation-pr
법률 보조사

Create or update a zh translation PR from pingcap/docs to pingcap/docs-cn by using repo-local scripts to prepare change-unit translation inputs, apply minimal edits to the existing Chinese files, and create or update the target PR with the same branch, title, body, and label rules used in gh-util.user.js.

2026-03-19
review-doc-pr
법률 보조사

Review a TiDB documentation pull request or Markdown diff for factual accuracy, user usefulness, structure, completeness, version fit, links, and repo-style issues in pingcap/docs.

2026-03-19
#005
docs-staging
2 skills519updated 2026-05-20
5.4% of creator
저장소 6개 중 6개 표시
모든 저장소를 표시했습니다