@ai-sdk/replicate 2.0.13 → 2.0.14

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @ai-sdk/replicate
2
2
 
3
+ ## 2.0.14
4
+
5
+ ### Patch Changes
6
+
7
+ - 1524271: chore: add skill information to README files
8
+
3
9
  ## 2.0.13
4
10
 
5
11
  ### Patch Changes
package/README.md CHANGED
@@ -10,6 +10,14 @@ The Replicate provider is available in the `@ai-sdk/replicate` module. You can i
10
10
  npm i @ai-sdk/replicate
11
11
  ```
12
12
 
13
+ ## Skill for Coding Agents
14
+
15
+ If you use coding agents such as Claude Code or Cursor, we highly recommend adding the AI SDK skill to your repository:
16
+
17
+ ```shell
18
+ npx skills add vercel/ai
19
+ ```
20
+
13
21
  ## Usage
14
22
 
15
23
  ```ts
package/dist/index.js CHANGED
@@ -227,7 +227,7 @@ var replicateImageProviderOptionsSchema = (0, import_provider_utils2.lazySchema)
227
227
  );
228
228
 
229
229
  // src/version.ts
230
- var VERSION = true ? "2.0.13" : "0.0.0-test";
230
+ var VERSION = true ? "2.0.14" : "0.0.0-test";
231
231
 
232
232
  // src/replicate-provider.ts
233
233
  function createReplicate(options = {}) {
package/dist/index.mjs CHANGED
@@ -210,7 +210,7 @@ var replicateImageProviderOptionsSchema = lazySchema(
210
210
  );
211
211
 
212
212
  // src/version.ts
213
- var VERSION = true ? "2.0.13" : "0.0.0-test";
213
+ var VERSION = true ? "2.0.14" : "0.0.0-test";
214
214
 
215
215
  // src/replicate-provider.ts
216
216
  function createReplicate(options = {}) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai-sdk/replicate",
3
- "version": "2.0.13",
3
+ "version": "2.0.14",
4
4
  "license": "Apache-2.0",
5
5
  "sideEffects": false,
6
6
  "main": "./dist/index.js",
@@ -37,8 +37,8 @@
37
37
  "tsup": "^8",
38
38
  "typescript": "5.8.3",
39
39
  "zod": "3.25.76",
40
- "@ai-sdk/test-server": "1.0.3",
41
- "@vercel/ai-tsconfig": "0.0.0"
40
+ "@vercel/ai-tsconfig": "0.0.0",
41
+ "@ai-sdk/test-server": "1.0.3"
42
42
  },
43
43
  "peerDependencies": {
44
44
  "zod": "^3.25.76 || ^4.1.8"