@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 +34 -0
- package/README.md +693 -0
- package/db/index.cjs +21 -0
- package/db/index.cjs.map +1 -0
- package/db/index.d.cts +3 -0
- package/db/index.d.ts +3 -0
- package/db/index.js +4 -0
- package/db/index.js.map +1 -0
- package/db/testing/index.cjs +83 -0
- package/db/testing/index.cjs.map +1 -0
- package/db/testing/index.d.cts +48 -0
- package/db/testing/index.d.ts +48 -0
- package/db/testing/index.js +77 -0
- package/db/testing/index.js.map +1 -0
- package/index.cjs +19977 -0
- package/index.cjs.map +1 -0
- package/index.d.cts +1325 -0
- package/index.d.ts +1325 -0
- package/index.js +19961 -0
- package/index.js.map +1 -0
- package/package.json +108 -0
- package/queues/types.cjs +4 -0
- package/queues/types.cjs.map +1 -0
- package/queues/types.d.cts +14 -0
- package/queues/types.d.ts +14 -0
- package/queues/types.js +3 -0
- package/queues/types.js.map +1 -0
- package/rag/migrations/index.cjs +71 -0
- package/rag/migrations/index.cjs.map +1 -0
- package/rag/migrations/index.d.cts +29 -0
- package/rag/migrations/index.d.ts +29 -0
- package/rag/migrations/index.js +66 -0
- package/rag/migrations/index.js.map +1 -0
- package/rag/schema.cjs +124 -0
- package/rag/schema.cjs.map +1 -0
- package/rag/schema.d.cts +446 -0
- package/rag/schema.d.ts +446 -0
- package/rag/schema.js +96 -0
- package/rag/schema.js.map +1 -0
- package/stackbone-sdk-0.1.0-alpha.0.tgz +0 -0
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`.
|