@stackbone/sdk 0.1.0-alpha.0

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 ADDED
@@ -0,0 +1,34 @@
1
+ # Changelog
2
+
3
+ All notable changes to `@stackbone/sdk` are documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [Unreleased]
9
+
10
+ ## [0.1.0-alpha.0] - 2026-05-14
11
+
12
+ ### Added
13
+
14
+ - First public alpha release on npm. `@stackbone/sdk@alpha` is now installable
15
+ by Stackbone agents outside the monorepo. `createClient()` exposes the
16
+ monolithic agent surface (`client.database`, `client.storage`, `client.ai`,
17
+ `client.rag`, `client.queues`, `client.approval`, `client.secrets`,
18
+ `client.config`, etc.) defined by the SDK contract.
19
+ - Subpath exports for the curated entrypoints creators need at install time:
20
+ `@stackbone/sdk/db` (re-exports the Drizzle ORM surface bound to the agent's
21
+ Postgres branch), `@stackbone/sdk/db/testing`, `@stackbone/sdk/queues/types`,
22
+ `@stackbone/sdk/rag/migrations`, `@stackbone/sdk/rag/schema`.
23
+ - Tag-driven release pipeline mirroring `@stackbone/cli`: `pnpm release:sdk
24
+ <version>` promotes this changelog, bumps `libs/sdk/package.json`, commits,
25
+ tags `sdk-v<version>`, pushes, and `.github/workflows/sdk-publish.yml`
26
+ builds, smoke-tests the tarball against the published `createClient` /
27
+ subpath surface, and runs `npm publish --provenance --access public`.
28
+
29
+ ### Changed
30
+
31
+ - `@stackbone/validators` is bundled into the SDK's published output (was an
32
+ external workspace dependency). Creators consume Stackbone through
33
+ `@stackbone/sdk` alone — they never declare `@stackbone/validators` in their
34
+ agent's `package.json`.