@theokit/sdk 2.18.0 → 2.18.1
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 +25 -0
- package/package.json +14 -14
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 2.18.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- fc09700: Label the cloud-only surfaces as pre-release in `docs.md` (M7). The README already
|
|
8
|
+
carried a "Cloud runtime — pre-release" banner; `docs.md` (the canonical API
|
|
9
|
+
contract) only labeled artifacts. It now carries an explicit cloud pre-release
|
|
10
|
+
banner in the Overview and inline "cloud-only, pre-release" labels on `cloud.envVars`,
|
|
11
|
+
`cloud.autoCreatePR`, and `result.git` — matching the SDK's pre-release-honesty
|
|
12
|
+
contract (cloud depends on Theo PaaS, currently pre-release; every cloud API
|
|
13
|
+
describes the contract for when PaaS reaches GA, validated by the SDK's cloud
|
|
14
|
+
contract/golden tests against a stub, not a live endpoint). No API or behavior
|
|
15
|
+
change; no GA claim. Also fixed a teardown race in the cloud runtime contract test
|
|
16
|
+
(dispose flushes the fire-and-forget session appends before the temp workspace is
|
|
17
|
+
removed, so `rm(recursive)` no longer races an in-flight write into `ENOTEMPTY`).
|
|
18
|
+
- e132c2d: Strengthen the README cross-pillar front door (M8 GA-readiness): the "Where this
|
|
19
|
+
fits" section now explains the 4-pillar OPEN-STACK composition (UI · Harness ·
|
|
20
|
+
Skills · Runtime), how they compose end-to-end (local agent + tools/plugins +
|
|
21
|
+
`useAgentStream` render, zero Theo-backend dependency), the honest per-pillar status
|
|
22
|
+
(Runtime/cloud pre-release), and the validated cross-pillar wiring (Skills↔Harness +
|
|
23
|
+
UI↔Harness green vs SDK 2.18.0; Runtime↔Harness contract-only). Also fixes a stale
|
|
24
|
+
reference to the removed `referencia/` directory (study peers are cloned on demand
|
|
25
|
+
under `.claude/knowledge-base/reference/`). Docs-only; no API/behavior change; no GA
|
|
26
|
+
claim.
|
|
27
|
+
|
|
3
28
|
## 2.18.0
|
|
4
29
|
|
|
5
30
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theokit/sdk",
|
|
3
|
-
"version": "2.18.
|
|
3
|
+
"version": "2.18.1",
|
|
4
4
|
"description": "TypeScript SDK for the Theo agent harness — same surface, local or cloud.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"homepage": "https://github.com/usetheo/theokit-sdk#readme",
|
|
@@ -308,15 +308,6 @@
|
|
|
308
308
|
"**/agent.js",
|
|
309
309
|
"**/agent.cjs"
|
|
310
310
|
],
|
|
311
|
-
"scripts": {
|
|
312
|
-
"build": "tsup && cp src/internal/providers/provider-catalog.json dist/provider-catalog.json",
|
|
313
|
-
"test": "vitest run --no-file-parallelism",
|
|
314
|
-
"test:watch": "vitest",
|
|
315
|
-
"typecheck": "tsc --noEmit",
|
|
316
|
-
"clean": "rm -rf dist",
|
|
317
|
-
"docs:json": "typedoc --options typedoc.json",
|
|
318
|
-
"docs:drift": "tsx scripts/check-docs-drift.ts"
|
|
319
|
-
},
|
|
320
311
|
"peerDependencies": {
|
|
321
312
|
"@lancedb/lancedb": "^0.30.0",
|
|
322
313
|
"@types/ws": ">=8.0.0",
|
|
@@ -374,8 +365,6 @@
|
|
|
374
365
|
"devDependencies": {
|
|
375
366
|
"@opentelemetry/api": "^1.9.1",
|
|
376
367
|
"@opentelemetry/sdk-trace-base": "^1.30.1",
|
|
377
|
-
"@theokit/sdk-handoff": "workspace:*",
|
|
378
|
-
"@theokit/sdk-memory": "workspace:*",
|
|
379
368
|
"@types/better-sqlite3": "^7.6.13",
|
|
380
369
|
"@types/proper-lockfile": "^4.1.4",
|
|
381
370
|
"@types/ws": "^8.18.0",
|
|
@@ -385,6 +374,17 @@
|
|
|
385
374
|
"sqlite-vec": "^0.1.9",
|
|
386
375
|
"typedoc": "^0.28.19",
|
|
387
376
|
"ws": "^8.18.0",
|
|
388
|
-
"zod": "^4.0.0"
|
|
377
|
+
"zod": "^4.0.0",
|
|
378
|
+
"@theokit/sdk-memory": "0.2.0",
|
|
379
|
+
"@theokit/sdk-handoff": "0.1.0"
|
|
380
|
+
},
|
|
381
|
+
"scripts": {
|
|
382
|
+
"build": "tsup && cp src/internal/providers/provider-catalog.json dist/provider-catalog.json",
|
|
383
|
+
"test": "vitest run --no-file-parallelism",
|
|
384
|
+
"test:watch": "vitest",
|
|
385
|
+
"typecheck": "tsc --noEmit",
|
|
386
|
+
"clean": "rm -rf dist",
|
|
387
|
+
"docs:json": "typedoc --options typedoc.json",
|
|
388
|
+
"docs:drift": "tsx scripts/check-docs-drift.ts"
|
|
389
389
|
}
|
|
390
|
-
}
|
|
390
|
+
}
|