mcpbeat Sign in

Bigtable Basics Agent Skill

>- Assists in provisioning instances/tables, designing performant schemas, and querying data in Bigtable. Use when designing Bigtable row keys, configuring column families, writing SQL queries or client library code (Java, Go, Python) for Bigtable, or diagnosing performance/hotspotting issues. Also use when provisioning Bigtable clusters using gcloud or cbt CLIs. Don't use for generic Cloud SQL administration.

7k tokens
context cost
the whole folder, loaded on every use
8
files
instructions only
0
copies elsewhere
how many repositories repackaged it
15506
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/google/skills --skill bigtable-basics

What comes with it

24 313 bytes besides the instruction
assets/row_key_schema.yaml
references/cli_data_access.md
references/client_libraries.md
references/dataplex.md
references/infrastructure_management.md
references/schema_design.md
references/sql_guide.md

The instruction itself

10 sections, as written by the author

Bigtable Basics

This skill provides core workflows and guidance for administering and developing

with Google Bigtable.

Core Principles

  • Control Plane vs. Data Plane:
  • Use gcloud for Control Plane operations: Manage Instances,

Clusters, App Profiles, Backups and IAM. Create Tables, Logical Views,

Materialized Views and Authorized Views.

  • Use cbt for Data Plane operations: Update Tables, Column Families,

and reading/writing data.

  • Performance First: Bigtable is a NoSQL database. Efficiency is tied to

Row Key design. Always warn about Full Table Scans.

  • Client Selection: For production use cases, prefer Java or Go

for their superior performance and feature coverage compared to other

languages.

  • Observability: When diagnosing performance or hotspotting, always

mention Key Visualizer (via Cloud Console) as the primary diagnostic

tool because it provides the most granular view of access patterns across

row keys. This should be followed by the hot-tablets tool and table stats

in gcloud CLI and include-stats=full option under cbt read to diagnose

slow queries.

> [!IMPORTANT] Safety Rule: You MUST obtain explicit user confirmation before

> making non-emulator database changes. You MUST mention this safety requirement

> when providing commands or instructions that modify the database structure or

> data.

Quick Recipes

1. Querying Data

Use SQL for complex transforms or aggregations and key-value APIs for simpler

query patterns. *Note: Use exact match, prefix (_key LIKE 'myprefix%'), or

range predicates on _key to avoid expensive unbounded scans. Recommend

explicit row ranges (_key BETWEEN 'start' AND 'end') as a more performant

alternative to prefix matches where possible.*

If expensive scans (either unbounded or prefix or range queries scanning a large

range) are unavoidable due to multiple access patterns that can’t all be

accommodated in a single schema, consider one of these two options:

  • If the query will be used in user facing and/or latency sensitive

applications, use continuous materialized views with keys optimized for the

additional access patterns.

  • If secondary access patterns are infrequent, batch patterns like ETL, ML

model training or analytical read-only tasks, use Bigtable Data Boost

instead.

2. Manipulating Data

Use key-value APIs for insert, update, increment and delete operations. SQL API

is read-only.

3. Data Model Definition (DDL)

SQL API doesn't support DDL operations. Table creation, deletion, updates should

be made using gcloud CLI. Logical Views and Continuous Materialized Views are

defined as SQL queries but they must be created using gcloud CLI.

Reference Guides

  • CLI Operations:
  • infrastructure_management.md:

Provisioning instances, clusters, and table schemas.

  • cli_data_access.md: Reading and writing

data via the cbt CLI.

  • Design & Discovery:
  • schema_design.md: Best practices for row

keys and performance with tables and continuous materialized views.

  • dataplex.md: Data catalog search for Bigtable

assets.

  • Querying & Code:
  • sql_guide.md: Querying structured row keys

via SQL and CLI.

  • client_libraries.md: Patterns for

high-performance Go/Java/Python code.

Common Workflows

Schema Evolution (DevOps)

  • Prefer Terraform for production schema changes to prevent accidental

data loss.

  • For manual cbt changes, first check the existing state by listing the table's column families and GC policies before proposing any modifications:
    cbt ls {table}

If modifications are needed, create the family or update the GC policy:

    cbt createfamily {table} {family}
    cbt setgcpolicy {table} {family} "maxversions=5 AND maxage=30d"
  • Reference

infrastructure_management.md for

full syntax.

External Resources

Other skills for the same job

different authors, same section of the catalogue
MCP Builder
by anthropics
vendor ×13

Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).

30k tokens scripts
Changelog Generator
by frostant
×9

Automatically creates user-facing changelogs from git commits by analyzing commit history, categorizing changes, and transforming technical commits into clear, customer-friendly release notes. Turns hours of manual changelog writing into minutes of automated generation.

774 tokens
Finishing A Development Branch
by ZhanlinCui
×7

Use when implementation is complete, all tests pass, and you need to decide how to integrate the work - guides completion of development work by presenting structured options for merge, PR, or cleanup

1k tokens
MCP Builder
by JayZeeDesign
×7

Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).

37k tokens scripts
Vercel React Native Skills
by vercel-labs
vendor ×6

React Native and Expo best practices for building performant mobile apps. Use when building React Native components, optimizing list performance, implementing animations, or working with native modules. Triggers on tasks involving React Native, Expo, mobile performance, or native platform APIs.

39k tokens
Vercel React Best Practices
by ratacat
×5

React and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance patterns. Triggers on tasks involving React components, Next.js pages, data fetching, bundle optimization, or performance improvements.

34k tokens
Next Best Practices
by vercel-labs
vendor ×4

Next.js best practices - file conventions, RSC boundaries, data patterns, async APIs, metadata, error handling, route handlers, image/font optimization, bundling

20k tokens
Using Git Worktrees
by ZhanlinCui
×4

Use when starting feature work that needs isolation from current workspace or before executing implementation plans - creates isolated git worktrees with smart directory selection and safety verification

1k tokens

How to use it

Copy the folder

Take google/bigtable-basics from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.