@aevr/agents-ai-sdk 0.2.6 → 0.2.8

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +9 -0
  2. package/package.json +4 -2
package/CHANGELOG.md CHANGED
@@ -2,6 +2,15 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [0.2.8](https://github.com/miracleonyenma/proxmox-management/compare/agents-ai-sdk@v0.2.7...agents-ai-sdk@v0.2.8) (2026-08-23)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * make ai sdk package gate CI portable ([4232121](https://github.com/miracleonyenma/proxmox-management/commit/4232121537cb6762e6740363f3291f62211d8b5c))
11
+
12
+ ### [0.2.7](https://github.com/miracleonyenma/proxmox-management/compare/agents-ai-sdk@v0.2.6...agents-ai-sdk@v0.2.7) (2026-08-23)
13
+
5
14
  ### [0.2.6](https://github.com/miracleonyenma/proxmox-management/compare/agents-ai-sdk@v0.2.5...agents-ai-sdk@v0.2.6) (2026-08-23)
6
15
 
7
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aevr/agents-ai-sdk",
3
- "version": "0.2.6",
3
+ "version": "0.2.8",
4
4
  "description": "Vercel AI SDK inference and loop adapters for @aevr/agents.",
5
5
  "keywords": [
6
6
  "agents",
@@ -58,8 +58,10 @@
58
58
  },
59
59
  "scripts": {
60
60
  "build": "tsc -p .",
61
- "typecheck": "tsc --noEmit",
61
+ "typecheck": "tsc --noEmit && npm run verify:exports",
62
62
  "test": "tsx --test src/*.test.ts src/**/*.test.ts",
63
+ "verify:exports": "node scripts/check-exports.mjs",
64
+ "verify:package": "node scripts/verify-package.mjs",
63
65
  "release": "standard-version --tag-prefix agents-ai-sdk@v",
64
66
  "release:patch": "standard-version --release-as patch --tag-prefix agents-ai-sdk@v",
65
67
  "release:minor": "standard-version --release-as minor --tag-prefix agents-ai-sdk@v",