prisma-postgres

Design and migrate PostgreSQL schemas with Prisma in Bun + Hono environments.

1|Updated Apr 18, 2026
One-click install
npx skills add https://github.com/tkgstrator/KotoTV --skill prisma-postgres-tkgstrator
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: prisma-postgres
Source: https://github.com/tkgstrator/KotoTV/tree/main/.claude/skills/prisma-postgres
Command: npx skills add https://github.com/tkgstrator/KotoTV --skill prisma-postgres-tkgstrator

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Prisma + Postgres schema design and migration workflow for Bun/Hono apps, plus ready-to-use client instantiation and dev inspection.

Core Features & Use Cases

  • Schema design in packages/server/prisma/schema.prisma
  • Prisma Migrate workflow with dev and prod environments
  • Client instantiation for Bun + Hono
  • Dev inspection via pgAdmin

Quick Start

Start the devcontainer and boot the Bun + Hono server to begin developing against the Postgres database.

Frequently Asked Questions about prisma-postgres

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I set up Prisma with Postgres in a Bun and Hono project?▼

To set up Prisma with Postgres in a Bun and Hono project, start the devcontainer, configure your .env and compose files, then design your schema in packages/server/prisma/schema.prisma and run migrations against the dev database.

Can I use Prisma Migrate for local Postgres development inside a devcontainer?▼

Yes, Prisma Migrate works for local Postgres development inside a devcontainer by utilizing a dedicated dev Postgres container and environment configuration, allowing you to apply and track schema changes seamlessly.

What is the best way to inspect a Postgres database during Prisma schema development?▼

The best way to inspect a Postgres database during Prisma schema development is using pgAdmin, which connects to your dev Postgres container to visually verify migrations and table structures.

How does Prisma client instantiation work in a Bun environment?▼

Prisma client instantiation in a Bun environment involves generating the client from your schema and initializing it within your Hono server code to execute database queries directly.

Do I need specific environment configurations to run Prisma migrations with Postgres?▼

Yes, running Prisma migrations with Postgres requires specific environment configurations, including settings defined in your .env file and compose files to connect the Prisma tooling to the dev Postgres container.