prisma generate
built-in 0.0% Savings
0 Commands
0 Tokens saved
2 Tests
Install
Safety checks passed
Filter definition
command = "prisma generate"
description = "Strip box drawing; show generated client name"
skip = ["^[┌│└─╔╗╚╝║═]", "^Prisma schema", "Environment variables"]
[on_success]
extract = { pattern = "Generated (.+)", output = "✓ Generated {1}" }
[on_failure]
tail = 10
Examples
schema error shows tail
~146 tokens → ~31 tokens
(79% saved)
Raw output
┌─────────────────────────────────────────────────────────┐ │ Prisma schema loaded from prisma/schema.prisma │ └─────────────────────────────────────────────────────────┘ Environment variables loaded from .env error: Schema parsing error --> schema.prisma:10 | 10| unknown_field String | Attribute not known: "@unknown_field"
Filtered output
error: Schema parsing error --> schema.prisma:10 | 10| unknown_field String | Attribute not known: "@unknown_field"
generate extracts client version
~134 tokens → ~19 tokens
(86% saved)
Raw output
┌─────────────────────────────────────────────────────────┐ │ Prisma schema loaded from prisma/schema.prisma │ └─────────────────────────────────────────────────────────┘ Environment variables loaded from .env ✔ Generated Prisma Client (v5.9.1) to ./node_modules/@prisma/client in 67ms
Filtered output
✓ Generated Prisma Client (v5.9.1) to ./node_modules/@prisma/client in 67ms
Warning: Community filters are third-party code. Review the filter definition above before installing it in production environments.Browse all filters