← Back to Skills Marketplace
agentlevier

Polsia Neon PostgreSQL

by agentlevier · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
36
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install polsia-neon-postgres
Description
Use Neon PostgreSQL conventions for Polsia apps, including migration patterns and DATABASE_URL usage.
README (SKILL.md)

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
Usage Guidance
This skill appears safe to install as a guidance-only database convention skill. Before using it on a real app, review generated migrations carefully because startup-run migrations and rollback examples such as DROP TABLE can affect live data if applied incorrectly.
Capability Assessment
Purpose & Capability
The artifact coherently provides Neon PostgreSQL conventions for Polsia apps, including DATABASE_URL use, migration file naming, migration shape, and parameterized query guidance.
Instruction Scope
Instructions are scoped to database connection and migration practices; they do not ask the agent to bypass controls, collect unrelated data, or run hidden commands.
Install Mechanism
The package contains only SKILL.md and no install scripts, binaries, dependencies, or executable files.
Credentials
Use of DATABASE_URL and database migrations is expected for a PostgreSQL skill, but users should recognize that migrations can change production schema when run.
Persistence & Privilege
No persistence mechanism, background worker, privilege escalation, credential harvesting, or automatic execution path is present in the artifact.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install polsia-neon-postgres
  3. After installation, invoke the skill by name or use /polsia-neon-postgres
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release
Metadata
Slug polsia-neon-postgres
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

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.

💬 Comments