@ai-sdk/luma 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/luma
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
@@ -22,6 +22,14 @@ The Luma provider is available in the `@ai-sdk/luma` module. You can install it
22
22
  npm i @ai-sdk/luma
23
23
  ```
24
24
 
25
+ ## Skill for Coding Agents
26
+
27
+ If you use coding agents such as Claude Code or Cursor, we highly recommend adding the AI SDK skill to your repository:
28
+
29
+ ```shell
30
+ npx skills add vercel/ai
31
+ ```
32
+
25
33
  ## Provider Instance
26
34
 
27
35
  You can import the default provider instance `luma` from `@ai-sdk/luma`:
package/dist/index.js CHANGED
@@ -356,7 +356,7 @@ var lumaImageProviderOptionsSchema = (0, import_provider_utils.lazySchema)(
356
356
  );
357
357
 
358
358
  // src/version.ts
359
- var VERSION = true ? "2.0.13" : "0.0.0-test";
359
+ var VERSION = true ? "2.0.14" : "0.0.0-test";
360
360
 
361
361
  // src/luma-provider.ts
362
362
  var defaultBaseURL = "https://api.lumalabs.ai";
package/dist/index.mjs CHANGED
@@ -346,7 +346,7 @@ var lumaImageProviderOptionsSchema = lazySchema(
346
346
  );
347
347
 
348
348
  // src/version.ts
349
- var VERSION = true ? "2.0.13" : "0.0.0-test";
349
+ var VERSION = true ? "2.0.14" : "0.0.0-test";
350
350
 
351
351
  // src/luma-provider.ts
352
352
  var defaultBaseURL = "https://api.lumalabs.ai";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai-sdk/luma",
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",