Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add hamzaPixl/pixl-ai --skill docker-prisma-setupgit clone --depth 1 https://github.com/hamzaPixl/pixl-aiWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/hamzapixl/pixl-ai/docker-prisma-setup)<a href="https://agentmods.dev/skills/hamzapixl/pixl-ai/docker-prisma-setup"><img src="https://agentmods.dev/badge/skills/hamzapixl/pixl-ai/docker-prisma-setup.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00058 | $0.01298 |
| Opus 5 | $0.00029 | $0.00649 |
| Sonnet 5 | $0.00012 | $0.00260 |
| Haiku 4.5 | $0.00006 | $0.00130 |
Grade A, and why
docker-prisma-setup scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Makes network callslowCapability
Not a fault in itself. Listed so you know the mod talks to something, and to what.
2. Test health: `curl -s http://localhost:<port>/health` How it starts
The opening of the file, as written. The whole thing — 114 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Overview
Sets up a fully working local development environment for a TypeScript backend using Docker Compose (Postgres + Redis) and Prisma ORM. Handles common pitfalls: Docker daemon hangs, workspace protocol deps, missing packages, and RBAC wiring.
Step 1: Pre-flight Checks
- Verify Docker Desktop is running:
docker info >/dev/null 2>&1 - If Docker is hung (command hangs >10s):
- Force-kill all Docker processes:
killall -9 Docker "Docker Desktop" com.docker.backend com.docker.vmnetd - Wait 2s, then relaunch:
open -a "Docker Desktop" - Poll readiness:
for i in $(seq 1 30); do docker info >/dev/null 2>&1 && break; sleep 3; done
- Force-kill all Docker processes:
- Check project structure exists:
docker-compose.ymlat project rootprisma/schema.prismain the service directorypackage.jsonwith prisma dependency
Step 2: Start Docker Containers
- Read
docker-compose.ymlto identify required env vars (e.g.POSTGRES_PASSWORD) - Start containers:
POSTGRES_PASSWORD=postgres docker compose up -d - Verify services are healthy:
- Postgres:
docker exec <container> pg_isready - Redis:
nc -z localhost 6379
- Postgres:
- If port conflicts, check for existing processes:
lsof -i :5432
Step 3: Create .env File
- Check if
services/<name>/.envalready exists - Read
prisma/schema.prismafor theDATABASE_URLenv var name - Create
.envwith:DATABASE_URL=postgresql://postgres:postgres@localhost:5432/<db>?schema=public JWT_SECRET=dev-secret-change-in-production REDIS_URL=redis://localhost:6379 - Verify
.envis in.gitignore— warn if not
IMPORTANT: Use cat > ... << 'EOF' via Bash if the Write tool is blocked by credential hooks.
Step 4: Install Dependencies
- Detect package manager:
- Check for
bun.lock→ usebun install - Check for
pnpm-lock.yaml→ usepnpm install - Check for
package-lock.json→ usenpm install
- Check for
- Workspace protocol gotcha: If
package.jsoncontains"workspace:*"dependencies, you MUST usebunorpnpm(npm does not supportworkspace:protocol) - Install from the monorepo root, not the service directory
- If a specific dep is missing (e.g.
dotenv), add it to the service:bun add dotenv
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 8d ago First seen · 114 lines · 58 tokens per session scan A a153161fa2a0
docker-prisma-setup is a skill published in the GitHub repository hamzaPixl/pixl-ai (2 stars, last pushed 4mo ago), licensed MIT. It adds 58 tokens to every session and 1,298 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
polar-local-environment
This skill should be used when setting up or managing Polar local development environment with Docker.
cnpg
Create and operate CloudNativePG (CNPG) Postgres databases on Kubernetes the GitOps/Flux way - on managed cloud (GKE + GCS via Workload Identity) OR self-hosted (K3s/bare-metal + any S3-compatible store via a credentials secret). Covers Cluster + ScheduledBackup manifests, barman WAL archiving, pgvector, PITR…
alloydb-omni-container
You're an expert in AlloyDB Omni running in a container. You can help users with related tasks such as starting, stopping, listing, connecting to AlloyDB Omni instance running in a container, and querying for logs.
postgres-operator-cloudnative-pg-migration
Migrate PostgreSQL clusters from the Zalando postgres-operator (acid.zalan.do postgresql CRs, Spilo/Patroni, WAL-G) to CloudNativePG (CNPG) on Kubernetes, incl. fully air-gapped clusters. Core knowledge: the two walls (Spilo↔CNPG glibc/collation divergence that corrupts physically-copied indexes; WAL-G↔Barman archive…
docker-dev-environment
Use when setting up local development services or running the project locally. Establishes the "stateful services in Docker, app runs native" pattern with Postgres, Redis, MinIO, and Mailpit.
local-stack
This skill should be used when the user or an agent needs to run an application's external dependencies locally in containers — "docker-compose", "local stack", "spin up postgres", "test against a real database", "mailhog", "mailpit", "minio", "localstack", "stripe-mock", "wiremock", "service emulator", "healthcheck"…