@prisma/cli 3.0.0-dev.37.1 → 3.0.0-dev.38.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 +13 -0
- package/dist/shell/command-meta.js +3 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -96,6 +96,19 @@ npx prisma-cli app promote <deployment-id>
|
|
|
96
96
|
- Stable command groups, flags, and error codes for scripts and agents.
|
|
97
97
|
- Environment variable values are not printed back to the terminal.
|
|
98
98
|
|
|
99
|
+
### Agent skills
|
|
100
|
+
|
|
101
|
+
For agent-guided Next.js deploys, install the Prisma CLI skill cluster at the
|
|
102
|
+
project level. Match the skill ref to the installed CLI version:
|
|
103
|
+
|
|
104
|
+
```bash
|
|
105
|
+
npx prisma-cli version
|
|
106
|
+
pnpm dlx skills@latest add prisma/prisma-cli/skills#cli-v<cli-version> --all
|
|
107
|
+
```
|
|
108
|
+
|
|
109
|
+
The skills teach agents how to prepare a Next.js app, run `app deploy`, verify
|
|
110
|
+
the result, and route CLI / Compute feedback to the right Prisma channel.
|
|
111
|
+
|
|
99
112
|
---
|
|
100
113
|
|
|
101
114
|
## Beta notes
|
|
@@ -180,11 +180,13 @@ const DESCRIPTORS = [
|
|
|
180
180
|
"deploy"
|
|
181
181
|
],
|
|
182
182
|
description: "Creates a new deployment for the app",
|
|
183
|
+
longDescription: "Agent skills for guided Next.js deploys are available from the Prisma CLI skill cluster.",
|
|
183
184
|
examples: [
|
|
184
185
|
"prisma-cli app deploy",
|
|
185
186
|
"prisma-cli app deploy --app my-app --env DATABASE_URL=postgresql://example",
|
|
186
187
|
"prisma-cli app deploy --app my-app --framework nextjs --http-port 3000",
|
|
187
|
-
"prisma-cli app deploy --branch feat-login --framework hono"
|
|
188
|
+
"prisma-cli app deploy --branch feat-login --framework hono",
|
|
189
|
+
"pnpm dlx skills@latest add prisma/prisma-cli/skills#cli-v<cli-version> --all"
|
|
188
190
|
]
|
|
189
191
|
},
|
|
190
192
|
{
|