Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions FOOTER.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,17 @@ Common issues and solutions for pgpm, PostgreSQL, and testing.

* [constructive-skills](https://github.com/constructive-io/constructive-skills): **📖 Platform documentation and AI agent skills** — feature catalog, blueprint reference, SDK guides (i18n, billing, limits, events, uploads, security, entities, search, AI), and deployment guides.

Install skills for AI coding agents:

```bash
# All platform skills (security, blueprints, codegen, billing, etc.)
npx skills add constructive-io/constructive-skills

# Individual repo skills (pgpm, testing, CLI, search, etc.)
npx skills add https://github.com/constructive-io/constructive --skill pgpm
npx skills add https://github.com/constructive-io/constructive --skill constructive-testing
```

## Credits

**🛠 Built by the [Constructive](https://constructive.io) team — creators of modular Postgres tooling for secure, composable backends. If you like our work, contribute on [GitHub](https://github.com/constructive-io).**
Expand Down
14 changes: 14 additions & 0 deletions pgpm/cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -454,3 +454,17 @@ Most commands support these global options:
- `--help, -h` - Show help information
- `--version, -v` - Show version information
- `--cwd <dir>` - Set working directory

## AI Agent Skills

Install the pgpm skill for AI coding agents (Devin, Claude Code, Cursor, Copilot):

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

For the full Constructive platform skills (security, blueprints, codegen, billing, etc.):

```bash
npx skills add constructive-io/constructive-skills
```
Loading