Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/docs/content/docs/ai/tools/skills.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Covers `npx create-db`, Console operations, programmatic provisioning via the Ma
[Prisma Next](/orm/next) ships its own skill set, versioned with the product. Projects scaffolded with `create-prisma` install them automatically; add them to an existing project with:

```npm
npx skills add prisma/prisma-next/skills
npx skills add prisma/prisma/skills
```

| Skill | What your agent uses it for |
Expand Down
12 changes: 6 additions & 6 deletions apps/docs/content/docs/orm/next/extensions/using-extensions.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -105,15 +105,15 @@ You can build an extension that does not exist yet. The catalog is first-party t

| Extension | Adds | Package |
| --- | --- | --- |
| [pgvector](https://github.com/prisma/prisma-next/tree/main/packages/3-extensions/pgvector#readme) | Vector columns and similarity search | `@prisma-next/extension-pgvector` |
| [PostGIS](https://github.com/prisma/prisma-next/tree/main/packages/3-extensions/postgis#readme) | Geometry columns and geo queries | `@prisma-next/extension-postgis` |
| [ParadeDB](https://github.com/prisma/prisma-next/tree/main/packages/3-extensions/paradedb#readme) | BM25 full-text search indexes | `@prisma-next/extension-paradedb` |
| [Supabase](https://github.com/prisma/prisma-next/tree/main/packages/3-extensions/supabase#readme) | Supabase auth and storage tables, role-bound clients | `@prisma-next/extension-supabase` |
| [arktype-json](https://github.com/prisma/prisma-next/tree/main/packages/3-extensions/arktype-json#readme) | JSON columns validated by an arktype schema | `@prisma-next/extension-arktype-json` |
| [pgvector](https://github.com/prisma/prisma/tree/main/packages/3-extensions/pgvector#readme) | Vector columns and similarity search | `@prisma-next/extension-pgvector` |
| [PostGIS](https://github.com/prisma/prisma/tree/main/packages/3-extensions/postgis#readme) | Geometry columns and geo queries | `@prisma-next/extension-postgis` |
| [ParadeDB](https://github.com/prisma/prisma/tree/main/packages/3-extensions/paradedb#readme) | BM25 full-text search indexes | `@prisma-next/extension-paradedb` |
| [Supabase](https://github.com/prisma/prisma/tree/main/packages/3-extensions/supabase#readme) | Supabase auth and storage tables, role-bound clients | `@prisma-next/extension-supabase` |
| [arktype-json](https://github.com/prisma/prisma/tree/main/packages/3-extensions/arktype-json#readme) | JSON columns validated by an arktype schema | `@prisma-next/extension-arktype-json` |

All target PostgreSQL. ParadeDB and Supabase are experimental (ParadeDB covers the `key_field` index option only so far); the rest are Early Access. Extension names link to each package's README on GitHub.

For a working project per extension, see the runnable examples: [pgvector](https://github.com/prisma/prisma-next/tree/main/examples/prisma-next-demo), [PostGIS](https://github.com/prisma/prisma-next/tree/main/examples/prisma-next-postgis-demo), [ParadeDB](https://github.com/prisma/prisma-next/tree/main/examples/paradedb-demo), and [Supabase](https://github.com/prisma/prisma-next/tree/main/examples/supabase).
For a working project per extension, see the runnable examples: [pgvector](https://github.com/prisma/prisma/tree/main/examples/prisma-next-demo), [PostGIS](https://github.com/prisma/prisma/tree/main/examples/prisma-next-postgis-demo), [ParadeDB](https://github.com/prisma/prisma/tree/main/examples/paradedb-demo), and [Supabase](https://github.com/prisma/prisma/tree/main/examples/supabase).

## See also

Expand Down
2 changes: 1 addition & 1 deletion apps/docs/content/docs/orm/next/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ Prisma Next is being built in the open. The full story spans this nine-part seri

:::note[More Prisma Next docs are coming soon]

Prisma Next is in active development, and full conceptual and reference documentation is on the way. Follow along on the [Prisma blog](https://www.prisma.io/blog) and explore the source on [GitHub](https://github.com/prisma/prisma-next).
Prisma Next is in active development, and full conceptual and reference documentation is on the way. Follow along on the [Prisma blog](https://www.prisma.io/blog) and explore the source on [GitHub](https://github.com/prisma/prisma).

:::

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ override get operations() {
}
```

The full working migration, including the two query-plan helpers, is in the Prisma Next repo's [retail-store example](https://github.com/prisma/prisma-next/blob/main/examples/retail-store/migrations/app/20260513T0508_backfill_product_status/migration.ts).
The full working migration, including the two query-plan helpers, is in the Prisma Next repo's [retail-store example](https://github.com/prisma/prisma/blob/main/examples/retail-store/migrations/app/20260513T0508_backfill_product_status/migration.ts).

## Starting from a blank migration

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,8 +115,8 @@ Four read-only commands, each answering a different question:
The Prisma Next repo ships example graphs (a diamond, a wide fan-out, converging branches, rollback chains) as ready-to-render fixtures:

```bash
git clone https://github.com/prisma/prisma-next
cd prisma-next && pnpm install && pnpm -w build && pnpm install
git clone https://github.com/prisma/prisma
cd prisma && pnpm install && pnpm -w build && pnpm install
Comment on lines +118 to +119

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win

Use the canonical repository name in adjacent prose.

The changed links and clone command now target prisma/prisma, but nearby text still calls it the “Prisma Next repo.”

  • apps/docs/content/docs/orm/next/migrations/the-migration-graph.mdx#L118-L119: update the preceding “Prisma Next repo ships…” wording.
  • apps/docs/content/docs/orm/next/migrations/editing-a-migration.mdx#L198-L198: change “Prisma Next repo's” to “Prisma repository's” or equivalent.
📍 Affects 2 files
  • apps/docs/content/docs/orm/next/migrations/the-migration-graph.mdx#L118-L119 (this comment)
  • apps/docs/content/docs/orm/next/migrations/editing-a-migration.mdx#L198-L198
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@apps/docs/content/docs/orm/next/migrations/the-migration-graph.mdx` around
lines 118 - 119, Update the adjacent prose to use the canonical “Prisma
repository” naming: in
apps/docs/content/docs/orm/next/migrations/the-migration-graph.mdx lines
118-119, replace “Prisma Next repo ships…”; in
apps/docs/content/docs/orm/next/migrations/editing-a-migration.mdx line 198,
replace “Prisma Next repo's” with “Prisma repository's” or equivalent.

cd examples/prisma-next-demo
npx prisma-next migration graph --config fixtures/showcase/prisma-next.config.ts --legend
```
Expand Down
Loading