neon-postgres-egress-optimizer Skill
Diagnose and fix excessive Postgres egress (network data transfer) in a codebase. Use when a user mentions high database bills, unexpected data transfer costs, network transfer charges, egress spikes, "why is my Neon bill so high", "database costs jumped", SELECT optimization, query overfetching, reduce Neon costs, opt Published by openai in plugins.
What is neon-postgres-egress-optimizer Skill?
Diagnose and fix excessive Postgres egress (network data transfer) in a codebase. Use when a user mentions high database bills, unexpected data transfer costs, network transfer charges, egress spikes, "why is my Neon bill so high", "database costs jumped", SELECT optimization, query overfetching, reduce Neon costs, opt Published by openai in plugins. This profile combines repository metadata with install, compatibility, and usage signals so developers can quickly decide whether it fits their agent workflow before opening the source repository.
Automated repository signals based on public metadata such as recency, license, installation evidence, and adoption. These are not a security audit or endorsement.
Key capabilities
- Includes SKILL.md support
- Reusable instructions support
- Database workflows
- Data analysis
- Database workflows use cases
- Data analysis use cases
Technical details
- Install or run with Copy skill directory
When to use neon-postgres-egress-optimizer Skill
- Use it for database workflows.
- Use it for data analysis.
Built with
Editorial notes
Source
- Creator: openai
- Repository: openai/plugins
- Skill file: plugins/neon-postgres/skills/neon-postgres-egress-optimizer/SKILL.md
What it does
Diagnose and fix excessive Postgres egress (network data transfer) in a codebase. Use when a user mentions high database bills, unexpected data transfer costs, network transfer charges, egress spikes, "why is my Neon bill so high", "database costs jumped", SELECT optimization, query overfetching, reduce Neon costs, opt
Skill instructions
Postgres Egress Optimizer Guide the user through diagnosing and fixing application-side query patterns that cause excessive data transfer (egress) from their Postgres database. Most high egress bills come from the application fetching more data than it uses. Step 1: Diagnose Identify which queries transfer the most data. The primary tool is the pgstatstatements extension. Check if pgstatstatements is available sql SELECT 1 FROM pgstatstatements LIMIT 1; If this errors, the extension needs to be created: sql CREATE EXTENSION IF NOT EXISTS pgstatstatements; On Neon, it is available by default but may need this CREATE EXTENSION step. Handle empty stats Stats are cleared when a Neon compute scales to zero and restarts. If the stats are empty or the compute recently woke up: 1. Reset the stats to start a clean measurement window: SELECT pgstatstatementsreset(); 2. Let the application run under representative traffic for at least an hour. 3. Return and run the diagnostic queries below. If th
Explore related resources
Frequently asked questions
What is neon-postgres-egress-optimizer?
neon-postgres-egress-optimizer is a open-source AI agent skill with Copy skill directory. Diagnose and fix excessive Postgres egress (network data transfer) in a codebase.
Who is neon-postgres-egress-optimizer best for?
neon-postgres-egress-optimizer is best for reusing agent instructions, scripts, and references, database workflows, data analysis workflows.
How do I install neon-postgres-egress-optimizer?
Install or run neon-postgres-egress-optimizer using Copy skill directory. Check neon-postgres-egress-optimizer for the latest setup command.
Is neon-postgres-egress-optimizer actively maintained?
neon-postgres-egress-optimizer may need a closer maintenance check before production use.
Auto-fetched from GitHub.