Polsia Neon PostgreSQL
/install polsia-neon-postgres
Neon PostgreSQL
Polsia apps use Neon PostgreSQL. DATABASE_URL is automatically provided.
Connection
const { Pool } = require('pg');
const pool = new Pool({ connectionString: process.env.DATABASE_URL });
Migrations
Create files in migrations/ with timestamp prefix: 1704067200000_add_products_table.js
Migration Format
module.exports = {
up: async (pool) => {
await pool.query(`CREATE TABLE products (...)`);
},
down: async (pool) => {
await pool.query(`DROP TABLE products`);
}
};
Key Rules
- DATABASE_URL is NOT available at build time on Render
- Run migrations in startCommand, not buildCommand
- Always use parameterized queries ($1, $2) for user input
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install polsia-neon-postgres - After installation, invoke the skill by name or use
/polsia-neon-postgres - Provide required inputs per the skill's parameter spec and get structured output
What is Polsia Neon PostgreSQL?
Use Neon PostgreSQL conventions for Polsia apps, including migration patterns and DATABASE_URL usage. It is an AI Agent Skill for Claude Code / OpenClaw, with 36 downloads so far.
How do I install Polsia Neon PostgreSQL?
Run "/install polsia-neon-postgres" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is Polsia Neon PostgreSQL free?
Yes, Polsia Neon PostgreSQL is completely free, licensed under MIT-0. You can download, install and use it at no cost.
Which platforms does Polsia Neon PostgreSQL support?
Polsia Neon PostgreSQL is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created Polsia Neon PostgreSQL?
It is built and maintained by agentlevier (@agentlevier); the current version is v1.0.0.