โ† All skills
Tencent SkillHub ยท Developer Tools

Planetscale Cli Skills

Comprehensive PlanetScale CLI (pscale) command reference and workflows for database management via terminal. Use when user mentions PlanetScale CLI, pscale c...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Comprehensive PlanetScale CLI (pscale) command reference and workflows for database management via terminal. Use when user mentions PlanetScale CLI, pscale c...

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
README.md, SKILL.md, pscale-auth/SKILL.md, pscale-auth/references/commands.md, pscale-backup/SKILL.md, pscale-backup/references/commands.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.2

Documentation

ClawHub primary doc Primary doc: SKILL.md 13 sections Open source page

PlanetScale CLI Skills

Comprehensive pscale command reference and workflows for managing PlanetScale databases via terminal.

Overview

The PlanetScale CLI brings database branches, deploy requests, and schema migrations to your fingertips. This skill provides command references, automation scripts, and decision trees for all pscale operations.

Sub-Skills

CommandSkillUse Whenauthpscale-authLogin, logout, service tokens, authentication managementbranchpscale-branchCreate, delete, promote, diff, list database branchesdeploy-requestpscale-deploy-requestCreate, review, deploy, revert schema changesdatabasepscale-databaseCreate, list, show, delete databasesbackuppscale-backupCreate, list, show, delete branch backupspasswordpscale-passwordCreate, list, delete connection passwordsorgpscale-orgList, show, switch organizationsservice-tokenpscale-service-tokenCreate, manage CI/CD service tokens

Should I use a branch or deploy request?

What's your goal? โ”œโ”€ Experimenting with schema changes โ†’ Create branch (pscale-branch) โ”œโ”€ Testing schema in isolation โ†’ Create branch (pscale-branch) โ”œโ”€ Ready to deploy schema to production โ†’ Create deploy request (pscale-deploy-request) โ””โ”€ Reviewing schema changes before production โ†’ Review deploy request (pscale-deploy-request)

Service token vs password?

What's your use case? โ”œโ”€ CI/CD pipeline โ†’ Service token (pscale-service-token) โ”œโ”€ Local development โ†’ Password (pscale-password) โ”œโ”€ Production application โ†’ Service token (rotatable, secure) โ””โ”€ One-off admin task โ†’ Password (temporary)

Direct promotion vs deploy request?

Production readiness? โ”œโ”€ Immediate promotion (dangerous) โ†’ pscale branch promote (pscale-branch) โ”œโ”€ Review + approval workflow โ†’ pscale deploy-request create (pscale-deploy-request) โ””โ”€ Safe production deployment โ†’ Always use deploy requests

Schema Migration Workflow

Complete workflow from branch creation to production deployment: # 1. Create development branch pscale branch create <database> <branch-name> # 2. Make schema changes (via shell, ORM, or direct SQL) pscale shell <database> <branch-name> # 3. View schema diff pscale branch diff <database> <branch-name> # 4. Create deploy request pscale deploy-request create <database> <branch-name> # 5. Review and deploy pscale deploy-request deploy <database> <deploy-request-number> # 6. Verify deployment pscale deploy-request show <database> <deploy-request-number> See scripts/ directory for automation.

Branch Development Workflow

# Create branch from main pscale branch create <database> <feature-branch> --from main # Work on schema changes pscale shell <database> <feature-branch> # Check diff before deploying pscale branch diff <database> <feature-branch> # Create deploy request when ready pscale deploy-request create <database> <feature-branch>

CI/CD Integration

# Create service token for CI/CD pscale service-token create --org <org> # Use in CI/CD pipelines (GitHub Actions, GitLab CI, etc.) export PLANETSCALE_SERVICE_TOKEN_ID=<token-id> export PLANETSCALE_SERVICE_TOKEN=<token> # Deploy via CI/CD pscale deploy-request create <database> <branch> --auto-approve

Most Common Commands

# Authentication pscale auth login pscale auth logout # Branch management pscale branch create <database> <branch> [--from <source-branch>] pscale branch list <database> pscale branch delete <database> <branch> # Deploy requests pscale deploy-request create <database> <branch> pscale deploy-request list <database> pscale deploy-request deploy <database> <number> # Database operations pscale database create <database> --org <org> pscale database list pscale shell <database> <branch>

Related Skills

drizzle-kit - ORM schema management and migrations gitlab-cli-skills - GitLab MR workflow integration github - GitHub PR and CI/CD integration

Automation Scripts

See scripts/ directory for token-efficient automation: create-branch-for-mr.sh - Create PlanetScale branch matching your MR/PR branch name deploy-schema-change.sh - Complete schema migration workflow sync-branch-with-main.sh - Sync development branch with main Scripts execute without loading into context (~90% token savings).

Resources

Official docs: https://planetscale.com/docs/reference/planetscale-cli GitHub: https://github.com/planetscale/cli Community: https://github.com/planetscale/discussion

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
6 Docs
  • SKILL.md Primary doc
  • pscale-auth/references/commands.md Docs
  • pscale-auth/SKILL.md Docs
  • pscale-backup/references/commands.md Docs
  • pscale-backup/SKILL.md Docs
  • README.md Docs