Token导航 LogoToken导航TokenDH.com
运维和基础设施敏感数据github未标认证来源可访问许可证需确认审计提醒

pgpmpgpm 命令行

Agent Skill

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

总安装

346

周安装

14

GitHub Stars

公开资料未说明

下载量

109
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/constructive-io/constructive-skills --skill pgpm

简介

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

  • 适合围绕仓库状态、代码变更或协作事项进行整理。pgpm 属于运维和基础设施类 Skill,可作为该场景下的辅助能力补充。
  • 可结合来源仓库和 README 核验具体用法。
  • 安装前建议确认权限范围和维护状态,避免越权操作。
  • 注意是否会触发联网、命令执行或文件读写,谨慎授权。

SKILL.md

pgpm (PostgreSQL Package Manager)

pgpm provides deterministic, plan-driven database migrations with dependency management and modular packaging. It brings npm-style modularity to PostgreSQL database development — every change is deployed exactly once and reverted exactly once.

When to Apply

Use this skill when:

  • Creating projects: Setting up workspaces, initializing modules
  • Writing changes: Adding tables, functions, triggers, indexes, RLS policies
  • Managing dependencies: Within-module and cross-module references,.control files
  • Deploying: Running deploy/verify/revert, tagging releases, checking status
  • Testing: Writing PostgreSQL integration tests with pgsql-test
  • Configuring: Docker setup, environment variables, connection config
  • Managing extensions: Adding PostgreSQL extensions or pgpm modules
  • Publishing: Bundling and publishing @pgpm/* modules to npm
  • Troubleshooting: Connection issues, deployment failures, testing problems

Quick Start

# 1. Install pgpm
npm install -g pgpm

# 2. Start a local PostgreSQL container
pgpm docker start
eval "$(pgpm env)"

# 3. Create a workspace
pgpm init workspace
# Enter workspace name when prompted
cd my-database-project
pnpm install

# 4. Create a module
pgpm init
# Enter module name (e.g., "pets") and select extensions

# 5. Add a change
cd packages/pets
pgpm add schemas/pets
pgpm add schemas/pets/tables/pets --requires schemas/pets

# 6. Write your SQL (see "Three-File Pattern" below)

# 7. Deploy
pgpm deploy --createdb --database mydb

Core Concepts

Three-File Pattern

Every database change consists of three files:

FilePurposeHeader
deploy/<change>.sqlCreates the object-- Deploy <change> to pg
revert/<change>.sqlRemoves the object-- Revert <change> from pg
verify/<change>.sqlConfirms deployment-- Verify <change> on pg

pgpm.plan

The plan file controls deployment order. Each line:

change_name [dep1 dep2] 2026-01-25T00:00:00Z author <email@example.org>

Dependencies [...] must come immediately after the change name, before the timestamp.

.control File

Each module has a .control file declaring its name and PostgreSQL extension dependencies:

comment = 'My database module'
default_version = '0.0.1'
requires = 'uuid-ossp,plpgsql'

The requires field uses control file names (e.g., pgpm-base32), NOT npm names (e.g., @pgpm/base32). See references/module-naming.md for details.

Workspace vs Module

  • Workspace = pnpm monorepo containing one or more modules (pgpm init workspace)
  • Module = individual database package with its own.control, pgpm.plan, and deploy/revert/verify directories (pgpm init)

Critical Rules

1. NEVER Use CREATE OR REPLACE

pgpm is deterministic. Each change deploys exactly once. To modify an existing object, create a new change that drops and recreates it.

-- CORRECT
CREATE FUNCTION app.my_function() ...

-- WRONG
CREATE OR REPLACE FUNCTION app.my_function() ...

2. NO Transaction Wrapping

Do NOT add BEGIN/COMMIT to SQL files. pgpm handles transactions automatically.

-- CORRECT — just the raw SQL
CREATE TABLE app.users ( ... );

-- WRONG
BEGIN;
CREATE TABLE app.users ( ... );
COMMIT;

3. NEVER Run CREATE EXTENSION Directly

pgpm handles extension creation during deploy. Declare extensions in your .control file's requires field instead.

Key Commands Quick Reference

CommandPurpose
pgpm init workspaceCreate a new pnpm monorepo workspace
pgpm initCreate a new module in a workspace
pgpm add <path> --requires <dep>Add a new change (creates deploy/revert/verify files)
pgpm deployDeploy changes to database
pgpm deploy --createdb --database <name>Create database and deploy
pgpm verifyRun verification scripts
pgpm revert --to <change>Revert changes back to a specific point
pgpm tag <version>Tag current state for targeted deploys
pgpm install <module>Install a pgpm module dependency
pgpm extensionInteractive dependency selector
pgpm test-packagesTest all packages
pgpm test-packages --full-cycleTest deploy → verify → revert → redeploy
pgpm docker startStart PostgreSQL container
pgpm docker stopStop PostgreSQL container
pgpm envPrint environment variable exports
pgpm migrate statusShow deployed vs pending changes
pgpm planGenerate plan from SQL -- requires: comments
pgpm packageBundle module for publishing

Essential Development Workflow

# Start PostgreSQL and load environment
pgpm docker start
eval "$(pgpm env)"

# Bootstrap admin users (first time)
pgpm admin-users bootstrap --yes
pgpm admin-users add --test --yes

# Add a new change
pgpm add schemas/app/tables/orders --requires schemas/app

# Edit deploy/revert/verify SQL files

# Deploy and verify
pgpm deploy --createdb --database mydb
pgpm verify

# Run tests
pnpm test

# Tag a release
pgpm tag v1.0.0

Common Workflows

Adding a Table

# Add the change
pgpm add schemas/app/tables/users --requires schemas/app
-- deploy/schemas/app/tables/users.sql
-- Deploy schemas/app/tables/users to pg
-- requires: schemas/app

CREATE TABLE app.users (
  id uuid PRIMARY KEY DEFAULT uuid_generate_v4(),
  email text NOT NULL UNIQUE,
  name text NOT NULL,
  created_at timestamptz NOT NULL DEFAULT now()
);
-- revert/schemas/app/tables/users.sql
-- Revert schemas/app/tables/users from pg

DROP TABLE IF EXISTS app.users;
-- verify/schemas/app/tables/users.sql
-- Verify schemas/app/tables/users on pg

DO $$
BEGIN
  ASSERT (SELECT EXISTS (
    SELECT FROM information_schema.tables
    WHERE table_schema = 'app' AND table_name = 'users'
  )), 'Table app.users does not exist';
END $$;

Writing Tests (with pgsql-test)

import { getConnections } from 'pgsql-test';
import * as seed from 'pgsql-test/seed';

let db, teardown;

beforeAll(async () => {
  ({ db, teardown } = await getConnections({}, [
    seed.pgpm({ database: 'mydb' })
  ]));
});
afterAll(() => teardown());
beforeEach(() => db.beforeEach());
afterEach(() => db.afterEach());

it('creates a user', async () => {
  const result = await db.query(`
    INSERT INTO app.users (email, name)
    VALUES ('test@example.com', 'Test User')
    RETURNING *
  `);
  expect(result.rows[0].email).toBe('test@example.com');
});

CI/CD Full-Cycle Validation

pgpm test-packages --full-cycle

This proves: deploy → verify → revert → redeploy works for every module.

Fixing a Broken Deploy

# Check status
pgpm migrate status

# Revert the bad change
pgpm revert --to <last-good-change>

# Fix the SQL, then redeploy
pgpm deploy

Troubleshooting Quick Reference

IssueQuick Fix
Can't connect to databasepgpm docker start && eval "$(pgpm env)"
PGHOST not seteval "$(pgpm env)" — must use eval, not run in subshell
Transaction aborted in testsUse db.beforeEach() / db.afterEach() savepoint pattern
Tests interfere with each otherEnsure every test file has beforeEach/afterEach hooks
Module not found during deployVerify .control file exists and workspace structure is correct
Dependency not foundCheck .control requires uses control names, not npm names
Port 5432 already in uselsof -i:5432 then stop conflicting process
Invalid line format in pgpm.planDependencies [...] must come right after change name, before timestamp
CREATE OR REPLACE errorRemove OR REPLACE — pgpm is deterministic
Container won't startpgpm docker start --recreate for a fresh container

See references/troubleshooting.md for detailed solutions.

Reference Guide

Consult these reference files for detailed documentation on specific topics:

ReferenceTopicConsult When
references/cli.mdComplete CLI command referenceLooking up command flags, options, or less common commands
references/workspace.mdCreating and managing workspacesSetting up a new project, understanding workspace structure
references/changes.mdAuthoring database changesWriting deploy/revert/verify scripts, using pgpm add
references/sql-conventions.mdSQL file format and conventionsWriting SQL files, naming conventions, header format
references/dependencies.mdManaging module dependenciesWithin-module or cross-module dependency references
references/deploy-lifecycle.mdDeploy/verify/revert lifecycleUnderstanding deployment process, tagging, status checking
references/docker.mdDocker container managementStarting/stopping PostgreSQL, custom container options
references/env.mdEnvironment variable managementLoading env vars, profiles, Supabase local development
references/environment-configuration.md@pgpmjs/env library APIProgrammatic configuration, config hierarchy, utility functions
references/extensions.mdPostgreSQL extensions & pgpm modulesAdding extensions, installing @pgpm/* modules,.control requires
references/module-naming.mdnpm names vs control file namesConfused about which identifier to use where
references/plan-format.mdpgpm.plan file formatFixing Invalid line format errors, editing plan files manually
references/publishing.mdPublishing modules to npmBundling, versioning with lerna, publishing @pgpm/* packages
references/testing.mdPostgreSQL integration testsSetting up pgsql-test, seed adapters, test patterns
references/troubleshooting.mdCommon issues and solutionsDebugging connection, deployment, testing, or Docker problems
references/ci-cd.mdGitHub Actions CI/CD workflowsSetting up CI for pgpm projects, PostgreSQL service containers, test sharding

Cross-References

Related skills (separate from this skill):

  • constructive-starter-kits — Detailed pgpm init templates and boilerplate options
  • constructive-testing — Specialized PostgreSQL testing patterns (RLS, seeding, snapshots, JWT context)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

37.08%
按下载量换算40

Claude

28.58%
按下载量换算31

Cursor

17.66%
按下载量换算19

Gemini CLI

10.29%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

可疑

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills