@ai-sdk/gateway 3.0.27 → 3.0.28

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/gateway
2
2
 
3
+ ## 3.0.28
4
+
5
+ ### Patch Changes
6
+
7
+ - 1524271: chore: add skill information to README files
8
+
3
9
  ## 3.0.27
4
10
 
5
11
  ### Patch Changes
package/README.md CHANGED
@@ -10,6 +10,14 @@ The Gateway provider is available in the `@ai-sdk/gateway` module. You can insta
10
10
  npm i @ai-sdk/gateway
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
  ## Provider Instance
14
22
 
15
23
  You can import the default provider instance `gateway` from `@ai-sdk/gateway`:
package/dist/index.js CHANGED
@@ -1041,7 +1041,7 @@ async function getVercelRequestId() {
1041
1041
  var import_provider_utils11 = require("@ai-sdk/provider-utils");
1042
1042
 
1043
1043
  // src/version.ts
1044
- var VERSION = true ? "3.0.27" : "0.0.0-test";
1044
+ var VERSION = true ? "3.0.28" : "0.0.0-test";
1045
1045
 
1046
1046
  // src/gateway-provider.ts
1047
1047
  var AI_GATEWAY_PROTOCOL_VERSION = "0.0.1";
package/dist/index.mjs CHANGED
@@ -1054,7 +1054,7 @@ async function getVercelRequestId() {
1054
1054
  import { withUserAgentSuffix } from "@ai-sdk/provider-utils";
1055
1055
 
1056
1056
  // src/version.ts
1057
- var VERSION = true ? "3.0.27" : "0.0.0-test";
1057
+ var VERSION = true ? "3.0.28" : "0.0.0-test";
1058
1058
 
1059
1059
  // src/gateway-provider.ts
1060
1060
  var AI_GATEWAY_PROTOCOL_VERSION = "0.0.1";
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ai-sdk/gateway",
3
3
  "private": false,
4
- "version": "3.0.27",
4
+ "version": "3.0.28",
5
5
  "license": "Apache-2.0",
6
6
  "sideEffects": false,
7
7
  "main": "./dist/index.js",