
Skill
planetscale-webhook-automation-recommendations
recommend PlanetScale webhook automation patterns
Description
Recommend webhook subscriptions and safe automation patterns for PlanetScale alerts, anomalies, schema recommendations, deploy requests, and agent workflows.
SKILL.md
Webhook automation recommendations
Purpose
Review and recommend PlanetScale webhooks that notify humans and trigger safe automation. Do not create or update webhooks without approval.
Webhook design principle
Webhooks may trigger automation, but automation must produce recommendations, issues, branches, or pull requests by default. It must not directly mutate production databases or production application behavior without explicit human approval.
Events to evaluate
General and Postgres
branch.anomaly: new Insights anomaly.branch.out_of_memory: Postgres out-of-memory event.branch.primary_promoted: primary failover/promotion.branch.ready: branch created and ready.branch.sleeping: branch sleeping.branch.start_maintenance: maintenance starting.cluster.storage: storage threshold or growth event.database.access_request: access request.branch.schema_recommendation: schema recommendation event when available.webhook.test: test event.
Vitess deploy lifecycle
deploy_request.openeddeploy_request.queueddeploy_request.in_progressdeploy_request.pending_cutoverdeploy_request.schema_applieddeploy_request.erroreddeploy_request.reverteddeploy_request.closedkeyspace.storage
Recommended routing
Human alerting
Send these to incident or operations channels:
branch.anomalybranch.out_of_memorybranch.primary_promotedbranch.start_maintenancecluster.storagekeyspace.storagedeploy_request.erroreddeploy_request.reverted
Engineering notification
Send these to Slack, Linear/Jira, or deployment channels:
deploy_request.openeddeploy_request.queueddeploy_request.in_progressdeploy_request.pending_cutoverdeploy_request.schema_applieddeploy_request.closedbranch.schema_recommendation
Agent intake queue
Send these to an agent-safe workflow:
branch.anomalybranch.schema_recommendationdeploy_request.erroredcluster.storagekeyspace.storage
Agent output may include, without approval:
- Triage summary, probable cause, linked Insights/query patterns.
- Recommended schema, code, Traffic Control, or operational change.
- Pull request against application code.
- Development branch with DDL or migration applied.
- Open deploy request into a review-protected branch.
- Issue or ticket.
Agent output must not cross the review gate on its own: no production
deploys, PR merges, Traffic Control enforcement, credential rotation, or
network changes — those require human action or a standing authorization
per ../13-autonomous-execution-mode/SKILL.md.
Webhook receiver requirements
Recommend only receivers that meet these requirements:
- HTTPS endpoint.
- Fast 2xx response; expensive work is queued asynchronously.
- No dependency on following redirects.
- Signature verification using PlanetScale webhook signature header and the webhook secret.
- Idempotency by event ID or timestamp/resource tuple.
- Dead-letter queue or retry-safe logging.
- Human-readable audit trail.
- Clear owner and escalation path.
- Secret rotation procedure.
Recommended automation flows
Anomaly to PR flow
- Receive
branch.anomaly. - Verify signature.
- Queue job.
- Fetch anomaly details and relevant Insights query patterns.
- Locate code path by SQLCommenter tags and repository search.
- Classify as schema, code, Traffic Control, or unknown.
- Generate report and optional PR.
- Ask human to approve database-affecting work.
Schema recommendation to branch/deploy flow
For Vitess:
- Receive
branch.schema_recommendation. - Fetch recommendation details.
- Apply the DDL to a development branch.
- Open a pull request with fingerprint, metrics, and expected effect.
- Open the deploy request — the DR and PR together are the reviewable unit; opening them requires no approval.
- Deploy on human approval, or autonomously under a standing
authorization that allowlists this deploy class
(
../13-autonomous-execution-mode/SKILL.md).
For Postgres:
- Receive
branch.schema_recommendation. - Fetch recommendation details.
- Convert DDL to application migration.
- Test on a non-production branch and record the result in the PR.
- Open PR.
- Apply to production on merge via the deployment pipeline, or on explicit approval where no pipeline exists.
Deploy request lifecycle flow for Vitess
- Notify when opened.
- Validate owner and linked application PR.
- Alert when queued or in progress.
- Alert strongly when errored or reverted.
- Notify pending cutover and require owner acknowledgement for gated deployments.
- Record schema applied and correlate with application deploy.
Anti-patterns to block
Do not recommend:
- Webhook directly runs production DDL, bypassing the PR/deploy-request workflow. (Driving the DDL through a branch, PR, and deploy request is the supported pattern, not an anti-pattern.)
- Webhook applies schema recommendations straight to production with no reviewable artifact.
- Webhook directly enforces Traffic Control.
- Webhook directly changes IP restrictions.
- Webhook directly rotates credentials.
- Webhook posts secrets or raw SQL with literals into public Slack channels.
- Webhook receiver ignores signature verification.
- Webhook receiver does long-running work before returning 2xx.
Output
Return:
- Existing webhook inventory.
- Missing recommended subscriptions.
- Destination quality review.
- Signature verification status.
- Automation opportunities.
- Unsafe automation risks.
- Proposed webhook changes requiring approval.
End with:
“No webhooks or automation endpoints have been created, updated, or deleted.”
More skills from the skills repository
View all 15 skillsplanetscale-autonomous-execution-mode
execute autonomous PlanetScale database changes
Jul 5AutomationDatabaseOperationsPlanetScale +1planetscale-best-practices-matrix
evaluate PlanetScale best practices feature matrix
Jul 27AutomationDatabasePerformancePlanetScaleplanetscale-change-gates-and-approval-contract
enforce approval gates for database mutations
Jul 7ApprovalsDatabaseGovernancePlanetScaleplanetscale-codebase-sqlcommenter-instrumentation
instrument PlanetScale applications with SQLCommenter
Jul 7Code AnalysisDatabaseObservabilityPlanetScale +1planetscale-customer-report-template
generate PlanetScale best practices reports
Jul 7DocumentationPlanetScaleReportingTemplatesplanetscale-mcp-agent-operating-model
configure safe PlanetScale MCP agent behavior
Jul 7MCPOperationsPlanetScale
More from PlanetScale
View publishermysql
plan and optimize MySQL database schemas
database-skills
Apr 6Data ModelingDatabaseMySQLPerformance +1neki
manage sharded PostgreSQL with Neki
database-skills
Jul 24DatabasePerformancePlanetScalePostgreSQLpostgres
optimize PostgreSQL database performance
database-skills
Apr 6DatabasePerformancePostgreSQLSQLvitess
optimize Vitess database performance and sharding
database-skills
Apr 6DatabasePerformancePlanetScaleSQL +1planetscale-postgres-safety-review
review PlanetScale Postgres safety and configuration
skills
Jul 7AuditPlanetScalePostgreSQLSecurityplanetscale-pscale-cli-automation
automate PlanetScale CLI operations
skills
Jul 7AutomationCLIDatabasePlanetScale