@prisma/cli 3.0.0-dev.97.1 → 3.0.0-dev.99.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -13
- package/dist/shell/command-meta.js +0 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -98,19 +98,6 @@ npx prisma-cli app promote <deployment-id>
|
|
|
98
98
|
- Stable command groups, flags, and error codes for scripts and agents.
|
|
99
99
|
- Environment variable values are not printed back to the terminal.
|
|
100
100
|
|
|
101
|
-
### Agent skills
|
|
102
|
-
|
|
103
|
-
For agent-guided Next.js deploys, install the Prisma CLI skill cluster at the
|
|
104
|
-
project level. Match the skill ref to the installed CLI version:
|
|
105
|
-
|
|
106
|
-
```bash
|
|
107
|
-
npx prisma-cli version
|
|
108
|
-
pnpm dlx skills@latest add prisma/prisma-cli/skills#cli-v<cli-version> --all
|
|
109
|
-
```
|
|
110
|
-
|
|
111
|
-
The skills teach agents how to prepare a Next.js app, run `app deploy`, verify
|
|
112
|
-
the result, and route CLI / Compute feedback to the right Prisma channel.
|
|
113
|
-
|
|
114
101
|
---
|
|
115
102
|
|
|
116
103
|
## Beta notes
|
|
@@ -341,7 +341,6 @@ const DESCRIPTORS = [
|
|
|
341
341
|
"deploy"
|
|
342
342
|
],
|
|
343
343
|
description: "Creates a new deployment for the app",
|
|
344
|
-
longDescription: "Agent skills for guided Next.js deploys are available from the Prisma CLI skill cluster.",
|
|
345
344
|
examples: [
|
|
346
345
|
"prisma-cli app deploy",
|
|
347
346
|
"prisma-cli app deploy --project proj_123",
|
|
@@ -353,7 +352,6 @@ const DESCRIPTORS = [
|
|
|
353
352
|
"prisma-cli app deploy --app my-app --framework nextjs --http-port 3000",
|
|
354
353
|
"prisma-cli app deploy --branch feat-login --framework hono",
|
|
355
354
|
"prisma-cli app deploy --prod --yes",
|
|
356
|
-
"pnpm dlx skills@latest add prisma/prisma-cli/skills#cli-v<cli-version> --all",
|
|
357
355
|
"prisma-cli app deploy --framework bun --entry src/server.ts"
|
|
358
356
|
]
|
|
359
357
|
},
|