AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

PostgreSQL

skill-pledgeandgrow-pledge-skills-postgresql · by pledgeandgrow

|

No reviews yet
0 installs
21 views
0.0% view→install

Install

$ agentstack add skill-pledgeandgrow-pledge-skills-postgresql

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-pledgeandgrow-pledge-skills-postgresql)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
19d ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of PostgreSQL? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

PostgreSQL 17 Documentation Skill

Overview

PostgreSQL is a powerful, open source object-relational database system that uses and extends the SQL language combined with many features that safely store and scale the most complicated data workloads. With more than 35 years of active development, PostgreSQL has earned a strong reputation for reliability, feature robustness, and performance.

Key Benefits

  • ACID-compliant — full transactional integrity with MVCC
  • Extensible — custom types, functions, operators, indexes, procedural languages
  • Standards-compliant — SQL:2023 conformance with extensive extensions
  • Scalable — parallel queries, partitioning, logical replication, connection pooling
  • Rich type system — numeric, text, temporal, geometric, network, JSON, arrays, ranges, custom types
  • Full text search — built-in tsvector/tsquery with dictionaries and ranking
  • Procedural languages — PL/pgSQL, PL/Tcl, PL/Perl, PL/Python, and more
  • High availability — streaming replication, log-shipping, hot standby, logical replication

File Index

| File | Topics | |------|--------| | getting-started.md | Installation, architecture, tutorial (SQL basics, joins, aggregates, views, foreign keys, transactions, window functions, inheritance) | | sql-language.md | SQL syntax, data types (40+ types), DDL (tables, constraints, schemas, partitioning, inheritance), DML, queries (CTEs, window functions, GROUPING SETS), functions & operators, indexes (B-Tree, Hash, GiST, SP-GiST, GIN, BRIN), full text search, concurrency control (MVCC, isolation levels, locking), performance tips (EXPLAIN, statistics), parallel query | | server-admin.md | Server configuration (200+ parameters), client authentication (pghba.conf, 10+ auth methods), database roles & privileges, managing databases, localization, maintenance (VACUUM, ANALYZE), backup & restore (pgdump, PITR, file system), high availability & replication (streaming, synchronous, cascading, hot standby), monitoring (pgstatactivity, pgstatstatements, progress reporting), WAL, logical replication (publications, subscriptions, row filters), JIT compilation | | server-programming.md | Extending SQL (functions, procedures, aggregates, types, operators, extensions), triggers (row-level, statement-level, INSTEAD OF), event triggers, PL/pgSQL (structure, declarations, control structures, cursors, transaction management, errors), PL/Tcl, PL/Perl, PL/Python, SPI, logical decoding, contrib modules (48 extensions: pgstatstatements, postgresfdw, hstore, pgcrypto, pgtrgm, ltree, dblink, citext, unaccent, uuid-ossp, etc.), SQL command reference (140+ commands) | | internals-reference.md | Client interfaces (libpq C API: connection, execution, async, pipeline, COPY, notify, SSL, env vars, .pgpass; large objects; ECPG embedded SQL), internals (architecture, query pipeline, 60+ system catalogs, 36 system views, frontend/backend protocol v3, message types, replication protocol), reference (21 client applications: psql/createdb/pgdump/etc., 14 server applications: initdb/pgctl/postgres/etc.), appendixes (error codes: 30+ classes with common codes, SQL key words: reserved/unreserved, external projects: drivers/ORMs/GUI tools/poolers/HA/monitoring/migration/extensions) |

Quick Start

# Install (macOS)
brew install postgresql@17

# Install (Ubuntu/Debian)
sudo apt install postgresql-17

# Install (Windows)
# Download installer from https://www.postgresql.org/download/windows/

# Start the server
pg_ctl -D /usr/local/var/postgres start

# Create a database
createdb mydb

# Connect with psql
psql mydb

# Basic SQL
CREATE TABLE users (id SERIAL PRIMARY KEY, name TEXT NOT NULL, email TEXT UNIQUE);
INSERT INTO users (name, email) VALUES ('Alice', 'alice@example.com');
SELECT * FROM users;

Documentation Links

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.